Packer.Images/scripts/Server2019/Register-ScheduledTask.ps1
djpbessems 34e14e721f
Some checks failed
continuous-integration/drone/push Build is failing
Add yamllint;Replay downstream changes
2021-04-09 11:43:42 +02:00

7 lines
197 B
PowerShell

[CmdletBinding()]
Param(
# No parameters
)
# Create scheduled task
& schtasks.exe /Create /TN 'FirstBoot' /SC ONSTART /RU SYSTEM /TR "powershell.exe -file C:\Payload\Apply-FirstBootConfig.ps1"