I have a ClickOnce deployed application I want to launch from VBScript, similar to launching Microsoft Word in the following example:
Dim word
Set word = CreateObject("Word.Application")
word.Visible = True
The problem is I don't know what parameter to pass into the CreateObject
function to launch my application. Where would I find the master list of applications installed on my PC/the shortcut to call to launch them?