I\'m installing a desktop shortcut (to a batch file) from a WiX-based installer -- how do I automatically configure this shortcut with the \"Run as Administrator\" setting enabl
I'm guessing you would need a custom action and call the COM interfaces on your own. Query IShellLink (or IPersistFile?) for IShellLinkDataList, then: IShellLinkDataList->SetFlags(orgFlagsFromGetFlags|SLDF_RUNAS_USER);