Files
Packer.Images/scripts/ADCS/Register-ScheduledTask.ps1
djpbessems 9dc19c5b17
Some checks reported errors
continuous-integration/drone/push Build was killed
Delete commit history (containing proprietary code)
2021-01-24 10:41:02 +01:00

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"