用C# 調用PowerShell 3.0

來源:互聯網
上載者:User

       最近,隨著System Center Virtual Machine Management 2012 SP1 的發布,越來越多的人,加入到私人雲端的開發中來,特別是,開發測試雲端,但國內的技術文檔及資料相當匱乏。前幾天,一個外地的同事在問 “怎麼用C# 調用PowerShell並且取得傳回值”的問題。

解決方案如下:

  1. 調用系統的PowerShell,可以用: 
 /// <summary>        /// invoke system powershell        /// </summary>        /// <param name="cmd"></param>        public static void InvokeSystemPS(string cmd)        {            List<string> ps = new List<string>();            ps.Add("Set-ExecutionPolicy RemoteSigned");            ps.Add("Set-ExecutionPolicy -ExecutionPolicy Unrestricted");            ps.Add("& " + cmd);            Runspace runspace = RunspaceFactory.CreateRunspace();            runspace.Open();            Pipeline pipeline = runspace.CreatePipeline();            foreach (var scr in ps)            {                pipeline.Commands.AddScript(scr);            }            pipeline.Invoke();//Execute the ps script            runspace.Close();        }

  2.調用VMM產品,這裡以“Get-VM -Name vm001” 為例:

 /// <summary>        /// Invoke VMM Poershell        /// </summary>        public static void InvokeVMMPS()        {            RunspaceConfiguration rconfig = RunspaceConfiguration.Create();            PSSnapInException Pwarn = new PSSnapInException();                       Runspace runspace = RunspaceFactory.CreateRunspace();             string test = "Import-Module VirtualMachineManager\r\n";            runspace = RunspaceFactory.CreateRunspace(rconfig); runspace.Open();            Pipeline pipeline = runspace.CreatePipeline();             pipeline.Commands.AddScript(test);             try {                 var results = pipeline.Invoke();                using (Pipeline pipe = runspace.CreatePipeline())                {                    //Get-VM -Name vm001                    Command cmd = new Command("Get-VM");                    cmd.Parameters.Add("Name", "vm001");                    pipe.Commands.Add(cmd);                    var result = pipe.Invoke();                }            }            catch (Exception ex)             {                throw ex;            }        }

Firstly,  you need to add reference "System.Management.Automation".  Then, add two name space:

using System.Management.Automation.Runspaces;

using System.Management.Automation;

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.