3

几天来,我一直在尝试将我的自定义 cmdlet 添加到 C# 中远程 powershell 的运行空间中

string shellUri = "http://schemas.microsoft.com/powershell/Microsoft.PowerShell";
        System.Security.SecureString sString = new System.Security.SecureString();
        foreach(char passwordChar in password.ToCharArray())
        {
            sString.AppendChar(passwordChar);
        }
        PSCredential credential = new PSCredential(username, sString);
        WSManConnectionInfo connectionInfo = new WSManConnectionInfo(false, computerName, 5985, "/wsman", shellUri, credential);
        try {
            using (Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo))
            {
                runspace.Open();
                pipe = runspace.CreatePipeline();
                pipe.Commands.AddScript(script);
                    Collection<PSObject> result = pipe.Invoke();
                    foreach (PSObject line in result)
                    {
                        scriptOutput.Add(line.ToString());
                    }
                pipe.Dispose();
                runspace.Close();
            }

我有类似的东西可以在远程机器上执行脚本。但我需要添加一个自定义 cmdlet。

我知道使用本地 powershell 您可以像这样使用 InitialSessionState:

InitialSessionState iss = InitialSessionState.CreateDefault();
        SessionStateCmdletEntry gfv = new SessionStateCmdletEntry("Get-Custom", typeof(GetCustomCommand), null);
        iss.Commands.Add(gfv);
        using (Runspace runspace = RunspaceFactory.CreateRunspace(iss))

GetCustomCommand 扩展 PSCmdlet 的地方。

但是使用远程 powershell,您无法使用 InitialSessionState 初始化运行空间。如何将 SessionStateCmdLetEntry 添加到我的远程运行空间?

有人可以帮助我吗?谢谢

4

0 回答 0