PS-Commands/Scripts/Scheduled-Task-Creat-Startup.ps1
2023-08-17 13:45:36 +03:00

3 lines
No EOL
253 B
PowerShell
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$Trigger = New-ScheduledTaskTrigger AtLogon
$Action = New-ScheduledTaskAction -Execute "$home\Documents\DNS-Change-Tray-1.3.exe"
Register-ScheduledTask -TaskName "DNS-Change-Tray-Startup" -Trigger $Trigger -Action $Action -RunLevel Highest Force