Click here to Skip to main content
15,885,365 members
Articles / Programming Languages / C#
Article

How to run PowerShell scripts from C#

Rate me:
Please Sign up or sign in to vote.
4.82/5 (59 votes)
29 Aug 2008CPOL3 min read 1M   24.4K   162   58
An article on embedding and/or launching PowerShell scripts from a C# program.

Screenshot - HowToRunPowerShell_Screen.png

Introduction

This article contains a bare-bones sample on how to add PowerShell scripting to your C# programs. To paraphrase that movie: "the Power of Shell compels you!"

Background

With the release of Windows PowerShell 1.0 in November 2006, we finally have a powerful command line shell for Windows, one that rivals or even exceeds the capabilities of the common Unix/Linux shells such as csh and bash. The reason for this is that PowerShell commands can read and write objects, as opposed to conventional shells that can only process strings of text. Because PowerShell runs on the .NET platform, the objects that are used are .NET objects, which makes it an ideal scripting language for .NET programs.

Prerequisites

Before you can compile the sample code, you'll need a couple of things. First of all, you have to install PowerShell itself, of course, which you can find at the following location: PowerShell homepage. The sample program also references some assemblies that aren't included with the standard PowerShell installation, so you'll have to get those by installing the Windows SDK for Windows Server 2008 and .NET Framework 3.5. Don't worry: even though the latter has 'Server 2008' in its name, it will also install on Vista and XP.

Using the Code

To add PowerShell scripting to your program, you first have to add a reference to the System.Management.Automation assembly. The SDK installs this assembly in the C:\Program Files\Reference Assemblies\Microsoft\WindowsPowerShell\v1.0 directory.

Then, you have to add the following 'using' statements to import the required types:

C#
using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces;

The following code block shows the RunScript method that does all the hard work. It takes the script text, executes it, and returns the result as a string.

C#
private string RunScript(string scriptText)
{
    // create Powershell runspace

    Runspace runspace = RunspaceFactory.CreateRunspace();

    // open it

    runspace.Open();

    // create a pipeline and feed it the script text

    Pipeline pipeline = runspace.CreatePipeline();
    pipeline.Commands.AddScript(scriptText);

    // add an extra command to transform the script
    // output objects into nicely formatted strings

    // remove this line to get the actual objects
    // that the script returns. For example, the script

    // "Get-Process" returns a collection
    // of System.Diagnostics.Process instances.

    pipeline.Commands.Add("Out-String");

    // execute the script

    Collection<psobject /> results = pipeline.Invoke();

    // close the runspace

    runspace.Close();

    // convert the script result into a single string

    StringBuilder stringBuilder = new StringBuilder();
    foreach (PSObject obj in results)
    {
        stringBuilder.AppendLine(obj.ToString());
    }

    return stringBuilder.ToString();
}

How to Let the Script Interact with your Program

Before executing the script using the pipeline.Invoke() call, it's possible to expose the objects of your program to the script by using the method runspace.SessionStateProxy.SetVariable("someName", someObject). This will create a named variable that the script can access (getting/setting properties, and even calling methods). As an example, suppose we would expose the main form of the sample to the script by adding the SetVariable() call like this:

C#
...
// open it

runspace.Open();
runspace.SessionStateProxy.SetVariable("DemoForm", this);
....

Then, the following script would print the caption of the window:

$DemoForm.Text

The following script would show all the properties and methods of the window:

$DemoForm | Get-Member

Please note, however, that any calls a script makes to your objects will be from another thread context, as pipeline.Invoke() seems to start its own worker thread. This means that your exposed objects will have to be thread-safe.

Points of Interest

As an extra feature, I added the ability to drag-n-drop a script on the form, so you don't have to copy-paste PowerShell scripts into the textbox all the time.

More Information on PowerShell

History

  • Apr 01, 2007: First release
  • Apr 04, 2007: Minor update
  • Aug 28, 2008: Fixed the broken link to the SDK, and the broken link to my second powershell article

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Can not run backup script Pin
augustwind21-Apr-12 12:44
augustwind21-Apr-12 12:44 
AnswerRe: Can not run backup script Pin
Bh@nu4-Jul-12 20:52
Bh@nu4-Jul-12 20:52 
GeneralMy vote of 5 Pin
Rayler21-Mar-12 0:51
Rayler21-Mar-12 0:51 
QuestionCannot process command because of one or more missing mandatory parameters: ComputerName. Pin
JeremyProg122-Nov-11 10:22
JeremyProg122-Nov-11 10:22 
Questionremotely access the server Pin
Absials16-Nov-11 19:59
Absials16-Nov-11 19:59 
QuestionStart Service as an Administrator Pin
Gustavo Eduardo Mendoza Ramirez1-Sep-11 9:38
Gustavo Eduardo Mendoza Ramirez1-Sep-11 9:38 
GeneralHere's posting that extends this example a bit... Pin
rlrcstr23-Aug-10 3:32
rlrcstr23-Aug-10 3:32 
GeneralMy vote of 5 Pin
Scott Munro12-Aug-10 21:30
Scott Munro12-Aug-10 21:30 
GeneralThe article is great, but I need some help [modified] Pin
Kevin Stock (Atempo)5-Mar-10 3:31
Kevin Stock (Atempo)5-Mar-10 3:31 
GeneralRe: The article is great, but I need some help Pin
jpmik5-Mar-10 5:21
jpmik5-Mar-10 5:21 
GeneralRe: The article is great, but I need some help Pin
Kevin Stock (Atempo)7-Mar-10 20:38
Kevin Stock (Atempo)7-Mar-10 20:38 
GeneralCool Pin
chunhatbuon198422-Dec-09 7:25
chunhatbuon198422-Dec-09 7:25 
GeneralNot working Pin
OlegGelezcov6-Sep-09 0:13
OlegGelezcov6-Sep-09 0:13 
GeneralRe: Not working Pin
jpmik18-Nov-09 8:54
jpmik18-Nov-09 8:54 
GeneralRe: Not working Pin
Member 769978628-Feb-11 8:56
Member 769978628-Feb-11 8:56 
GeneralRe: Not working Pin
shaanr18-Jul-12 3:51
shaanr18-Jul-12 3:51 
GeneralCode not working Pin
deepak__sharma26-Mar-09 18:25
deepak__sharma26-Mar-09 18:25 
GeneralRe: Code not working Pin
deepak__sharma31-Mar-09 20:03
deepak__sharma31-Mar-09 20:03 
QuestionHow to run more complex scripts Pin
Kressilac30-Jan-09 9:46
Kressilac30-Jan-09 9:46 
QuestionRe: How to run more complex scripts Pin
Member 83770974-Nov-11 18:20
Member 83770974-Nov-11 18:20 
AnswerRe: How to run more complex scripts Pin
jpmik5-Nov-11 23:28
jpmik5-Nov-11 23:28 
GeneralRemote execute poweshell script Pin
Sam_S25-Mar-08 2:54
Sam_S25-Mar-08 2:54 
GeneralRe: Remote execute poweshell script Pin
Julia10055-Dec-08 5:21
Julia10055-Dec-08 5:21 
GeneralRe: Remote execute poweshell script Pin
Barron Gillon5-Jan-09 9:26
Barron Gillon5-Jan-09 9:26 
GeneralRe: Remote execute poweshell script Pin
Arrow0fDarkness24-Dec-09 17:20
Arrow0fDarkness24-Dec-09 17:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.