About 14,200 results
Open links in new tab
  1. powershell - Output redirection fails when using Start-Process to ...

    Sep 5, 2019 · 2 You might be searching for one or more of the following Start-Process parameters: -RedirectStandardOutput Specifies a file. This cmdlet sends the output generated …

  2. powershell - 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. Run PowerShell Command 'Start-Process' from Windows Shortcut

    Nov 30, 2022 · I have a working PowerShell command that I want to execute from a Windows shortcut. The command is: Start-Process -filepath "C:\Program Files\One Identity\Active …

  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, 6 months ago Modified 2 years, 6 months ago

  6. PowerShell on Windows: Start-Process fails if output redirection ...

    May 25, 2022 · It's the PowerShell implementation of Start-Process -- Enabling output redirection introduces additional constraint to the executable location (has to be in PATH). I assume this …

  7. 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 …

  8. powershell - How to open a Windows store app (UWP app) from …

    Oct 26, 2024 · Simple Solution for Applications in the Start Menu Using the command Get-StartApps that Destroy666 provided in his answer, you can quickly get the AUMID from all …

  9. powershell - How do I send an already running process to the …

    18 In bash, a process that is already running in the foreground can be suspended by hitting control Z. You can then bring it back to the foreground with fg or let it continue running in the …

  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 …