I am trying to deploy an application that is basically a restricted web-browser that I have created within c# using the superb CefSharp libraries. However, I need to call this application from a command line prompt, adding a switch at the end to take the user to the correct page - for example:
C:\ProgramFiles\TSB\NewBro
wswer.exe
www.website.com
After using the "Publish" function, and creating the setup.exe file. I install it, it runs automatically and pops a shortcut into the Start menu. Whilst this is fine, it won't run correctly unless I issue the website switch at the end (this will ultimately be done through another application).
Ultimately, I need to see a .exe file and control where the Setup.exe file is putting it.
I'm pretty new to c# - so any help would be greatly appreciated.
-saige-