Top "Start-process" questions

Start-Process is a PowerShell cmdlet that starts one or more processes on the local computer.

Is there a way to pass serializable objects to a PowerShell script with start-process?

I know about PowerShell jobs, but I want to use start-process and pass a serializable object to the new powershell …

powershell start-process
How to start a 32-bit process in C# without using shell execute on 64-bit machine?

I have an ASP .NET web application on a 64-bit machine that needs to run a legacy 32-bit reporting application. …

c# 32bit-64bit startprocessinfo start-process
Powershell Start-Process VS Invoke-Item

What's the difference between Start-Process and Invoke-Item? I noticed that you can't Invoke-Item chrome. I assume that Invoke-Item is specifically …

powershell start-process
How to run a process as non-admin from an elevated PowerShell console?

Maybe there is a way to do it with Start-Process cmdlet that I cannot find? The other related Q/A's …

windows powershell elevated-privileges start-process
Issues with running a PsExec process from code

I am experiencing a weird issue when attempting to run a .NET command line tool remotely using PsExec. When running …

c# .net process psexec start-process
How to start and stop processes in PowerShell?

This should work fine in PowerShell older than 3. I need to run two processes: wuapp.exe and desk.cpl with …

powershell start-process
Remotely zipping files with PowerShell start-process and invoke-command

I want to be able to remote into a system and zip or unzip files there and have the process …

powershell invoke-command start-process