The start-process tag has no wiki summary.
5
votes
4answers
11k views
PowerShell - Start-Process and Cmdline Switches
I can run this fine:
$msbuild = "C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe"
start-process $msbuild -wait
But when I run this code (below) I get an error:
$msbuild = ...
3
votes
1answer
501 views
Start non-elevated process from elevated process
My program running as an elevated process, and starting new processes with Process.Start().
For security reasons, I would like to run those new processes as non-elevated.
How to do that?
2
votes
1answer
141 views
Powershell: Capturing standard out and error with Start-Process
Is there a bug in Powershell's Start-Process command when accessing the StandardError and StandardOutput properties?
If I run the following I get no output
$process = Start-Process -FilePath ping ...
2
votes
2answers
200 views
How to hide the CMD console from this code?
How to hide the console from within this code? Currently the cmd console is shown everytime I run this code.
protected override void OnStart(string[] args)
{
String applicationName = ...
2
votes
3answers
221 views
How to start a console-based process and apply a custom title using Powershell
I am converting an old cmd command to Powershell, and currently use:
START "My Title" Path/To/ConsoleApp.exe
This works as expected to launch ConsoleApp with My Title as it's window title. This has ...
1
vote
1answer
317 views
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 signal when it is complete. Start-process works with the -wait parameter to run 7z.exe synchronously from ...
1
vote
2answers
232 views
Start-process raises an error when providing Credentials - possible bug
Would you possibly know why this error is being raised in response to the code below. User-name and password have been verified as correct.
$secPassword = ConvertTo-SecureString "Password" ...
1
vote
1answer
365 views
Executing a scriptblock via startprocess
Would any of you possibly know why this is not working?
Start-Process $PSHOME\powershell.exe -ArgumentList "-NoExit -Command & `"{$outvar1 = 4+4; `"out: $outvar1`"}`"" -Wait
The ultimate ...
1
vote
1answer
364 views
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 PsExec from command line, it runs and completes fine.
When running it from a ...
1
vote
1answer
920 views
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.
When I run the program with UseShellExecute = false, the program exits with exit code:
...
0
votes
2answers
81 views
Powershell Remote Invoke-Command Start-Process App Immediately Closes After Launch
I am working on a script to remotely kill two processes, delete some folders, and launch a service as an application. Eventually this will be deployed to run against multiple servers, but I'm ...
0
votes
3answers
59 views
How to call C .exe file from C#?
I have an .exe file which was written in C. It is a command line application. I want give command line and also get correspond output in this application through a C# application.
How do I invoke the ...
0
votes
3answers
2k views
“The directory name is invalid” error on Process.Start?
I am writing a launcher program, and when I go to start the process I get the "The directory name is invalid" error. Here is the code that is launching the process:
Const DEBUG_ROOT = _
...