Launching a startup program to run as administrator

PHOTO EMBED

Fri May 12 2023 13:12:03 GMT+0000 (Coordinated Universal Time)

Saved by @Curable1600

Set WshShell = CreateObject("WScript.Shell" ) 
WshShell.Run chr(34) & "C:\Program Files (x86)\File\Program.exe" & Chr(34), 0 
Set WshShell = Nothing
content_copyCOPY

The following script shows you how to launch a startup program to run as administrator in Windows 10. This fixes many programs that require elevation and you don’t want to launch manually every time.

https://christitus.com/run-as-administrator/