How would I write the following windows command in powershell?
start /b /min FeedDemon.exe
When I run that on the command line, it minimizes the window fine and works great in a startup script. But in powershell, I cannot get the same results when I try:
start-process -FilePath FeedDemon.exe -WindowStyle Minimized
I am still learning powershell (and Windows in general) so please be gentle.
The
/bargument tostartindicates that the program should run without popping a new console window. The direct translation to powershell would beIf that doesn’t work, just call it the old fashioned way, from Powershell