Summary: Learn how to start a process in a minimized window by using Windows PowerShell.
How can I start a new process in a minimized window?
Use the Start-Process cmdlet and specify a window style of minimized, as shown here.
Start-Process notepad -WindowStyle Minimized
0 comments