Jump to content

[Help] Suppress Output from cmd?


ODC

Recommended Posts

I am creating some shortcuts to start some process at a higher level. This is easy accomplished with, for example:

C:\WINDOWS\system32\cmd.exe /c start "runhigh" /high "C:\Program Files\AppFolder\Appname.exe"

However, this causes a command prompt window to quickly open when the command is executed, then close when finished. Is there a way to suppress this window?

Edited by ODC
Link to comment
Share on other sites


I know this sounds weird, but you could call the command from within a VBScript, and have it supress the CMD window.

Option Explicit
Dim oShell
Set oShell = CreateObject("WScript.Shell")

oShell.Run "C:\WINDOWS\system32\cmd.exe /c start " & Chr(34) & "runhigh" & Chr(34) & " /high " & Chr(34) & "C:\Program Files\AppFolder\Appname.exe" & Chr(34),0,True

Link to comment
Share on other sites

extract cmdow.zip to windows\system32 and then run your batch file like this:

cmdow @ /HID

C:\WINDOWS\system32\cmd.exe /c start "runhigh" /high "C:\Program Files\AppFolder\Appname.exe"

exit

Edited by ophiel
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...