My company has several ClickOnce(online only) apps that are actively in use and my job is to make an app that installs the necessary apps from one location(my app). All of which run from our local intranet server.
I have found a way to silently install these apps using InPlaceHostingManager and specifying which apps were chosen in the code-behind and then choosing their '.application' files. And it seems to work fine on my test environment.
But doesn't seem to work on the actual server. (I think it might be because it's only running the .application file and can't work without the setup.exe)
So then to install these apps when the users click "install" how do I install these apps as if they were installed individually from the ClickOnce created publish.html page?
I don't think InPlaceHostingManager can install .exe files so how should I install these apps?