tools/init.ps1
if (-not ("System.Xml.Linq.XDocument" -as [Type])) { Add-Type -Assembly System.Xml.Linq } if (-not ("System.Web.HttpUtility" -as [Type])) { Add-Type -Assembly System.Web } if (-not ("System.Management.Automation.PSCredential" -as [Type])) { Add-Type -Assembly System.Management.Automation } if (-not ("System.ServiceProcess.ServiceController" -as [Type])) { Add-Type -Assembly System.ServiceProcess } |