Shahar Gvirtz's Weblog

How to run PowerShell script from command-let

Sometimes, we want to run PowerShell script from command-let that derives from PSCmdlet (If you derived from Cmdlet, you can't use this way).
To do so, we just have to use this code:

   1:  using System.Management.Automation;
   2:  using System.Collections.ObjectModel;
   3:   
   4:  ......
   5:   
   6:  Collection<PSObject> results = InvokeCommand.InvokeScript("dir" /*replace it with your script */);
   7:  foreach (PSObject var in results)
   8:  {
   9:         WriteObject(var.ToString(),false);
  10:  }

I included in this code the important using statements, and the code itself. Few things about this code:

  1. I use PSObject as the type for the collection, which means that I can access any property and method of the returning object, include Extended methods (ETS).
  2. Always use WriteObject method in Command-lets NEVER use System.Console.
    That's because WriteObject write stream of object, not text, which is one of the biggest advantages in PowerShell - we can work with object instead text.
    When you use WriteObject you can be sure that any PowerShell host will be able to use the command-let and the output easily.

Shahar.

Comments

Suenthen said:

yeah. luv this thread

# December 12, 2009 2:59 PM

Henrietta said:

Hello. Laughing is the sensation of feeling good all over and showing it principally in one spot. Help me! Please help find sites for: Mephisto clearance. I found only this - <a href="advancedmaritimetechnology.aticorp.org/.../Mephisto">mephisto trampolin boots</a>. Mephisto, dritten reich nicht gerecht concentration. Mephisto, often a room of monitor and hatte, elena encountered her case on that rubber when, known and manipulated by those closest to her, she sold the boss of an actual satan. THX ;-), Henrietta from Botswana.

# March 21, 2010 11:37 PM

otel said:

nicht gerecht concentration. Mephisto, often a room of monitor and hatte, elena encountered her case on that rubber when, known and manipulated by those closest to her, she sold the boss of an actual satan

# February 20, 2011 10:56 PM

Romantic Messages said:

i really like this psot thanks for sharing my comment

# September 6, 2011 1:58 AM

Missing You SMS said:

o i really like this  <a href="messages.websmsmessages.com/.../Get-Well-Soon-SMS.php">Get Well Soon SMS</a>

# September 6, 2011 2:02 AM
Leave a Comment

(required) 

(required) 

(optional)

(required)