Excel에서 데이터베이스로 데이터를 마이그레이션하는 예

이 예에서는 데이터베이스, Excel 고급루프 패키지작업을 사용하여 Excel 스프레드시트에서 데이터베이스로 값을 전송하기 위한 Bot을 작성합니다.

전제 조건

Bot 작성을 시작하기 전에 다음을 생성합니다.

  • 다음 값으로 Excel 스프레드시트를 생성하고 저장합니다(예: Test_migration_db.xlsx)
    John Williams jwilliams@cmail.com
    Sam Li sam.li@xyz.org
    Carl Miller carl@carlmillerllc.com

    Excel에서 DB로 마이그레이션
  • 다음 열을 사용하여 이름이 CustomerT인 Access 데이터베이스 테이블을 생성합니다. (아래 이미지와 유사한 데이터베이스를 생성하고 저장합니다. 예: Test_Migration_db.accdb)
    • FirstName
    • LastName
    • 이메일
      DB에 액세스

프로시저

스프레드시트에서 데이터베이스의 테이블로 값을 마이그레이션하려면 다음 단계를 수행합니다.

  1. Bot을 생성합니다.
    1. 왼쪽 창에서 자동화를 클릭합니다.
    2. 새 항목 생성 > Bot을 클릭합니다.
    3. Task Bot 생성 창에서 Bot 이름을 입력합니다.
    4. 기본 폴더 위치인 \Bots\를 수락합니다.
      기본 Bot 저장 위치를 변경하려면 선택을 클릭하고 프롬프트를 따릅니다.
    5. 생성 및 편집을 클릭합니다.
  2. 스프레드시트를 엽니다.
    1. Excel 고급 > 열기 작업을 더블 클릭하거나 드래그합니다.
    2. 찾아보기를 클릭하여 파일 경로를 제공합니다.
      파일 경로 제공
    3. 읽기-쓰기에서 파일을 열기 위한 옵션을 선택합니다.
  3. 데이터베이스에 접속합니다.
    1. 데이터베이스 > 연결 작업을 더블 클릭하거나 드래그합니다.
    2. 사용자 정의 연결 모드를 선택합니다.
      사용자 정의 연결
    3. Microsoft Access 데이터베이스 유형을 선택합니다.
    4. 찾아보기를 클릭하여 파일 경로를 제공합니다.
  4. 데이터베이스에 Excel 값을 행별로 삽입합니다.
    1. 루프 작업을 더블 클릭하거나 드래그합니다.
    2. Excel 고급 > 워크시트의 각 행에 대해 반복자를 선택합니다.
    3. 반복 드롭다운에서 모든 행을 선택합니다.
      행을 통해 반복
    4. 현재 값을 이 변수에 지정에서 기록 변수rExcelCurrentRow를 생성합니다.
    5. 데이터 > 삽입/업데이트/삭제 작업을 루프 컨테이너로 드래그합니다.
    6. 다음 SQL 문을 입력합니다.
      INSERT INTO CustomerT (FirstName,LastName,Email) values ('$rExcelCurrentRow[0]
        
      
      ,'$rExcelCurrentRow[1]
              ;
              if (!zdWebClientConfig.environment) {
                  zdWebClientConfig.environment = "production";
                }
            }
            catch (err) { console.error("Configuration was not injected properly") }
          
          
          
          
        
        
          
      ,'$rExcelCurrentRow[2] ; if (!zdWebClientConfig.environment) { zdWebClientConfig.environment = "production"; } } catch (err) { console.error("Configuration was not injected properly") }
      );\u003C/code\u003E\u003C/pre\u003E\n \u003Cbr\u003E\u003Cimg alt=\"SQL 문 입력\" class=\"image\" id=\"tpc-cloud-example-migrate-data-from-excel-to-database__image_o15_34y_qtb\" src=\"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/aae-client/bot-creator/commands/../../img/excel-db-insert-sql.png?_LANG=kokr\"\u003E\u003Cbr\u003E\n \u003C/div\u003E\n \u003C/li\u003E\n \u003C/ol\u003E\n \u003C/li\u003E\u003Cli class=\"li step\" id=\"tpc-cloud-example-migrate-data-from-excel-to-database__disconnect-database\"\u003E\n \u003Cspan class=\"ph cmd\"\u003E데이터베이스와의 연결을 끊습니다. \u003Cspan class=\"ph menucascade\"\u003E\u003Cspan class=\"ph uicontrol\"\u003E데이터베이스\u003C/span\u003E > \u003Cspan class=\"ph uicontrol\"\u003E연결 끊기\u003C/span\u003E\u003C/span\u003E \u003Cspan class=\"ph\"\u003E작업\u003C/span\u003E을 루프 컨테이너 아래로 드래그합니다.\u003C/span\u003E\n \u003C/li\u003E\u003Cli class=\"li step\"\u003E\n \u003Cspan class=\"ph cmd\"\u003E스프레드시트를 닫습니다. \u003Cspan class=\"ph menucascade\"\u003E\u003Cspan class=\"ph uicontrol\"\u003EExcel 고급\u003C/span\u003E > \u003Cspan class=\"ph uicontrol\"\u003E스프레드시트 닫기\u003C/span\u003E\u003C/span\u003E \u003Cspan class=\"ph\"\u003E작업\u003C/span\u003E을 더블 클릭하거나 드래그합니다.\u003C/span\u003E\n \u003C/li\u003E\u003Cli class=\"li step\"\u003E\n \u003Cspan class=\"ph cmd\"\u003E\u003Cspan class=\"ph uicontrol\"\u003E저장\u003C/span\u003E을 클릭하세요.\u003C/span\u003E\n \u003C/li\u003E\u003C/ol\u003E\n \u003C/div\u003E\n\u003Cnav role=\"navigation\"\u003E\u003C/nav\u003E\u003C/article\u003E\u003C/main\u003E\u003C/article\u003E\n","dislike_url":"https://automationanywhere-be-prod.automationanywhere.com/dislike/1092554","page_id":"enterprise-cloud/topics/aae-client/bot-creator/commands/cloud-example-migrate-data-from-excel-to-database.html","isFallbackLanguage":false,"isCollapsibleContentExists":false,"miniTOCHeadings":[],"miniTOCHeadingsFlat":[],"shouldShowSideBoxes":true,"shouldShowTOC":true,"isInlineExternalTopic":false},"workflow":null,"isWorkflow":false,"showWorkflow":false,"error":null},"TocComponent":{"toc":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/cloud-explore.html","title":"탐색","navPath":"enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/cloud-explore.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-automation-anywhere-enterprise-overview.html","title":"Automation 360 소개","navPath":"enterprise-cloud/topics/security-architecture/cloud-automation-anywhere-enterprise-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/aae-architecture-implementation/cloud-control-room-overview.html","title":"Control Room 개요","navPath":"enterprise-cloud/topics/aae-architecture-implementation/cloud-control-room-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-distributed-architecture.html","title":"분산형 아키텍처","navPath":"enterprise-cloud/topics/security-architecture/cloud-distributed-architecture.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-distributed-architecture-with-ha-dr-support.html","title":"HA/DR이 지원되는 분산형 아키텍처","navPath":"enterprise-cloud/topics/security-architecture/cloud-distributed-architecture-with-ha-dr-support.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-security-architecture.html","title":"보안 아키텍처","navPath":"enterprise-cloud/topics/security-architecture/cloud-security-architecture.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-security-architecture-model.html","title":"보안 아키텍처 모델","navPath":"enterprise-cloud/topics/security-architecture/cloud-security-architecture-model.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-data-mapping.html","title":"클라우드 운영 책임","navPath":"enterprise-cloud/topics/security-architecture/cloud-data-mapping.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-securing-the-rpa-environment-with-external-controls.html","title":"외부 제어로 RPA 환경 보안","navPath":"enterprise-cloud/topics/security-architecture/cloud-securing-the-rpa-environment-with-external-controls.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-independent-control-planes-bot-creators-and-bot-runners.html","title":"Bot Creator 및 Bot Runner의 독립적인 범주","navPath":"enterprise-cloud/topics/security-architecture/cloud-independent-control-planes-bot-creators-and-bot-runners.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-role-based-access-control-rbac.html","title":"Control Room의 RBAC","navPath":"enterprise-cloud/topics/security-architecture/cloud-role-based-access-control-rbac.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-bots.html","title":"Bot에 대한 RBAC","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-bots.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-bot-runners.html","title":"Bot Runner에 대한 RBAC","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-bot-runners.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-in-credential-vault-credentials-management.html","title":"Credential Vault 자격증명 관리에 대한 RBAC","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-in-credential-vault-credentials-management.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-role-based-processing-domains.html","title":"역할 기반 처리 도메인","navPath":"enterprise-cloud/topics/security-architecture/cloud-role-based-processing-domains.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-audit-log.html","title":"감사 로그에 대한 RBAC","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-audit-log.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-operations-room.html","title":"Bot 활동 열람 권한에서 역할 기반 접근 제어(RBAC)","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-operations-room.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-user-management.html","title":"사용자 관리에 대한 RBAC","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-user-management.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-roles-and-permissions-management.html","title":"역할기반 접근제어(RBAC)와 권한 관리","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-roles-and-permissions-management.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-bot-schedules.html","title":"Bot 일정에 대한 RBAC","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-bot-schedules.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-rbac-on-license-management.html","title":"라이선스 관리를 위한 역할기반 접근제어(RBAC)","navPath":"enterprise-cloud/topics/security-architecture/cloud-rbac-on-license-management.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-bot-execution-access-dynamic-access-token.html","title":"동적 액세스 토큰으로 Bot 실행 액세스","navPath":"enterprise-cloud/topics/security-architecture/cloud-bot-execution-access-dynamic-access-token.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-secure-credential-store-credential-vault-cv.html","title":"Credential Vault를 통한 안전한 자격증명 저장소","navPath":"enterprise-cloud/topics/security-architecture/cloud-secure-credential-store-credential-vault-cv.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-configuration-of-cv-encryption.html","title":"Credential Vault 암호화","navPath":"enterprise-cloud/topics/security-architecture/cloud-configuration-of-cv-encryption.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-credential-storage-in-cv.html","title":"자격증명 스토리지","navPath":"enterprise-cloud/topics/security-architecture/cloud-credential-storage-in-cv.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-credential-provisioning-to-bots.html","title":"Bot의 자격증명 프로비저닝","navPath":"enterprise-cloud/topics/security-architecture/cloud-credential-provisioning-to-bots.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-list-of-cryptographic-providers.html","title":"암호화 솔루션 공급자","navPath":"enterprise-cloud/topics/security-architecture/cloud-list-of-cryptographic-providers.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-secure-recording.html","title":"보안 기록","navPath":"enterprise-cloud/topics/security-architecture/cloud-secure-recording.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-authentication-with-control-room.html","title":"Control Room에 인증","navPath":"enterprise-cloud/topics/security-architecture/cloud-authentication-with-control-room.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-supported-authentication-methods.html","title":"Automation 360 온프레미스을 위해 지원되는 인증 방법","navPath":"enterprise-cloud/topics/security-architecture/cloud-supported-authentication-methods.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-security-in-transit-support-for-secure-protocols.html","title":"보안 프로토콜 지원","navPath":"enterprise-cloud/topics/security-architecture/cloud-security-in-transit-support-for-secure-protocols.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-network-security-overview.html","title":"네트워크 보안 개요","navPath":"enterprise-cloud/topics/security-architecture/cloud-network-security-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-change-management.html","title":"변경 관리","navPath":"enterprise-cloud/topics/security-architecture/cloud-change-management.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-identity-and-authentication.html","title":"ID 및 인증","navPath":"enterprise-cloud/topics/security-architecture/cloud-identity-and-authentication.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-password-hashing.html","title":"비밀번호 해싱","navPath":"enterprise-cloud/topics/security-architecture/cloud-password-hashing.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-authentication-failure-messages.html","title":"인증 실패 메시지","navPath":"enterprise-cloud/topics/security-architecture/cloud-authentication-failure-messages.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-authentication-for-bot-runners.html","title":"Bot Runner용 인증","navPath":"enterprise-cloud/topics/security-architecture/cloud-authentication-for-bot-runners.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-authentication-of-bot-runners-dynamic-access-token.html","title":"Bot Runner의 동적 액세스 토큰 인증","navPath":"enterprise-cloud/topics/security-architecture/cloud-authentication-of-bot-runners-dynamic-access-token.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-defenses-against-common-vulnerabilities.html","title":"공통 취약점에 대한 방어","navPath":"enterprise-cloud/topics/security-architecture/cloud-defenses-against-common-vulnerabilities.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-compliance-and-vulnerability-scanning.html","title":"준수 및 취약점 검사","navPath":"enterprise-cloud/topics/security-architecture/cloud-compliance-and-vulnerability-scanning.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-additional-security-controls.html","title":"추가 보안 제어","navPath":"enterprise-cloud/topics/security-architecture/cloud-additional-security-controls.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/appendix/cloud-guidelines-for-gdpr.html","title":"GDPR 가이드라인","navPath":"enterprise-cloud/topics/control-room/appendix/cloud-guidelines-for-gdpr.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/aae-architecture-implementation/bot-agent-control-room-resiliency.html","title":"Automation 360 아키텍처 및 복원성","navPath":"enterprise-cloud/topics/aae-architecture-implementation/bot-agent-control-room-resiliency.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-A2019-faq.html","title":"Automation 360 FAQ","navPath":"enterprise-cloud/topics/release-notes/cloud-A2019-faq.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/cloud-service-status-topics/cloud-a360-cloud-faq.html","title":"Automation 360 클라우드 FAQ","navPath":"enterprise-cloud/topics/cloud-service-status-topics/cloud-a360-cloud-faq.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-private-bot-store-overview.html","title":"개인 Bot Store","navPath":"enterprise-cloud/topics/security-architecture/cloud-private-bot-store-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/learn-overview.html","title":"학습","navPath":"enterprise-cloud/topics/product-feature-lifecycle/learn-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-notes.html","title":"Automation 360 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/cloud-release-notes.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/automation-360-v27.html","title":"Automation 360 v.27 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/automation-360-v27.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-release-rpa-workspace.html","title":"RPA Workspace v.27 릴리스","navPath":"enterprise-cloud/topics/release-notes/v27-release-rpa-workspace.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-release-updating-control-room-bot-agent.html","title":"v.27 릴리스로 업데이트","navPath":"enterprise-cloud/topics/release-notes/v27-release-updating-control-room-bot-agent.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-packages-actions-updates.html","title":"패키지가 v.27에서 업데이트됨","navPath":"enterprise-cloud/topics/release-notes/v27-packages-actions-updates.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-release-migration.html","title":"v.27 릴리스에 대한 마이그레이션 업데이트","navPath":"enterprise-cloud/topics/release-notes/v27-release-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-remote-agent-updates.html","title":"원격 에이전트 v.2.1.0 업데이트","navPath":"enterprise-cloud/topics/release-notes/v27-remote-agent-updates.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-release-process-discovery.html","title":"Process Discovery v.27 릴리스","navPath":"enterprise-cloud/topics/release-notes/v27-release-process-discovery.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-release-aari.html","title":"AARI v.27 릴리스","navPath":"enterprise-cloud/topics/release-notes/v27-release-aari.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-release-document-processing.html","title":"IQ Bot 및 문서 자동화 v.27 릴리스","navPath":"enterprise-cloud/topics/release-notes/v27-release-document-processing.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v27-release-bot-insight.html","title":"Bot Insight v.27 릴리스","navPath":"enterprise-cloud/topics/release-notes/v27-release-bot-insight.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/automation-360-v26.html","title":"Automation 360 v.26 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/automation-360-v26.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v26-release-rpa-workspace.html","title":"RPA Workspace v.26 릴리스","navPath":"enterprise-cloud/topics/release-notes/v26-release-rpa-workspace.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v26-release-updating-control-room-bot-agent.html","title":"v.26 릴리스로 업데이트","navPath":"enterprise-cloud/topics/release-notes/v26-release-updating-control-room-bot-agent.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v26-release-migration.html","title":"v.26 릴리스에 대한 마이그레이션 업데이트","navPath":"enterprise-cloud/topics/release-notes/v26-release-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v26-release-aari.html","title":"AARI v.26 릴리스","navPath":"enterprise-cloud/topics/release-notes/v26-release-aari.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v26-release-document-processing.html","title":"IQ Bot 및 문서 자동화 v.26 릴리스","navPath":"enterprise-cloud/topics/release-notes/v26-release-document-processing.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/v26-release-bot-insight.html","title":"Bot Insight v.26 릴리스","navPath":"enterprise-cloud/topics/release-notes/v26-release-bot-insight.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-automation-360-v25.html","title":"Automation 360 v.25 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-automation-360-v25.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-automation-360-ie-eol.html","title":"Internet Explorer 11 EOL용 Automation 360 v.24R2 릴리스 정보","navPath":"enterprise-cloud/topics/release-notes/release-automation-360-ie-eol.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-automation-360-v24.html","title":"Automation 360 v.24 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-automation-360-v24.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-automation-360-v23.html","title":"Automation 360 v.23 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-automation-360-v23.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-automation-360-v22.html","title":"Automation 360 v.22 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-automation-360-v22.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-automation-360-v21.html","title":"Automation 360 v.21 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-automation-360-v21.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-a2019-20.html","title":"Enterprise A2019.20 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-a2019-20.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-a2019-19.html","title":"Enterprise A2019.19 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-a2019-19.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-a2019-18.html","title":"Enterprise A2019.18 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-a2019-18.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-a2019-17.html","title":"Enterprise A2019.17 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-a2019-17.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-a2019-16.html","title":"Enterprise A2019.16 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-a2019-16.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/previous-automation-360-release-notes.html","title":"과거 Automation 360 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/previous-automation-360-release-notes.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-a2019-15.html","title":"Enterprise A2019.15 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-a2019-15.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-a2019-14.html","title":"Enterprise A2019.14 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-a2019-14.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-a2019-13.html","title":"Enterprise A2019.13 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/cloud-release-a2019-13.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-a2019-12.html","title":"Enterprise A2019.12 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/cloud-release-a2019-12.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-a2019-11.html","title":"Enterprise A2019.11 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/cloud-release-a2019-11.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-a2019-10.html","title":"Enterprise A2019.10 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/cloud-release-a2019-10.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-a2019-09.html","title":"Enterprise A2019 (Build 2094) 릴리스 정보","navPath":"enterprise-cloud/topics/release-notes/cloud-release-a2019-09.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-a2019-08.html","title":"Enterprise A2019(Build 1598 및 1610) 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/cloud-release-a2019-08.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-a2019-07.html","title":"Enterprise A2019(Build 1082 및 1089) 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/cloud-release-a2019-07.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-A2019-6-op.html","title":"Enterprise A2019 (Build 550) 릴리스 정보","navPath":"enterprise-cloud/topics/release-notes/cloud-release-A2019-6-op.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-release-notes-2019-06.html","title":"Enterprise A2019 (Build 543) 릴리스 정보","navPath":"enterprise-cloud/topics/release-notes/cloud-release-notes-2019-06.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/ce-a2019-release-notes.html","title":"Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/ce-a2019-release-notes.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/community-edition-release-v27.html","title":"Automation 360 v.27 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/community-edition-release-v27.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release_community_edition_a360_v26.html","title":"Automation 360 v.26 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release_community_edition_a360_v26.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release_community_edition_a360_v25.html","title":"Automation 360 v.25 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release_community_edition_a360_v25.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release_community_edition_a360_v24.html","title":"Automation 360 v.24 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release_community_edition_a360_v24.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-community-edition-a360-v23.html","title":"Automation 360 v.23 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-community-edition-a360-v23.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-community-edition-a360-v22.html","title":"Automation 360 v.22 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-community-edition-a360-v22.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/previous-community-edition-releases.html","title":"과거 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/previous-community-edition-releases.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-community-edition-a360-v21.html","title":"Automation 360 v.21 Community Edition 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-community-edition-a360-v21.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-community-edition-a2019-20.html","title":"Community Edition A2019.20 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-community-edition-a2019-20.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-community-edition-a2019-19.html","title":"Community Edition A2019.19 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-community-edition-a2019-19.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-community-edition-a2019-18.html","title":"Community Edition A2019.18 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-community-edition-a2019-18.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/release-community-edition-a2019-17.html","title":"Community Edition A2019.17 릴리스 노트","navPath":"enterprise-cloud/topics/release-notes/release-community-edition-a2019-17.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/sandbox-environment.html","title":"샌드박스 환경","navPath":"enterprise-cloud/topics/migration/sandbox-environment.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/developer/cloud-package-dev-kit-rel-note.html","title":"Automation 360 패키지 SDK 릴리스 정보","navPath":"enterprise-cloud/topics/developer/cloud-package-dev-kit-rel-note.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/discovery/release-notes/process-discovery-release-notes.html","title":"Process Discovery Release Notes","navPath":"enterprise-cloud/topics/discovery/release-notes/process-discovery-release-notes.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/discovery/release-notes/process-discovery-version-1-63-0.html","title":"Process Discovery Version 1.63.0 Release Notes","navPath":"enterprise-cloud/topics/discovery/release-notes/process-discovery-version-1-63-0.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/discovery/release-notes/neosensor-version_2-4-1.html","title":"Neo Sensor Version 2.4.1","navPath":"enterprise-cloud/topics/discovery/release-notes/neosensor-version_2-4-1.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/coe-manager/topics/coe-manager-release-notes.html","title":"CoE Manager 릴리스 정보","navPath":"enterprise-cloud/topics/coe-manager/topics/coe-manager-release-notes.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/browser-extension-enhancements.html","title":"Automation 360에 대한 브라우저 확장","navPath":"enterprise-cloud/topics/deployment-planning/browser-extension-enhancements.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/features-using-browser-extensions-for-web-applications.html","title":"웹 애플리케이션용 브라우저 확장 프로그램","navPath":"enterprise-cloud/topics/deployment-planning/features-using-browser-extensions-for-web-applications.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/browser-extension-version-history.html","title":"브라우저 확장 프로그램의 이전 버전","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/browser-extension-version-history.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/release-notes/cloud-feature-comparison-matrix.html","title":"Automation 360 기능 비교 매트릭스","navPath":"enterprise-cloud/topics/release-notes/cloud-feature-comparison-matrix.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/iq-bot-a2019-feature-matrix.html","title":"Automation 360 IQ Bot 기능 비교 매트릭스","navPath":"enterprise-cloud/topics/iq-bot/iq-bot-a2019-feature-matrix.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/iq-bot-version-compatibility.html","title":"Automation 360 IQ Bot 버전 호환성","navPath":"enterprise-cloud/topics/iq-bot/iq-bot-version-compatibility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/cloud-service-status-topics/cloud-packages-life-cycle.html","title":"Automation 360 소프트웨어 수명 주기 정책","navPath":"enterprise-cloud/topics/cloud-service-status-topics/cloud-packages-life-cycle.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/cloud-service-status-topics/cloud-secure-access-connectivity.html","title":"보안 액세스 및 연결을 위한 Automation 360 클라우드","navPath":"enterprise-cloud/topics/cloud-service-status-topics/cloud-secure-access-connectivity.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/cloud-service-status-topics/cloud-service-status-overview.html","title":"Automation 360 클라우드 서비스 상태 사이트","navPath":"enterprise-cloud/topics/cloud-service-status-topics/cloud-service-status-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/cloud-service-status-topics/cloud-services-updates.html","title":"Automation 360 클라우드 업데이트","navPath":"enterprise-cloud/topics/cloud-service-status-topics/cloud-services-updates.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/cloud-service-status-topics/cloud-service-status-userguide.html","title":"알림 구독","navPath":"enterprise-cloud/topics/cloud-service-status-topics/cloud-service-status-userguide.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/retired-features-list.html","title":"Automation Anywhere 제품에 영향을 미치는 기능 사용 중단","navPath":"enterprise-cloud/topics/product-feature-lifecycle/retired-features-list.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/ie-eol/ie-eol-overview.html","title":"Microsoft Internet Explorer EOL 개요","navPath":"enterprise-cloud/topics/ie-eol/ie-eol-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/ie11-eol-for-cr.html","title":"Microsoft Internet Explorer11 EOL FAQ","navPath":"enterprise-cloud/topics/deployment-planning/ie11-eol-for-cr.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/ie-eol/scan-a360-ie-bots.html","title":"Automation 360 Bot의 Internet Explorer 사용량 스캔","navPath":"enterprise-cloud/topics/ie-eol/scan-a360-ie-bots.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/ie-eol/scanned-bots-report.html","title":"Internet Explorer Bot의 보고서 분석","navPath":"enterprise-cloud/topics/ie-eol/scanned-bots-report.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/ie-eol/update-bot-wizard.html","title":"IE Bot 전환용 Bot 업데이트 마법사","navPath":"enterprise-cloud/topics/ie-eol/update-bot-wizard.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/ie-eol/bot-update-conversion-report.html","title":"Internet Explorer Bot의 전환 세부 정보 보기","navPath":"enterprise-cloud/topics/ie-eol/bot-update-conversion-report.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/basic-authentication-exchange-overview.html","title":"Exchange Online에서 기본 인증 사용 중단","navPath":"enterprise-cloud/topics/product-feature-lifecycle/basic-authentication-exchange-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/basic-authentication-eol-faq.html","title":"Automation 360 및 기본 인증 사용 중단 FAQ","navPath":"enterprise-cloud/topics/product-feature-lifecycle/basic-authentication-eol-faq.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/scan-basic-authentication-bots.html","title":"기본 인증 사용이 포함된 이메일 작업에 대해 Automation 360 Bot을 스캔","navPath":"enterprise-cloud/topics/product-feature-lifecycle/scan-basic-authentication-bots.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/basic-authentication-scanning-messages.html","title":"기본 인증 스캐닝 메시지","navPath":"enterprise-cloud/topics/product-feature-lifecycle/basic-authentication-scanning-messages.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/manifest-v3-support-overview.html","title":"Chrome 및 Edge Manifest V3 확장 프로그램","navPath":"enterprise-cloud/topics/product-feature-lifecycle/manifest-v3-support-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/manifest-v3-switch-faq.html","title":"Manifest V3 확장 프로그램 FAQ","navPath":"enterprise-cloud/topics/product-feature-lifecycle/manifest-v3-switch-faq.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/multiple_browser_profiles_manifestv3.html","title":"Manifest V3 확장 프로그램에 대한 여러 브라우저 프로필 관리","navPath":"enterprise-cloud/topics/product-feature-lifecycle/multiple_browser_profiles_manifestv3.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/switch_mv3_to_mv2_manually.html","title":"Manifest V3 확장 프로그램을 Manifest V2로 수동 전환","navPath":"enterprise-cloud/topics/product-feature-lifecycle/switch_mv3_to_mv2_manually.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/product-feature-lifecycle/deprecation-of-tesseract-ocr-v3.html","title":"Tesseract OCR v3 사용 중단","navPath":"enterprise-cloud/topics/product-feature-lifecycle/deprecation-of-tesseract-ocr-v3.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/cloud-install.html","title":"설치 및 업데이트","navPath":"enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/cloud-install.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-getting-started.html","title":"Automation 360 클라우드 시작하기","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-getting-started.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-community-prerequisites.html","title":"Automation 360 클라우드 선행조건","navPath":"enterprise-cloud/topics/deployment-planning/cloud-community-prerequisites.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-requirements-operating-system-compatibility.html","title":"Automation 360 Bot Runner 기기 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/cloud-requirements-operating-system-compatibility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-whitelist-cr-urls.html","title":"신뢰할 수 있는 목록에 Automation 360 클라우드 URL 추가","navPath":"enterprise-cloud/topics/deployment-planning/cloud-whitelist-cr-urls.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-communication-ports.html","title":"Automation Anywhere 통신 포트 허용","navPath":"enterprise-cloud/topics/deployment-planning/cloud-communication-ports.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/add-iqbot-cloud-ip-addresses-to-trusted-list.html","title":"IQ Bot 클라우드 서버 IP 주소를 허용 목록에 추가","navPath":"enterprise-cloud/topics/deployment-planning/add-iqbot-cloud-ip-addresses-to-trusted-list.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-on-prem-install.html","title":"Control Room 온프레미스 설치 방법","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-on-prem-install.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-prerequisites-control-room.html","title":"Automation 360 온프레미스 선행조건","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-prerequisites-control-room.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-capacity-performance-planning.html","title":"용량 및 성능 계획","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-capacity-performance-planning.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-access-deployment-repository.html","title":"동시 Bot 배포 및 실행","navPath":"enterprise-cloud/topics/deployment-planning/cloud-access-deployment-repository.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-server-hardware.html","title":"Control Room 서버 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-server-hardware.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-databases.html","title":"데이터베이스 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-databases.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-working-with-sql-servers.html","title":"SQL Server 작업","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-working-with-sql-servers.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/azure-sql-paas.html","title":"Azure SQL PaaS 사용","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/azure-sql-paas.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-onprem-req-operating-system-compatibility.html","title":"Control Room에 지원되는 운영 체제, 환경, 플랫폼","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-onprem-req-operating-system-compatibility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/platform-compatibility.html","title":"지원하는 클라우드 플랫폼","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/platform-compatibility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-credentials.html","title":"자격증명 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-credentials.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-load-balancer-settings-deploy.html","title":"로드 밸런서 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-load-balancer-settings-deploy.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-firewall-rules.html","title":"포트, 프로토콜 및 방화벽 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-firewall-rules.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/repository-requirements.html","title":"Control Room 리포지토리 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/repository-requirements.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-requirements-browsers.html","title":"RPA Workspace에 대한 브라우저 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/cloud-requirements-browsers.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-supported-languages.html","title":"국제화, 현지화, 언어 지원","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-supported-languages.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-requirements-supported-plugin-services.html","title":"Control Room 및 Bot 작업용 컴포넌트","navPath":"enterprise-cloud/topics/deployment-planning/cloud-requirements-supported-plugin-services.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-special-characters.html","title":"지원되는 특수 문자","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-requirements-special-characters.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-citrix-new-approach-overview.html","title":"클라우드에서 Citrix 통합","navPath":"enterprise-cloud/topics/deployment-planning/cloud-citrix-new-approach-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-citrix-xenapp-install-requirements.html","title":"Citrix Virtual Apps 서버에서 레코더 사용","navPath":"enterprise-cloud/topics/deployment-planning/cloud-citrix-xenapp-install-requirements.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-citrix-xendesktop-install-client.html","title":"클라우드에서 Citrix XenDesktop 사용","navPath":"enterprise-cloud/topics/deployment-planning/cloud-citrix-xendesktop-install-client.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-installing-citrix-plugin.html","title":"로컬 컴퓨터에 Citrix 필수 컴포넌트 설치","navPath":"enterprise-cloud/topics/deployment-planning/cloud-installing-citrix-plugin.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-installing-citrix-remote-agent.html","title":"Citrix 서버에 Automation Anywhere 원격 에이전트 설치","navPath":"enterprise-cloud/topics/deployment-planning/cloud-installing-citrix-remote-agent.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/remote-agent-installation-control-room-v26-later.html","title":"원격 에이전트 설치: 레코더 패키지 버전 2.8.6","navPath":"enterprise-cloud/topics/deployment-planning/remote-agent-installation-control-room-v26-later.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/remote-agent-installation-control-room-v25-earlier.html","title":"원격 에이전트 설치: 레코더 패키지 버전 2.7.3 및 이전 버전","navPath":"enterprise-cloud/topics/deployment-planning/remote-agent-installation-control-room-v25-earlier.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-deployment-overview.html","title":"HA 및 DR 배포 모델","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-deployment-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/convert-single-node-to-multi-node-deployment.html","title":"단일 노드 배포를 다중 노드 배포로 전환","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/convert-single-node-to-multi-node-deployment.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-ha-deploy.html","title":"고가용성 배포","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-ha-deploy.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-ha-dr-deploy.html","title":"재해 복구 배포","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-ha-dr-deploy.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-dr-pre-configuration.html","title":"이미지 기반 복제","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-dr-pre-configuration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-dr-failover-procedure.html","title":"웜 대기","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-dr-failover-procedure.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-ha-dr-prepare-dr.html","title":"기본 사이트와 보조 사이트 간에 데이터 복제","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-ha-dr-prepare-dr.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cr-using-custom-mode-oracle-installation.html","title":"Oracle 설치를 위한 사용자 지정 모드를 사용하여 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cr-using-custom-mode-oracle-installation.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-installation-custom.html","title":"맞춤형 모드를 사용해 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-installation-custom.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom-install-start-installer.html","title":"Control Room 설치 프로그램 실행","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom-install-start-installer.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/security-architecture/cloud-key-vault-thirdparty-integration.html","title":"외부 키 저장소 통합","navPath":"enterprise-cloud/topics/security-architecture/cloud-key-vault-thirdparty-integration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom_install_configure_tls.html","title":"애플리케이션 TLS(Transport Layer Security) 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom_install_configure_tls.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom_install_configure_services.html","title":"서비스 자격증명 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom_install_configure_services.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom_install_database.html","title":"Microsoft 데이터베이스 유형 및 서버 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom_install_database.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/configure-db-port.html","title":"기본 데이터베이스 포트 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/configure-db-port.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/custom-oracle-install.html","title":"Oracle 데이터베이스 유형 및 서버 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/custom-oracle-install.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/install-elasticsearch-credentials.html","title":"Elasticsearch 자격증명 추가","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/install-elasticsearch-credentials.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom-install-configure-ip.html","title":"IP 클러스터 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom-install-configure-ip.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/add-node-cluster-setup-windows.html","title":"클러스터 설정에 노드 추가","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/add-node-cluster-setup-windows.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/remove-node-cluster-setup-windows.html","title":"클러스터 설정에서 노드 제거","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/remove-node-cluster-setup-windows.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom-setup-installed-summary.html","title":"설치 설정 요약","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-custom-setup-installed-summary.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-installation-express.html","title":"Express Mode를 사용한 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-installation-express.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-on-aws.html","title":"Amazon Web Services에 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-on-aws.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-begin-control-room-installation-on-aws.html","title":"Amazon Web Services 상에서 설치 준비","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-begin-control-room-installation-on-aws.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-customize-control-room-installation-on-aws.html","title":"Amazon Web Services에서 Control Room 설치 사용자 정의","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-customize-control-room-installation-on-aws.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-mounting-auto-any-onto-vp-cloud.html","title":"Amazon Web Services에 설치 후 구성 설정","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-mounting-auto-any-onto-vp-cloud.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-on-microsoft-azure.html","title":"Microsoft Azure에 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-on-microsoft-azure.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-prepare-to-install.html","title":"Microsoft Azure 설치 준비 확인","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-prepare-to-install.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-azure-over.html","title":"Microsoft Azure에서 지원되는 데이터 센터 컴포넌트 버전","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-azure-over.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-azure-controlroom.html","title":"Microsoft Azure 기반 Control Room 설치 시작","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-azure-controlroom.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-asure-customize-cluster.html","title":"Microsoft Azure에서 Control Room 설치 사용자 정의","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-asure-customize-cluster.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-azure-portal-configuration.html","title":"Microsoft Azure에 설치 후 구성 설정","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-azure-portal-configuration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-google-cloud.html","title":"Google Cloud Platform에 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-google-cloud.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-prepare-install-cr-google-cloud.html","title":"Control Room에 Google Cloud Platform 설치 준비","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-prepare-install-cr-google-cloud.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-customize-cr-installation-gcp.html","title":"Control Room의 맞춤형 설치를 Google Cloud Platform에 수행","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-customize-cr-installation-gcp.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-configure-post-cr-installation-gcp.html","title":"설치 후 Google Cloud Platform 설정 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-configure-post-cr-installation-gcp.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-on-linux.html","title":"Linux에 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-on-linux.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-linux-silent-install.html","title":"Linux에서 Control Room 자동 설치 수행","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-linux-silent-install.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/uninstall-enterprise-a2019.html","title":"Linux 서버에서 Automation 360 온프레미스 제거","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/uninstall-enterprise-a2019.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-linux-silent-uninstall.html","title":"Linux에서 Control Room 자동 설치 제거 수행","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-linux-silent-uninstall.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/configure-cr-cluster-shared-repo-linux.html","title":"Linux용 공유 리포지토리가 있는 클러스터 설정에서 Control Room 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/configure-cr-cluster-shared-repo-linux.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/add-node-cluster-setup-linux.html","title":"Linux용 클러스터 설정에 노드 추가","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/add-node-cluster-setup-linux.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/remove-node-cluster-setup-linux.html","title":"Linux용 클러스터 설정에서 노드 제거","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/remove-node-cluster-setup-linux.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-silent-installation-control-room.html","title":"Microsoft Windows Server에 스크립트를 활용한 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-silent-installation-control-room.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-post-installation-tasks-control-room.html","title":"Control Room 설치 후 구성 완료","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-post-installation-tasks-control-room.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-requirements-configuration-settings.html","title":"설치 후 설정 구성","navPath":"enterprise-cloud/topics/deployment-planning/cloud-requirements-configuration-settings.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-aa-windows-services.html","title":"Automation Anywhere 서비스 확인","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-aa-windows-services.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-self-signed-cert.html","title":"HTTPS 인증서에 대해 Control Room 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-self-signed-cert.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-import-cert.html","title":"HTTPS,및 CA 인증서 가져오기","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-import-cert.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-edit-sql-information.html","title":"SQL 사용자 정보 편집","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-edit-sql-information.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-configure-dr-elasticsearch-ip.html","title":"Elasticsearch IP 주소에 대한 재해 복구 사이트 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-configure-dr-elasticsearch-ip.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/configure-dual-ip-servers.html","title":"클러스터의 기본 IP 주소 추가","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/configure-dual-ip-servers.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/configure-additional-ip-new-cluster.html","title":"새 클러스터 노드의 추가 IP 주소 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/configure-additional-ip-new-cluster.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/on-prem-dns-trusted-list.html","title":"신뢰할 수 있는 목록에 Automation 360 온프레미스 URL 추가","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/on-prem-dns-trusted-list.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/cloud-remove-cr.html","title":"Automation 360 제거","navPath":"enterprise-cloud/topics/control-room/cloud-remove-cr.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-regulated-cloud.html","title":"클라우드 지원 배포를 위한 Control Room 설치","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-install-regulated-cloud.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/control-room-url-naming-guidelines.html","title":"Control Room URL에 대한 명명 지침","navPath":"enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/control-room-url-naming-guidelines.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-post-installation-validation-control-room.html","title":"설치 후 사용자 관리","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-post-installation-validation-control-room.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-saml-idp.html","title":"Control Room을 서비스 공급자로 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-saml-idp.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-first-time.html","title":"Control Room 인증 옵션 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-first-time.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-first-time-express.html","title":"Express Mode에서 Control Room 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-first-time-express.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-ad.html","title":"Active Directory용 Control Room 구성 - 수동 모드","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-ad.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-configure-ldap-channel-binding.html","title":"LDAP 채널 바인딩 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-configure-ldap-channel-binding.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-auto-discovery.html","title":"Active Directory용 Control Room 구성 - 자동 모드","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-auto-discovery.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-configure-smartcard.html","title":"스마트 카드 인증 설치 절차 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-configure-smartcard.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-smartcard-first-admin.html","title":"Control Room 스마트 카드 첫 번째 관리자","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-smartcard-first-admin.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-non-ad.html","title":"Control Room 데이터베이스 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-configure-cr-non-ad.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-self-signed-cert_1.html","title":"HTTPS 인증서에 대해 Control Room 구성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-self-signed-cert_1.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-import-cert_1.html","title":"HTTPS,및 CA 인증서 가져오기","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-config-control-room-https-import-cert_1.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cr-self-signed-certificate-java-credential-store.html","title":"Windows 인증서 저장소에 Control Room 인증서 추가","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cr-self-signed-certificate-java-credential-store.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-post-install-prepare-for-users.html","title":"사용자를 위한 준비사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-post-install-prepare-for-users.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/administration/licenses/cloud-trial-license.html","title":"평가판 라이선스","navPath":"enterprise-cloud/topics/control-room/administration/licenses/cloud-trial-license.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-switch-saml.html","title":"SAML 인증 설정","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-switch-saml.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/configure-sso-with-okta.html","title":"Okta를 이용해 SSO 인증 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/configure-sso-with-okta.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/create-app-integration.html","title":"앱 통합 생성","navPath":"enterprise-cloud/topics/control-room/getting-started/create-app-integration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/assign_application_to_user.html","title":"사용자에게 애플리케이션 할당","navPath":"enterprise-cloud/topics/control-room/getting-started/assign_application_to_user.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/control_room_configuration.html","title":"Okta 사용자를 위한 Control Room 구성","navPath":"enterprise-cloud/topics/control-room/getting-started/control_room_configuration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/validate-the-connection.html","title":"연결 확인","navPath":"enterprise-cloud/topics/control-room/getting-started/validate-the-connection.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/dashboards/cloud-edit-profile.html","title":"프로필 편집","navPath":"enterprise-cloud/topics/control-room/dashboards/cloud-edit-profile.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/getting-started/cloud-installed-cr-files.html","title":"설치된 Control Room 디렉토리 및 파일","navPath":"enterprise-cloud/topics/control-room/getting-started/cloud-installed-cr-files.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/administration/licenses/cloud-license-failsafe.html","title":"Control Room 페일세이프 상태","navPath":"enterprise-cloud/topics/control-room/administration/licenses/cloud-license-failsafe.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-services-license-management.html","title":"라이선스 및 클라우드 서비스","navPath":"enterprise-cloud/topics/deployment-planning/cloud-services-license-management.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/managing-file-license.html","title":"클라우드 및 파일 라이선스 관리","navPath":"enterprise-cloud/topics/deployment-planning/managing-file-license.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/dashboards/cloud-administration-licenses.html","title":"Automation 360 라이선스","navPath":"enterprise-cloud/topics/control-room/dashboards/cloud-administration-licenses.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/administration/licenses/cloud-licensing-entitlement.html","title":"Automation 360 액세스","navPath":"enterprise-cloud/topics/control-room/administration/licenses/cloud-licensing-entitlement.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/provision-cloud-licenses.html","title":"Cloud Control Room 인스턴스 프로비저닝","navPath":"enterprise-cloud/topics/deployment-planning/provision-cloud-licenses.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-self-migration.html","title":"셀프 서비스 Control Room 마이그레이션","navPath":"enterprise-cloud/topics/deployment-planning/cloud-self-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-self-migration-view-code.html","title":"Cloud Migration Control Room 세부 정보 보기","navPath":"enterprise-cloud/topics/deployment-planning/cloud-self-migration-view-code.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/manage-allocate-licenses-partners.html","title":"라이선스(파트너) 관리 및 할당","navPath":"enterprise-cloud/topics/deployment-planning/manage-allocate-licenses-partners.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/view-cloud-control-instances.html","title":"Cloud Control Room 인스턴스 보기 및 편집","navPath":"enterprise-cloud/topics/deployment-planning/view-cloud-control-instances.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/administration/licenses/cloud-cr-license-expiry.html","title":"Control Room 라이선스 만료 알림","navPath":"enterprise-cloud/topics/control-room/administration/licenses/cloud-cr-license-expiry.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/log-on-to-control-room/cloud-register-community-user.html","title":"Community Edition 시작하기","navPath":"enterprise-cloud/topics/control-room/log-on-to-control-room/cloud-register-community-user.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/cloud-community-capacity.html","title":"커뮤니티 용량 및 제한 사항","navPath":"enterprise-cloud/topics/deployment-planning/cloud-community-capacity.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/log-on-to-control-room/cloud-log-on-to-control-room-nad.html","title":"Automation Anywhere Control Room에 로그인","navPath":"enterprise-cloud/topics/control-room/log-on-to-control-room/cloud-log-on-to-control-room-nad.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/bot-agent/bot-agent-overview.html","title":"Bot 에이전트 소개","navPath":"enterprise-cloud/topics/bot-agent/bot-agent-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-bot-agent-compatibility.html","title":"Bot 에이전트 호환성","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-bot-agent-compatibility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/bot-agent/bot-agent-auto-login-support.html","title":"Bot 에이전트 자동 로그인 지원","navPath":"enterprise-cloud/topics/bot-agent/bot-agent-auto-login-support.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/device-req-for-bot-agent.html","title":"Bot 에이전트에 대한 기기 요구 사항","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/device-req-for-bot-agent.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/bot-agent/bot-agent-workflow.html","title":"Bot 에이전트을 이용한 작업","navPath":"enterprise-cloud/topics/bot-agent/bot-agent-workflow.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/bot-agent/bot-agent-communication-channels.html","title":"Control Room과의 Bot 에이전트 통신","navPath":"enterprise-cloud/topics/bot-agent/bot-agent-communication-channels.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/devices/cloud-add-local-device.html","title":"Bot 에이전트 설치 및 기기 등록","navPath":"enterprise-cloud/topics/control-room/devices/cloud-add-local-device.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/administration/settings/auto-update-bot-agent.html","title":"Bot 에이전트 자동 업데이트","navPath":"enterprise-cloud/topics/control-room/administration/settings/auto-update-bot-agent.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/administration/settings/update-bot-agent-local-drive.html","title":"로컬 드라이브에서 Bot 에이전트 업데이트","navPath":"enterprise-cloud/topics/control-room/administration/settings/update-bot-agent-local-drive.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/devices/cloud-bot-agent-automatic-update.html","title":"수동으로 Bot 에이전트 업데이트","navPath":"enterprise-cloud/topics/control-room/devices/cloud-bot-agent-automatic-update.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/devices/cloud-bot-agent-manual-upgrade.html","title":"다른 Control Room로 Bot 에이전트를 전환","navPath":"enterprise-cloud/topics/control-room/devices/cloud-bot-agent-manual-upgrade.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/devices/cloud-bot-agent-authenticate-proxy.html","title":"프록시를 사용하여 Bot 에이전트를 기기에 연결","navPath":"enterprise-cloud/topics/control-room/devices/cloud-bot-agent-authenticate-proxy.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/bot-agent/bot-agent-diagnostic-utility.html","title":"Bot 에이전트 진단 점검 수행","navPath":"enterprise-cloud/topics/bot-agent/bot-agent-diagnostic-utility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/cloud-edit-device-credentials.html","title":"사용자 기기 자격증명 설정","navPath":"enterprise-cloud/topics/aae-client/bot-creator/using-the-workbench/cloud-edit-device-credentials.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/devices/view-and-update-bot-agent-device-settings.html","title":"Bot 에이전트 기기 설정 보기 및 업데이트","navPath":"enterprise-cloud/topics/control-room/devices/view-and-update-bot-agent-device-settings.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/bot-agent/bot-agent-silent-installation.html","title":"기기에 Bot 에이전트 대량 설치","navPath":"enterprise-cloud/topics/bot-agent/bot-agent-silent-installation.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/bot-agent/bulk-install-bot-agent-using-microsoft-sccm.html","title":"Microsoft Endpoint Configuration Manager를 사용한 Bot 에이전트 대량 설치","navPath":"enterprise-cloud/topics/bot-agent/bulk-install-bot-agent-using-microsoft-sccm.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/bots/my-bots/cloud-first-bot.html","title":"첫 번째 Bot 생성","navPath":"enterprise-cloud/topics/control-room/bots/my-bots/cloud-first-bot.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/control-room/bots/my-bots/cloud-run-first-bot.html","title":"첫 번째 Bot 실행","navPath":"enterprise-cloud/topics/control-room/bots/my-bots/cloud-run-first-bot.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/update-enterprise-a2019.html","title":"최신 Automation 360 버전으로 업데이트","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/update-enterprise-a2019.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-upgrade-script-control-room.html","title":"스크립트를 사용하여 Automation 360에 Microsoft Windows Server 업데이트","navPath":"enterprise-cloud/topics/deployment-planning/on-prem-install/cloud-upgrade-script-control-room.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/cloud-iqb-getting-started.html","title":"Automation 360 IQ Bot 설치 및 업데이트","navPath":"enterprise-cloud/topics/iq-bot/cloud-iqb-getting-started.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-installation-prereqs.html","title":"IQ Bot설치 필수 구성 요소","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-installation-prereqs.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/iq-bot-system-and-software-requirements.html","title":"IQ Bot 시스템 요구 사항","navPath":"enterprise-cloud/topics/iq-bot/iq-bot-system-and-software-requirements.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-pre-install-steps.html","title":"IQ Bot 선행조건 단계","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-pre-install-steps.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-pre-install-service-configuration.html","title":"IQ Bot서비스 구성","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-pre-install-service-configuration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-pre-install-windows-services.html","title":"IQ Bot Windows 서비스","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-pre-install-windows-services.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-pre-install-rabbitmq-otp-upgrade.html","title":"RabbitMQ v3.8.18 및 Erlang/OTP 업그레이드","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-pre-install-rabbitmq-otp-upgrade.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-install-cluster-with-iqb-preinstalled.html","title":"IQ Bot가 사전 설치된 머신에서 클러스터 모드로 IQ Bot 설치","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-install-cluster-with-iqb-preinstalled.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-pre-install-express.html","title":"익스프레스 모드에서 IQ Bot을 설치하기 위한 선행조건","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-pre-install-express.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-install-express.html","title":"익스프레스 모드에서 IQ Bot 설치","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-install-express.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-install-custom.html","title":"맞춤형 모드로 IQ Bot 설치","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-install-custom.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-install-cluster.html","title":"클러스터 모드에서 IQ Bot 설치","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-install-cluster.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/rabbitmq-config.html","title":"IQ Bot에 대한 RabbitMq 클러스터 구성","navPath":"enterprise-cloud/topics/iq-bot/install/rabbitmq-config.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-install-cluster-share-folder.html","title":"공유 폴더를 액세스 가능하게 만들기","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-install-cluster-share-folder.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-install-cluster-amazon-ec2.html","title":"Amazon EC2의 클러스터 모드에서 IQ Bot 설치","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-install-cluster-amazon-ec2.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-checklist.html","title":"설치 이후 체크리스트","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-checklist.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-certificate-san.html","title":"주제 대체 이름(SAN)으로 자체 서명 인증서 작성","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-certificate-san.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-register-with-cr.html","title":"IQ Bot을 Control Room에 등록","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-register-with-cr.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-iqb-with-http-https.html","title":"HTTP 및 HTTPS로 IQ Bot구성","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-iqb-with-http-https.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-cr-http-while-iqb-https.html","title":"Control Room가 HTTP로 구성된 경우 IQ Bot을 HTTPS로 구성","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-cr-http-while-iqb-https.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-cr-https-while-iqb-http.html","title":"Control Room가 HTTPS로 구성된 경우 IQ Bot을 HTTP로 구성","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-cr-https-while-iqb-http.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-iqb-https-single-domain.html","title":"단일 도메인을 사용하여 HTTPS로 IQ Bot 구성","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-iqb-https-single-domain.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-iqb-https-multiple-domain.html","title":"여러 도메인을 사용하여 HTTPS로 구성IQ Bot","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-config-iqb-https-multiple-domain.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-azure.html","title":"Microsoft Azure Computer Vision OCR 엔진 사용","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-azure.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-azure-license-key.html","title":"Microsoft Azure Computer Vision OCR 엔진에 자신의 키를 사용합니다.","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-azure-license-key.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-abbyy.html","title":"IQ Bot에 ABBYY FineReader Engine OCR 엔진 사용","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-abbyy.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-abbyy-license-key.html","title":"사용자 소유의 ABBYY FineReader Engine 라이선스 사용","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-abbyy-license-key.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-abbyy-with-prior-install.html","title":"ABBYY FineReader Engine가 이전 버전의 IQ Bot에서 설치된 상태로 남은 경우 설치 단계","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-abbyy-with-prior-install.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-google-vision.html","title":"Google Vision API OCR 엔진 사용","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-google-vision.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-google-vision-license-key.html","title":"Google Vision API OCR 엔진에 자체 라이선스 키 사용","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-google-vision-license-key.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/impact-of-google-vision-ocr-upgrade.html","title":"Google Vision API OCR 업그레이드의 잠재적 영향","navPath":"enterprise-cloud/topics/iq-bot/extraction/impact-of-google-vision-ocr-upgrade.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-tegaki.html","title":"Tegaki API OCR 엔진 사용","navPath":"enterprise-cloud/topics/iq-bot/extraction/iqb-ocr-tegaki.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-resolve-registration-failure.html","title":"IQ Bot 등록 실패 해결방법","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-resolve-registration-failure.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-post-install-unregister-with-cr.html","title":"Control Room에서 IQ Bot 등록 취소","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-post-install-unregister-with-cr.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-validation-setup-logfile-rollover.html","title":"로그 파일 자동 롤오버 설정","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-validation-setup-logfile-rollover.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-validation-healthcheck-rabbitmq-failure.html","title":"RabbitMQ v3.8.18 시작 실패 시 상태 점검 API 응답","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-validation-healthcheck-rabbitmq-failure.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-validation-reinstall-https-ssl-certificate-on-expiry.html","title":"만료 시 보안 통신을 위한 HTTPS SSL 인증서 다시 설치","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-validation-reinstall-https-ssl-certificate-on-expiry.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/upgrade-overview.html","title":"Automation 360 IQ Bot 업데이트","navPath":"enterprise-cloud/topics/iq-bot/upgrade-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/cloud-unified-iq-bot-database.html","title":"IQ Bot 온프레미스 데이터베이스 마이그레이션 스크립트 실행","navPath":"enterprise-cloud/topics/iq-bot/cloud-unified-iq-bot-database.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/updating-iq-bot-a2019.html","title":"Automation 360 IQ Bot 온프레미스 최신 버전으로 업데이트","navPath":"enterprise-cloud/topics/iq-bot/updating-iq-bot-a2019.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-upgrade-downgrade-to-different-version.html","title":"IQ Bot 업그레이드 및 다운그레이드","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-upgrade-downgrade-to-different-version.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/install/iqb-uninstall.html","title":"IQ Bot 제거","navPath":"enterprise-cloud/topics/iq-bot/install/iqb-uninstall.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-overview.html","title":"고가용성 및 재해 복구 개요","navPath":"enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-cluster-overview.html","title":"HA 클러스터 구성 개요","navPath":"enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-cluster-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-deploy.html","title":"고가용성 배포 모델","navPath":"enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-deploy.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-deploy.html","title":"고가용성을 이용한 재해 복구 배포 모델","navPath":"enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-deploy.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/ha-dr/iqb-dr-pre-configuration.html","title":"DR 구성 요구 사항","navPath":"enterprise-cloud/topics/iq-bot/ha-dr/iqb-dr-pre-configuration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/ha-dr/iqb-dr-failover-procedure.html","title":"재해 복구 장애 조치 단계 개요","navPath":"enterprise-cloud/topics/iq-bot/ha-dr/iqb-dr-failover-procedure.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-recovery-production.html","title":"중복 DR 사이트 재구축","navPath":"enterprise-cloud/topics/iq-bot/ha-dr/iqb-ha-dr-recovery-production.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]}]}]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/upgrade-process-overview.html","title":"마이그레이션","navPath":"enterprise-cloud/topics/migration/upgrade-process-overview.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migration-best-practices.html","title":"마이그레이션 모범 사례","navPath":"enterprise-cloud/topics/migration/migration-best-practices.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/check-migration-readiness.html","title":"마이그레이션 준비 확인","navPath":"enterprise-cloud/topics/migration/check-migration-readiness.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-certified-versions.html","title":"마이그레이션에 지원되는 Control Room 버전","navPath":"enterprise-cloud/topics/migration/migrate-certified-versions.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/verify-11x-10x-version-for-migration.html","title":"마이그레이션을 위해 Enterprise 11 또는 Enterprise 10 버전 확인","navPath":"enterprise-cloud/topics/migration/verify-11x-10x-version-for-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/unsupported-features-for-migration.html","title":"마이그레이션에 지원되지 않는 기능","navPath":"enterprise-cloud/topics/migration/unsupported-features-for-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/difference-in-a2019-11-x-features.html","title":"Automation 360와 Enterprise 11/Enterprise 10의 기능 차이","navPath":"enterprise-cloud/topics/migration/difference-in-a2019-11-x-features.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/bot-scanner.html","title":"Bot 스캐너 개요","navPath":"enterprise-cloud/topics/migration/bot-scanner.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/using-bot-scanner.html","title":"Bot 스캐너를 사용하여 Enterprise 11 또는 10 Bot 스캔","navPath":"enterprise-cloud/topics/migration/using-bot-scanner.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/analyze-reports.html","title":"마이그레이션용 Bot 스캐너 보고서 분석","navPath":"enterprise-cloud/topics/migration/analyze-reports.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/get-migration-license.html","title":"마이그레이션 라이선스 받기","navPath":"enterprise-cloud/topics/migration/get-migration-license.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/plan-and-prepare-for-migration.html","title":"새로운 Control Room 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/plan-and-prepare-for-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/choose-deployment-model.html","title":"배포 모델 선택","navPath":"enterprise-cloud/topics/migration/choose-deployment-model.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/upgrade-from-11x-to-a2019-cloud.html","title":"Enterprise 11에서 Automation 360 클라우드로 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/upgrade-from-11x-to-a2019-cloud.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/cloud-migration-workflow.html","title":"클라우드 마이그레이션에 대한 권장 워크플로","navPath":"enterprise-cloud/topics/migration/cloud-migration-workflow.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/install-cloud-migration-utility.html","title":"클라우드 마이그레이션 유틸리티 설치","navPath":"enterprise-cloud/topics/migration/install-cloud-migration-utility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/prerequisites-for-cloud-migration.html","title":"클라우드 마이그레이션 선행조건","navPath":"enterprise-cloud/topics/migration/prerequisites-for-cloud-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/use-migrate-utility-upload-11x-data.html","title":"클라우드 마이그레이션 유틸리티를 사용하여 Enterprise 11 데이터 업로드","navPath":"enterprise-cloud/topics/migration/use-migrate-utility-upload-11x-data.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-when-using-11x-and-a2019-cloud.html","title":"Enterprise 11와 Automation 360 클라우드를 병렬로 사용할 경우 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/migrate-when-using-11x-and-a2019-cloud.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/manual-migration-to-a2019-cloud.html","title":"수동으로 Automation 360 클라우드로 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/manual-migration-to-a2019-cloud.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/prerequisites-for-manual-migration.html","title":"수동 마이그레이션을 위한 사전 요구 사항","navPath":"enterprise-cloud/topics/migration/prerequisites-for-manual-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/upgrade-from-11x-to-a2019-on-prem.html","title":"Enterprise 11에서 Automation 360 온프레미스로 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/upgrade-from-11x-to-a2019-on-prem.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/cloud-copy-directories.html","title":"Enterprise 11 정보를 Automation 360에 복사하여 붙여넣기","navPath":"enterprise-cloud/topics/migration/cloud-copy-directories.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-11-x-bi-using-utility.html","title":"마이그레이션을 위한 Enterprise 11 Bot Insight 대시보드 내보내기","navPath":"enterprise-cloud/topics/migration/migrate-11-x-bi-using-utility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-11-x-audit-logs.html","title":"Enterprise 11 감사 로그 마이그레이션하기","navPath":"enterprise-cloud/topics/migration/migrate-11-x-audit-logs.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-when-using-11x-and-a2019-on-prem.html","title":"Enterprise 11와 Automation 360 온프레미스를 병렬로 사용할 경우 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/migrate-when-using-11x-and-a2019-on-prem.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/wlm-migration.html","title":"워크로드 관리 데이터 마이그레이션 방법","navPath":"enterprise-cloud/topics/migration/wlm-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/manual-migration-to-a360-on-prem.html","title":"수동으로 Automation 360 온프레미스로 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/manual-migration-to-a360-on-prem.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-11-x-to-a2019-cloud-enabled.html","title":"Enterprise 11에서 Automation 360 클라우드 지원으로 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/migrate-11-x-to-a2019-cloud-enabled.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-from-11x-to-a2019-linux.html","title":"Linux CentOS의 Enterprise 11에서 Automation 360로 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/migrate-from-11x-to-a2019-linux.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/upgrade-from-10x-to-a2019-on-prem.html","title":"Enterprise 10에서 Automation 360 온프레미스로 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/upgrade-from-10x-to-a2019-on-prem.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/10-x-user-roles-migration.html","title":"Enterprise 10 데이터를 Automation 360에 복사하는 방법","navPath":"enterprise-cloud/topics/migration/10-x-user-roles-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-10x-bots.html","title":"Enterprise 10 데이터 복사","navPath":"enterprise-cloud/topics/migration/migrate-10x-bots.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-when-using-10x-and-a2019-on-prem.html","title":"Enterprise 10와 Automation 360 온프레미스를 병렬로 사용할 경우 마이그레이션 준비","navPath":"enterprise-cloud/topics/migration/migrate-when-using-10x-and-a2019-on-prem.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-10-x-delta-bots-export-utility.html","title":"Automation 360에 신규 또는 업데이트된 Enterprise 10 Bot 마이그레이션","navPath":"enterprise-cloud/topics/migration/migrate-10-x-delta-bots-export-utility.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/prerquisites.html","title":"Bot 마이그레이션을 위한 선행조건 태스크","navPath":"enterprise-cloud/topics/migration/prerquisites.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-and-validate-bots.html","title":"Bot 마이그레이션 및 유효성 검사","navPath":"enterprise-cloud/topics/migration/migrate-and-validate-bots.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/bot-migration-wizard.html","title":"Bot 마이그레이션 마법사","navPath":"enterprise-cloud/topics/migration/bot-migration-wizard.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-validate-bots-considerations.html","title":"Bot 마이그레이션 및 검증 시 고려 사항","navPath":"enterprise-cloud/topics/migration/migrate-validate-bots-considerations.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/cloud-migrate-wizard.html","title":"엔터프라이즈 Bot 마이그레이션","navPath":"enterprise-cloud/topics/migration/cloud-migrate-wizard.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/metabot-migration.html","title":"MetaBot 마이그레이션 방법","navPath":"enterprise-cloud/topics/migration/metabot-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/how-aaapplicationpath-is-migrated.html","title":"AAApplicationPath 변수가 마이그레이션되는 방법","navPath":"enterprise-cloud/topics/migration/how-aaapplicationpath-is-migrated.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/supported-aa-settings-configurations.html","title":"Automation 360에서 지원되는 AASettings","navPath":"enterprise-cloud/topics/migration/supported-aa-settings-configurations.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/migrate-schedules.html","title":"마이그레이션 후 스케줄 활성화","navPath":"enterprise-cloud/topics/migration/migrate-schedules.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/pause-and-resume-bot-migration.html","title":"Bot 마이그레이션 일시 중지 및 재개","navPath":"enterprise-cloud/topics/migration/pause-and-resume-bot-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/stop-pause-and-resume-migration.html","title":"Bot 마이그레이션 중지","navPath":"enterprise-cloud/topics/migration/stop-pause-and-resume-migration.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]}]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/validate-and-update-migrated-bots.html","title":"마이그레이션 후 Bot 검증 및 업데이트","navPath":"enterprise-cloud/topics/migration/validate-and-update-migrated-bots.html","bundleId":"enterprise-v2019","id":null,"isActive":false,"children":[]},{"url":"https://automationanywhere-be-prod.automationanywhere.com/bundle/enterprise-v2019/page/enterprise-cloud/topics/migration/cloud-packages-for-migration.html","title":"마이그레이션을 위한