简体   繁体   English

使用WinRM和C#卸载产品

[英]Uninstalling product with WinRM and C#

I'm using WSManAutomation to remotely manage servers. 我正在使用WSManAutomation远程管理服务器。 I need to install and uninstall applications on remote servers that have WinRM over HTTPS enabled. 我需要在启用WinHTTP over HTTPS的远程服务器上安装和卸载应用程序。 The connection is not a problem 连接不是问题

So far the code below executes msiexec.exe in the remote host as I can see it in the list of processes but it does not execute the uninstall command. 到目前为止,下面的代码在远程主机中执行msiexec.exe,因为我在进程列表中可以看到它,但是它不执行卸载命令。

 public void UninstallProduct(string path, string target, string username = null, string password = null)
    {
        IWSMan wsman = new WSManClass();
        IWSManConnectionOptions options = (IWSManConnectionOptions)wsman.CreateConnectionOptions();
        if (options != null)
        {
            try
            {
                options.UserName = username;
                options.Password = password;

                int iFlags = (int)_WSManSessionFlags.WSManFlagCredUsernamePassword;
                IWSManSession session = (IWSManSession)wsman.CreateSession(string.Format("https://{0}:5986/wsman", target), iFlags, options);
                // IWSManSession session = (IWSManSession)wsman.CreateSession(string.Format("http://{0}/wsman", target), 0, options);
                if (session != null)
                {
                    try
                    {

                        string strResource = "http://schemas.microsoft.com/wbem/wsman/1/wmi/root/cimv2/Win32_Process";
                        string strInputParameters =string.Format("<p:Create_INPUT xmlns:p=\"{0}\"><p:CommandLine>\"{1}\"</p:CommandLine></p:Create_INPUT>", "http://schemas.microsoft.com/wbem/wsman/1/wmi/root/cimv2/Win32_Process",path);

                        var reply = session.Invoke("Create", strResource, strInputParameters);


                        Console.WriteLine(reply);
                        Console.WriteLine();

                    }
                    finally
                    {
                        Marshal.ReleaseComObject(session);
                    }
                }
            }
            finally 
            {
                Marshal.ReleaseComObject(options);
            }
        }

    }

The call to the method above would be: 上面方法的调用为:

obj.UninstallProduct(@"C:\Windows\System32\msiexec.exe /x {E499AB77-9B27-416CB9B6F-4A171D02BB31} /passive", "hostname", @"hostname\Administrator", "password");

Do you know why the command does not get executed? 您知道为什么命令没有执行吗? Should I use another way to uninstall a product? 我应该使用另一种方式来卸载产品吗?

Thanks in advance. 提前致谢。

Finally I came across a way to do this using remote PowerShell 最后,我遇到了使用远程PowerShell执行此操作的方法

string command = string.Format("(Get-WmiObject -Class Win32_Product  | Where-Object {$_.Name -match {0}}).Uninstall()", productName);

        PSCredential credential = new PSCredential(username, securePassword);
        string shellUri = "http://schemas.microsoft.com/powershell/Microsoft.PowerShell";
        WSManConnectionInfo connectionInfo = new WSManConnectionInfo(true, target, 5986, "/wsman", shellUri, credential);
        using (Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo))
        {

            runspace.Open();

            Pipeline pipeline = runspace.CreatePipeline(command);

            try
            {
                Collection<PSObject> results = pipeline.Invoke("Set-ExecutionPolicy Unrestricted -Scope Process");
            }
            finally
            {
                runspace.Close();
            }





        }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM