| |
| |
|
|
| using System; |
| using System.Collections; |
| using System.Collections.Generic; |
| using System.ComponentModel; |
| using System.Diagnostics.CodeAnalysis; |
| using System.IO; |
| using System.Management.Automation; |
| using System.Management.Automation.Provider; |
| using System.Reflection; |
| using System.Runtime.CompilerServices; |
| using System.Runtime.InteropServices; |
| using System.Xml; |
|
|
| namespace Microsoft.WSMan.Management |
| { |
| #region Set-WsManQuickConfig |
|
|
| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| [Cmdlet(VerbsCommon.Set, "WSManQuickConfig", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097112")] |
| [OutputType(typeof(string))] |
| public class SetWSManQuickConfigCommand : PSCmdlet, IDisposable |
| { |
| |
| |
| |
| |
| |
| [Parameter] |
| [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "SSL")] |
| public SwitchParameter UseSSL |
| { |
| get { return usessl; } |
|
|
| set { usessl = value; } |
| } |
|
|
| private SwitchParameter usessl; |
|
|
| |
| private WSManHelper helper; |
|
|
| |
| |
| |
| |
| [Parameter] |
| public SwitchParameter Force |
| { |
| get { return force; } |
|
|
| set { force = value; } |
| } |
|
|
| private bool force = false; |
|
|
| |
| |
| |
| [Parameter] |
| public SwitchParameter SkipNetworkProfileCheck |
| { |
| get { return skipNetworkProfileCheck; } |
|
|
| set { skipNetworkProfileCheck = value; } |
| } |
|
|
| private bool skipNetworkProfileCheck = false; |
|
|
| |
| |
| |
| protected override void BeginProcessing() |
| { |
| |
| WSManHelper.ThrowIfNotAdministrator(); |
| helper = new WSManHelper(this); |
| string query = helper.GetResourceMsgFromResourcetext("QuickConfigContinueQuery"); |
| string caption = helper.GetResourceMsgFromResourcetext("QuickConfigContinueCaption"); |
| if (!force && !ShouldContinue(query, caption)) |
| { |
| return; |
| } |
|
|
| QuickConfigRemoting(true); |
| QuickConfigRemoting(false); |
| } |
|
|
| #region private |
|
|
| private void QuickConfigRemoting(bool serviceonly) |
| { |
| IWSManSession m_SessionObj = null; |
| try |
| { |
| string transport; |
| IWSManEx wsmanObject = (IWSManEx)new WSManClass(); |
| m_SessionObj = (IWSManSession)wsmanObject.CreateSession(null, 0, null); |
| string xpathEnabled = string.Empty; |
| string xpathText = string.Empty; |
| string xpathUpdate = string.Empty; |
| string analysisInputXml = string.Empty; |
| string action = string.Empty; |
| string xpathStatus = string.Empty; |
| string xpathResult = string.Empty; |
|
|
| if (!usessl) |
| { |
| transport = "http"; |
| } |
| else |
| { |
| transport = "https"; |
| } |
|
|
| if (serviceonly) |
| { |
| analysisInputXml = @"<AnalyzeService_INPUT xmlns=""http://schemas.microsoft.com/wbem/wsman/1/config/service""></AnalyzeService_INPUT>"; |
| action = "AnalyzeService"; |
| } |
| else |
| { |
| string openAllProfiles = skipNetworkProfileCheck ? "<Force/>" : string.Empty; |
| analysisInputXml = @"<Analyze_INPUT xmlns=""http://schemas.microsoft.com/wbem/wsman/1/config/service""><Transport>" + transport + "</Transport>" + openAllProfiles + "</Analyze_INPUT>"; |
| action = "Analyze"; |
| } |
|
|
| string analysisOutputXml = m_SessionObj.Invoke(action, "winrm/config/service", analysisInputXml, 0); |
| XmlDocument resultopxml = new XmlDocument(); |
| resultopxml.LoadXml(analysisOutputXml); |
|
|
| if (serviceonly) |
| { |
| xpathEnabled = "/cfg:AnalyzeService_OUTPUT/cfg:RemotingEnabled"; |
| xpathText = "/cfg:AnalyzeService_OUTPUT/cfg:Results"; |
| xpathUpdate = "/cfg:AnalyzeService_OUTPUT/cfg:EnableService_INPUT"; |
| } |
| else |
| { |
| xpathEnabled = "/cfg:Analyze_OUTPUT/cfg:RemotingEnabled"; |
| xpathText = "/cfg:Analyze_OUTPUT/cfg:Results"; |
| xpathUpdate = "/cfg:Analyze_OUTPUT/cfg:EnableRemoting_INPUT"; |
| } |
|
|
| XmlNamespaceManager nsmgr = new XmlNamespaceManager(resultopxml.NameTable); |
| nsmgr.AddNamespace("cfg", "http://schemas.microsoft.com/wbem/wsman/1/config/service"); |
| string enabled = resultopxml.SelectSingleNode(xpathEnabled, nsmgr).InnerText; |
| XmlNode sourceAttribute = resultopxml.SelectSingleNode(xpathEnabled, nsmgr).Attributes.GetNamedItem("Source"); |
| string source = null; |
| if (sourceAttribute != null) |
| { |
| source = sourceAttribute.Value; |
| } |
|
|
| string rxml = string.Empty; |
| if (enabled.Equals("true")) |
| { |
| string Err_Msg = string.Empty; |
| if (serviceonly) |
| { |
| Err_Msg = WSManResourceLoader.GetResourceString("L_QuickConfigNoServiceChangesNeeded_Message"); |
| } |
| else |
| { |
| Err_Msg = WSManResourceLoader.GetResourceString("L_QuickConfigNoChangesNeeded_Message"); |
| } |
| |
| |
| |
| WriteObject(Err_Msg); |
| return; |
| } |
|
|
| if (!enabled.Equals("false")) |
| { |
| ArgumentException e = new ArgumentException(WSManResourceLoader.GetResourceString("L_QuickConfig_InvalidBool_0_ErrorMessage")); |
| ErrorRecord er = new ErrorRecord(e, "InvalidOperation", ErrorCategory.InvalidOperation, null); |
| WriteError(er); |
| return; |
| } |
|
|
| string resultAction = resultopxml.SelectSingleNode(xpathText, nsmgr).InnerText; |
| if (source != null && source.Equals("GPO")) |
| { |
| string Info_Msg = WSManResourceLoader.GetResourceString("L_QuickConfig_RemotingDisabledbyGP_00_ErrorMessage"); |
| Info_Msg += " " + resultAction; |
| ArgumentException e = new ArgumentException(Info_Msg); |
| WriteError(new ErrorRecord(e, "NotSpecified", ErrorCategory.NotSpecified, null)); |
| return; |
| } |
|
|
| string inputXml = resultopxml.SelectSingleNode(xpathUpdate, nsmgr).OuterXml; |
| if (resultAction.Equals(string.Empty) || inputXml.Equals(string.Empty)) |
| { |
| ArgumentException e = new ArgumentException(WSManResourceLoader.GetResourceString("L_ERR_Message") + WSManResourceLoader.GetResourceString("L_QuickConfig_MissingUpdateXml_0_ErrorMessage")); |
| ErrorRecord er = new ErrorRecord(e, "InvalidOperation", ErrorCategory.InvalidOperation, null); |
| WriteError(er); |
| return; |
| } |
|
|
| if (serviceonly) |
| { |
| action = "EnableService"; |
| } |
| else |
| { |
| action = "EnableRemoting"; |
| } |
|
|
| rxml = m_SessionObj.Invoke(action, "winrm/config/service", inputXml, 0); |
| XmlDocument finalxml = new XmlDocument(); |
| finalxml.LoadXml(rxml); |
|
|
| if (serviceonly) |
| { |
| xpathStatus = "/cfg:EnableService_OUTPUT/cfg:Status"; |
| xpathResult = "/cfg:EnableService_OUTPUT/cfg:Results"; |
| } |
| else |
| { |
| xpathStatus = "/cfg:EnableRemoting_OUTPUT/cfg:Status"; |
| xpathResult = "/cfg:EnableRemoting_OUTPUT/cfg:Results"; |
| } |
|
|
| if (finalxml.SelectSingleNode(xpathStatus, nsmgr).InnerText.Equals("succeeded")) |
| { |
| if (serviceonly) |
| { |
| WriteObject(WSManResourceLoader.GetResourceString("L_QuickConfigUpdatedService_Message")); |
| } |
| else |
| { |
| WriteObject(WSManResourceLoader.GetResourceString("L_QuickConfigUpdated_Message")); |
| } |
|
|
| WriteObject(finalxml.SelectSingleNode(xpathResult, nsmgr).InnerText); |
| } |
| else |
| { |
| helper.AssertError(WSManResourceLoader.GetResourceString("L_ERR_Message") + WSManResourceLoader.GetResourceString("L_QuickConfigUpdateFailed_ErrorMessage"), false, null); |
| } |
| } |
| finally |
| { |
| if (!string.IsNullOrEmpty(m_SessionObj.Error)) |
| { |
| helper.AssertError(m_SessionObj.Error, true, null); |
| } |
|
|
| if (m_SessionObj != null) |
| Dispose(m_SessionObj); |
| } |
| } |
| #endregion private |
|
|
| #region IDisposable Members |
|
|
| |
| |
| |
| public |
| void |
| Dispose() |
| { |
| |
| GC.SuppressFinalize(this); |
| } |
| |
| |
| |
| public |
| void |
| Dispose(IWSManSession sessionObject) |
| { |
| sessionObject = null; |
| this.Dispose(); |
| } |
|
|
| #endregion IDisposable Members |
| } |
| #endregion Set-WsManQuickConfig |
| } |
|
|