7 lines
200 B
PowerShell
7 lines
200 B
PowerShell
|
[CmdletBinding()]
|
||
|
Param(
|
||
|
# No parameters
|
||
|
)
|
||
|
|
||
|
# Create scheduled task
|
||
|
& schtasks.exe /Create /TN 'OVF-Properties' /SC ONSTART /RU SYSTEM /TR "powershell.exe -file C:\Payload\Apply-OVFProperties.ps1"
|