About 538,000 results
Open links in new tab
  1. Run PowerShell Command 'Start-Process' from Windows Shortcut

    Nov 30, 2022 · Though the docs for Start-Process don't explicitly list .msc, the command Start-Process -filepath "C:\Program Files\One Identity\Active Roles\7.3\Console\ActiveRoles.msc" …

  2. Use Start-Process to start a process with high priority

    Apr 15, 2023 · You may set the priority of the process after it's started by Start-Process. By default Start-Process returns no output, so you need to use the -PassThru parameter for it to …

  3. Run PowerShell script as a different user and elevated

    Jan 21, 2021 · Execute the Start-Process Powershell a little differently than you were executing it for it to take the action of the script logic while running elevated too. Add the ExecutionPolicy …

  4. windows - Why is start process minimized not working for some ...

    Apr 9, 2024 · Start-Process "C:\Program Files\Google\Chrome\Application\chrome.exe" -WindowStyle ([System.Diagnostics.ProcessWindowStyle]::Minimized) However, it didn't work …

  5. PowerShell start-process -argumentlist: does not work with …

    Jun 1, 2023 · PowerShell start-process -argumentlist: does not work with cmd.exe but works fine with notepad.exe Ask Question Asked 2 years, 7 months ago Modified 2 years, 7 months ago

  6. Powershell Start-Process - can I make it leave the windows open ...

    Oct 13, 2016 · I'm launching multiple copies of aerender.exe (a command line renderer for Adobe After Effects) using start-process. This renderer produces a truckload of verbiage which is …

  7. How do I set an executable's working directory via the command …

    To explicitly set the working directory, a PowerShell solution would be to use the Start-Process cmdlet with the -WorkingDirectory parameter.

  8. What is the difference between Powershell -command and

    Nov 4, 2020 · Start-Process powershell -Verb runas -argumentlist "Copy-Item \\Poplar\SuperSound -Destination 'C:\Program Files\' -Force -Recurse" So I guess …

  9. windows 7 - Powershell Start-Process -Credential - Super User

    I understand that powershell Start-Process cmdlet has the parameter -Credential. But when i do Get-Help Start-Process , it doesnt explain this parameter and google didnt bring me anywhere …

  10. windows - Install msi package using PowerShell - Super User

    Dec 1, 2022 · Use Start-Process to install the msi package from PowerShell using msiexec with the /i and /qn parameters. You can optionally test using the -wait parameter of Start-Process in …