[Uipath] Orchestrator Any User, Any Machine Mapping
·
[RPA]
Modern Folder를 사용하여 Unattended Robot 을 생성해서 프로세스를 실행할 경우 아래와 같은 화면을 볼 수 있다. Modern Folder 에서 로봇의 생성은 [Robot 타입의 user 생성 + Machine Template] 을 동시에 설정해서 하나의 Robot을 생성한다. modern folder 에서 로봇 생성방법은 아래를 참고 바라고 2021.08.20 - [[Uipath]] - [Uipath] Orchestrator Modern Folder UnAttended Robot 생성 [Uipath] Orchestrator Modern Folder UnAttended Robot 생성 모던 폴더에서 로봇 생성하는 법을 알아보자 1. Robot 으로 User 생성 1-1 이름 설정 -..
[Uipath] Robot License 명령어 Command
·
[RPA]
라이센스 관련 명령어 모음이다. 해당 자료는 Uipath 공식 사이트에서 정리한 코드이다. 자세한 내용을 보고 싶으면 아래 링크에 접속하면 된다. https://docs.uipath.com/robot/docs/licensetool-command-descriptions LicenseTool Command Descriptions The UiPath.LicenseTool.exe is a command line utility which enables you to activate your machine online or offline, and update your license information. The utility can be found in the C:\Program Files\UiPath\Studio ..
[Uipath] Orchestrator Modern Folder UnAttended Robot 생성
·
[RPA]
모던 폴더에서 로봇 생성하는 법을 알아보자 1. Robot 으로 User 생성 1-1 이름 설정 - Roles > Robot으로 설정 - Password 는 원하는 Password 설정해주면 된다. 1-2 Unattend robot 활성화 여기서 주의 해야 할 것은 Domain/Username은 오른쪽과 같이 cmd에서 확인하면 되고, Password 는 반드시 윈도우 접속 Password를 입력해야 한다. 그리고 Add(생성)을 누른다. 2. Machine 생성 (Machines Template) 2-1 UR 이름 정해주기 여기서는 아무 이름이나 써도 된다. 3. Robot으로 사용할 PC에 Uipath.Robot을 설치하고 Machine 키를 복사해서 붙여 넣어주면 된다. - OC 머신키 복사는 머신..
[Uipath] Orchestrator에서 Modern folder 로봇 이름 변경
·
[RPA]
Orchestrator 버전 : 2020.10 Orchestrator 에서 Modern Folder를 사용해서 로봇을 생성할 경우 프로세스를 실행할때 아래 화면 처럼 Domain/Username 으로 표현된다. (Classic Folder에서는 로봇의 Description을 사용자가 변경할 수 있다.) 아래는 Modern Folder의 로봇 선택 Description이다. ex) woefno9-ei/develchild 터미널이나 쉘에서 whoami 명령어를 치면 나오는 결과이다. Machine 선택해도 똑같이 나온다. 직접 개발한 개발자나 Orchestrator 운영자는 알아볼 수 있지만 현업 사용자는 이 Description이 보기 불편 할 수 있다. 이 경우를 Orchestrator 사이트에서 해결하..
[VBA] 엑셀 기본 저장 format 설정
·
[VBA]
엑셀의 파일 형식중 .xls, .xlsx 파일등을 번갈아가며 사용할 때 저장 형식을 지정해 주지 않으면 save나 saveas 명령어를 쓸 때 오류가 날경우가 있다. 그럴 경우를 방지하고자 앞에 기본 저장 설정을 해주는 것이 좋다. Sub 기본형식변경() Application.DefaultSaveFormat = 51 Debug.Print Application.DefaultSaveFormat '또는 Application.DefaultSaveFormat = xlWorkbookDefault Debug.Print Application.DefaultSaveFormat End Sub 앞에 기본으로 써주면 된다. 필자는 습관처럼 아래코드를 쓰고 시작한다. Sub 기본설정() Application.ScreenUpdat..
[VBA] 다른 엑셀파일 내용 가져오기 (프론트, 백)
·
[VBA]
※ 백에서 엑셀 파일 가져오기 아래 코드를 실행하면 데이터를 가져올 파일이 직접 열리면서 값을 가져오게 된다. (순서가 바껴서 수정) 아래가 getobject 함수를 사용해서 백에서 가져옵니다. Sub 다른엑셀파일가져오기() Application.ScreenUpdating = False Application.DisplayAlerts = False Dim str가져올파일 As String Dim obj가져올파일 As Object Dim wb가져올파일 As Workbook, wb현재파일 As Workbook Dim ws시트1 As Worksheet, ws현재시트 As Worksheet '하드코딩 str가져올파일 = "C:\Users\USER\Desktop\Test\test.xlsx" '현재 워크북 set S..