You can call PowerShell cmdlets directly from your C# code. First, add a reference to System.Management.Automation to your project. Unfortunately, you need to do this by editing the .vcproj file manually with NotePad or another text editor. Add the following line to the References section:
<Reference Include="System.Management.Automation" />
Next, add these using statements to your .cs file:
using System.Management.Automation;
using System.Management.Automation.Runspaces;
Create a runspace to host the PowerScript environment:
Runspace runSpace = RunspaceFactory.CreateRunspace();
runSpace.Open();
Using the runspace, create a new pipeline for your cmdlets:
Pipeline pipeline = runSpace.CreatePipeline();
Create Command objects to represent the cmdlet(s) you want to execute and add them to the pipeline. This example retrieves all the processes and then sorts them by their memory usage.
Command getProcess = new Command("Get-Process");
Command sort = new Command("Sort-Object");
sort.Parameters.Add("Property", "VM");
pipeline.Commands.Add(getProcess);
pipeline.Commands.Add(sort);
The preceding code functions identically to the following PowerShell command line:
PS > Get-Process | Sort-Object -Property VM
Finally, execute the commands in the pipeline and do something with the output:
Collection output = pipeline.Invoke();
foreach (PSObject psObject in output)
{
Process process = (Process)psObject.BaseObject;
Console.WriteLine("Process name: " + process.ProcessName);
}
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible.
Submit your tip here.