i have a intranet site that uses links to installation files of programs to allow the quick running of the installation programs. However, one of the apps requires the use of command line switches to make sure it gets installed the way we want it. So the full path of the executable looks like this:
What ever i do, i cannot seem to get it to work with just a regular hyperlink. It always just says page not found. I've even tried replacing the /'s and spaces with the special characters like %20 for space.
What i was wondering is if there is any way to embed this in a small vbscript app that would handle to execution and not let it get messed up by the html interpreter of the browser.
Code:
\\server\share\subfolder\WIN32\SETUP.EXE /s /v"/qb+ /mnavwnt"
What i was wondering is if there is any way to embed this in a small vbscript app that would handle to execution and not let it get messed up by the html interpreter of the browser.