Support Suite
User Login
How to make the Kiosk run on start up
Posted by Jacob Fairbairn on 24 August 2013 08:47 PM
|
|
Windows 10/11You can either run this script in Powershell as an admin, or open Task Scheduler and manually create the task with these parameters. Note for version past 10.3.50, the exe will be located at C:\Program Files\Savance\EIOBoard Kiosk\EIOBoardKioskPC.exe: <# # # Add a Scheduled Task to run the Kiosk on startup # # #> $A = New-ScheduledTaskAction -Execute "C:\Program Files (x86)\Savance\EIOBoard Kiosk\EIOBoardKioskPC.exe" $T = New-ScheduledTaskTrigger -AtLogOn $P = New-ScheduledTaskPrincipal -UserId $env:USERNAME -RunLevel Highest $S = New-ScheduledTaskSettingsSet -StartWhenAvailable -ExecutionTimeLimit (New-TimeSpan -Days 3650) $D = New-ScheduledTask -Action $A -Principal $P -Trigger $T -Settings $S ` -Description 'Starts the kiosk application -- Savance'
Register-ScheduledTask StartKiosk -InputObject $D -ErrorAction Stoppixelmon
Windows 8
If your EIOBoard Kiosk is not running on Start Up
| |
|