marksman
marksman copied to clipboard
Silently Run
Is there an option to get this to silently run? If not I would like to request it as a feature.
How silently? In my production environment, It runs through a vbs script to hide the console window. (Sorry, it's a windows limitation). If you like I can post the script here.
@danielhogg Is there a way to hide the console in C#?
I mostly just want to hide the window. If you could post it that would be great.
Can't help but concur with velaar. vbscript is your friend for that particular task..
Something as simple as:
strCommand = """\PathToMarksman\marksman.exe"""
Set objShell = CreateObject("WScript.Shell")
objShell.Run strCommand, 0, True
will do the job.