I'm creating Shortcuts using VBScript. My problem though is that I want to create a shortcut that has the "Run as Administrator" flag turned on. I've looked into it and haven't found any option to do so. Am I missing something?
PS: I'm a complete newb to VBScript.
Example Fake Code:
Set oWS = WScript.CreateObject("WScript.Shell")
sLinkFile = "%AppData%\Microsoft\Windows\Start Menu\Programs\Startup\ProcessExplorerPortable.lnk"
Set oLink = oWS.CreateShortcut(sLinkFile)
oLink.TargetPath = "H:\Documents\PortableApps\ProcessExplorerPortable\ProcessExplorerPortable.exe /t"
oLink.AdminFlag = true
oLink.Save