Answers for "How do I run a PowerShell command in C#?"

PHP
2

cmd run powershell command

powershell -ExecutionPolicy Bypass -Command "your script here"
Posted by: Guest on November-12-2020
0

c# powershell commandlet

using System.Management.Automation;  // Windows PowerShell assembly.

namespace SendGreeting
{
  // Declare the class as a cmdlet and specify the
  // appropriate verb and noun for the cmdlet name.
  [Cmdlet(VerbsCommunications.Send, "Greeting")]
  public class SendGreetingCommand : Cmdlet
  {
    // Declare the parameters for the cmdlet.
    [Parameter(Mandatory=true)]
    public string Name
    {
      get { return name; }
      set { name = value; }
    }
    private string name;

    // Override the ProcessRecord method to process
    // the supplied user name and write out a
    // greeting to the user by calling the WriteObject
    // method.
    protected override void ProcessRecord()
    {
      WriteObject("Hello " + name + "!");
    }
  }
}
Posted by: Guest on September-07-2020

Code answers related to "How do I run a PowerShell command in C#?"

Browse Popular Code Answers by Language