7 lines
197 B
PowerShell
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" |