要在C#中編寫PowerShell腳本,可以使用System.Management.Automation命名空間中的類和方法。以下是一個簡單的示例代碼,演示如何在C#中編寫一個PowerShell腳本:
using System;
using System.Management.Automation;
class Program
{
static void Main(string[] args)
{
// 創建PowerShell對象
using (PowerShell ps = PowerShell.Create())
{
// 添加腳本命令
ps.AddScript("Get-Process");
// 執行腳本
var results = ps.Invoke();
// 處理腳本執行結果
foreach (var result in results)
{
Console.WriteLine(result.ToString());
}
}
}
}
在上面的示例中,我們首先創建一個PowerShell對象,然后添加要執行的腳本命令(這里是"Get-Process",用于獲取當前正在運行的進程)。然后調用Invoke方法執行腳本,并處理腳本執行結果。
需要注意的是,編寫PowerShell腳本時需要引用System.Management.Automation程序集,可以在項目中添加引用。另外,需要在程序中使用using指令引入System.Management.Automation命名空間。