윈도우 키오스크 관리 팁
윈도우+R키를 눌러 실행 창을 띄운 후
shell:startup
라고 치면 시작프로그램 폴더가 열린다.
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --kiosk [키오스크 콘텐츠 URL] --edge-kiosk-type=fullscreen
그리고 위 명령어로 배치파일을 만든 후 그 배치파일을 시작프로그램 폴더에 복사한다. 이렇게 하면 키오스크를 켤 때 마다 자동으로 키오스크에 맞는 전체창 모드로 엣지가 실행되고 [키오스크 콘텐츠 URL]을 열게 된다.
엣지만 가능한 것이 아니다. naver whale이나 chrome으로도 가능하다. naver whale로도 할 수 있다. 이 경우에는 아래와 같이 하면 된다.
"C:\Program Files\Naver\Naver Whale\Application\whale" --kiosk [키오스크 콘텐츠 URL] -kiosk-type=fullscreen
그리고 CMOS에서 특정 시간마다 꺼져있는 장비를 부팅시키는 기능이 있다. 그리고 작업 스케줄러를 실행시키면 특정 시간에 장비를 끄는 기능이 있다. 이 두 가지 기능을 이용하면 매일 장비를 끄고 켜는 수고 없이 자동으로 장비를 끄고 켜고 할 수 있다.
브라우저로 콘텐츠를 실행시키는 경우 사용시간이 길어지면 브라우저에서 메모리 부족 현상(out of memory)이 일어날 수도 있으므로 사용하지 않는 시간에는 장비를 끄는 것이 좋다.
Tips for managing kiosks on Windows
After pressing Windows+R to open the Run dialog box and typing "shell:startup", the Startup folder opens.
Create a batch file with the following command: "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --kiosk [kiosk content URL] --edge-kiosk-type=fullscreen
Then, copy that batch file to the Startup folder. By doing this, whenever the kiosk is turned on, Edge will automatically launch in full-screen mode and open the [kiosk content URL].
This is not limited to Edge. It also works with Naver Whale or Chrome browsers. For Naver Whale, you can use the following command: "C:\Program Files\Naver\Naver Whale\Application\whale.exe" --kiosk [kiosk content URL] -kiosk-type=fullscreen
Additionally, CMOS has a feature that allows you to boot devices at specific times, and the Task Scheduler has a feature to shut down devices at specific times. By utilizing these two features, you can automatically shut down and boot the devices daily without any manual effort.
When running content through a browser for an extended period, an out-of-memory issue may occur due to memory shortage. Therefore, it is recommended to shut down the devices during inactive hours.