I need to search and run the program in cmd windows 7. I tried the following code it doesn't seems to pickup the operator when key in together.
START WHERE /R C:\ Program.exe /uninstall
dir /s /b Program.exe /uninstall
Is there another (simpler/better) way to start the program with the operators?
where
searches files, but does not execute them.start where
does nothing but startingwhere
in a newcmd
instance, sostart
relates towhere
but not to the file searched bywhere
.dir
lists directory contents, but does also not execute anything. Actually you should usedir /S /B C:\Program.exe
to searchC:\
forPogram.exe
; note thatdir /S /B Program.exe
searchesProgram.exe
in the current working directory (recursively).The
/uninstall
switch is considered as part of thewhere
or thedir
command line as you stated it.You need to split your task into two phases:
Program.exe
inC:\
recursively;Program.exe
using the option/uninstall
;Here is how it could work using
where
:Here is a way using
dir
(the/A:-D
option has been added to not return directories calledProgram.exe
):If there are more files called
Program.exe
inC:\
, all of them are executed.