[Gemini] 오토핫키 : 폴더 생성 후 사용자 공유 지정
; 관리자 권한 자동 실행 if !A_IsAdmin { Run *RunAs "%A_ScriptFullPath%" ExitApp } ; 1. 변수 설정 DrivePath := "Z:\Download" ShareName := "Download" UserName := "사용자1" ; 2. 폴더가 없는 경우 생성 if !FileExist(DrivePath) { FileCreateDir, %DrivePath% if ErrorLevel { MsgBox, 16, 오류, 폴더를 생성할 수 없습니다. (Z 드라이브 확인 필요) ExitApp } } ; 3. 폴더 공유 및 권한 설정 (CMD 명령 실행) ; /grant:%UserName%,FULL 은..