从C#在PowerShell中运行AD命令行开关时出错

时间:2013-11-23 05:59:16

标签: c# powershell active-directory powershell-remoting

我尝试在同一台机器上使用C#在powershell中执行AD命令行开关。这很好用。

static void Main(string[] args)
        {
            InitialSessionState iss = InitialSessionState.CreateDefault();
            iss.ImportPSModule(new string[] { "activedirectory" });
            Runspace myRunSpace = RunspaceFactory.CreateRunspace(iss);
            myRunSpace.Open();

            Pipeline pipeLine = myRunSpace.CreatePipeline();
            Command myCommand = new Command("Get-ADUser");
            myCommand.Parameters.Add("Filter", "sAMAccountName -eq 'user1'");
            //myCommand.Parameters.Add("IncludeDeletedObjects");

            pipeLine.Commands.Add(myCommand);

            //Command restoreCommand = new Command("Restore-ADObject");
            //pipeLine.Commands.Add(restoreCommand);

            Console.WriteLine("Before Invoke");
            Collection<PSObject> commandResults = pipeLine.Invoke();
            Console.WriteLine("After Invoke");

            foreach (PSObject cmdlet in commandResults)
            {
                //Console.WriteLine("Inside foreach");  
                string cmdletName = cmdlet.BaseObject.ToString();
                System.Diagnostics.Debug.Print(cmdletName);
                Console.WriteLine(cmdletName);
            }

            Console.ReadLine();
        }

但是在尝试使用invoke命令远程运行相同的命令时,它会出现错误The term 'Get-ADUser' is not recognized as the name of a cmdlet, function, script file, or operable program.

以下是我的计划:

static void Main(string[] args)
    {

        string shellUri = "http://schemas.microsoft.com/powershell/Microsoft.PowerShell";
        string userName = "Domain\\Administrator";
        string password = "Password";
        SecureString securePassword = new SecureString();

        foreach (char c in password)
        {
            securePassword.AppendChar(c);
        }
        PSCredential credential = new PSCredential(userName, securePassword);
        WSManConnectionInfo connectionInfo = new WSManConnectionInfo(false, "machinename", 5985, "/wsman", shellUri, credential);
        using (Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo))
        {

            runspace.Open();
            using (PowerShell powershell = PowerShell.Create())
            {
                powershell.Runspace = runspace;
                PSCommand new1 = new PSCommand();
                new1.AddCommand("Get-ADUser");
                new1.AddParameter("identity", "CN=user1,DC=example,DC=com");
                powershell.Commands = new1;
                Collection<PSObject> results = powershell.Invoke();
                foreach (PSObject obj in results)
                {
                 PSMemberInfoCollection<PSPropertyInfo> propInfos = obj.Properties;
                 Console.WriteLine("********************");
                 foreach (PSPropertyInfo propInfo in propInfos)
                 {
                     string propInfoValue = (propInfo.Value == null) ? "" : propInfo.Value.ToString();
                     Console.WriteLine("{0} --> {1}", propInfo.Name, propInfoValue);
                 }


             }

            }
        }
     }
  1. 如何远程调用AD命令行进程?
  2. 有没有办法使用InitialSessionState而不是WSManConnectionInfo远程调用命令。
  3. 如果我使用invoke-command -computername $DC -ScriptBlock {Remove-ADUser -identity "user1"} -credential $cred - 我收到错误The term 'Remove-ADUser' is not recognized as the name of a cmdlet, function, script file, or operable program
  4. 但是可以使用命令Remove-ADUser -identity "user1" -server $DC -credential $cred。如何在C#客户端的powershell中直接执行AD命令?

1 个答案:

答案 0 :(得分:5)

在执行AD命令之前,您需要在远程运行空间中导入ActiveDirectory模块,例如:

powershell.Commands.AddCommand("Import-Module").AddArgument("ActiveDirectory");
powershell.Invoke();
powershell.Commands.Clear();