<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Jonathan's Virtual Blog : WinRM</title><link>http://blogs.technet.com/jonjor/archive/tags/WinRM/default.aspx</link><description>Tags: WinRM</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>WinRM (Windows Remote Management) Troubleshooting</title><link>http://blogs.technet.com/jonjor/archive/2009/01/09/winrm-windows-remote-management-troubleshooting.aspx</link><pubDate>Sat, 10 Jan 2009 01:44:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3179495</guid><dc:creator>Jonathan</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.technet.com/jonjor/comments/3179495.aspx</comments><wfw:commentRss>http://blogs.technet.com/jonjor/commentrss.aspx?PostID=3179495</wfw:commentRss><description>&lt;P&gt;&lt;B&gt;What is WinRM?&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;New in Windows Vista, Windows Server 2003 R2, Windows Server 2008 (and Server 2008 Core) are WinRM &amp;amp; WinRS. Windows Remote Management (known as WinRM) is a handy new remote management service. &lt;B&gt;WinRM&lt;/B&gt; is the “&lt;B&gt;server&lt;/B&gt;” component of this remote management application and &lt;B&gt;WinRS&lt;/B&gt; (Windows Remote Shell) is the “&lt;B&gt;client&lt;/B&gt;” for WinRM, which runs on the remote computer attempting to remotely manage the WinRM server. However, I should note that BOTH computers must have WinRM installed and enabled on them for WinRS to work and retrieve information from the remote system.&lt;/P&gt;
&lt;P&gt;While WinRM listens on port 80 by default, it doesn't mean traffic is unencrypted. Traffic by default is only accepted by WinRM when it is encrypted using the Negotiate or Kerberos SSP. WinRM uses HTTP (TCP 80) or HTTPS (TCP 443). WinRM also includes helper code that lets the WinRM listener to share port 80 with IIS or any other application that may need to use that port.&lt;/P&gt;
&lt;P&gt;WinRM with SCVMM uses Kerberos for authentication, and does not support fall-back to NTLM. There will be an error instead. If no credentials are specified, then the logged-on credentials are used to authenticate against the remote machine. This allows for a single sign-on experience.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;What is WinRS?&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Remote Shell, (WinRS) is used to execute a program on a remote host. Similar in operation to the former Sysinternals tool PSExec, WinRS leverages Windows Remote Management to let you launch processes on remote machines. For example, if you want to perform a directory listing on the system drive on a remote machine, you can remotely launch ‘dir’ using this syntax: &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrs -r:machinename dir&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Another handy use of WinRS can be when installing software on remote systems. If you want to quietly install an application using an MSI file onto a remote machine, use the following syntax. This syntax assumes the MSI file has already been deposited into the C:\ folder. &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrs -r:machinename msiexec.exe /i c:\install.msi /quiet&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;When specifying the remote machine, the following are valid:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· Localhost&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· NetBIOS name&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· Fully Qualified Domain Name (FQDN)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· IP address&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;How to install WinRM&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;The WinRM is not dependent on any other service except WinHttp. If the IIS Admin Service is installed on the same computer, you may see messages that indicate WinRM cannot be loaded before Interent Information Services (IIS). However, WinRM does not actually depend on IIS: these messages occur because the load order ensures that the IIS service starts before the HTTP service. WinRM does require that WinHTTP.dll be registered.&lt;/P&gt;
&lt;P&gt;(Stated simply: WinRM service should be set to Automatic (Delayed Start) on Windows Vista and Server 2008)&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· The WinRM service starts automatically on Windows Server 2008.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· On Windows Vista, the service must be started manually.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· &lt;B&gt;&lt;I&gt;UPDATE!&lt;/I&gt;&lt;/B&gt; Windows 2003 requires an update for WinRM&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;936059 An update is available for the Windows Remote Management feature in Windows Server 2003 and in Windows XP&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;936059" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;936059"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;936059&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;How to configure WinRM&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;To set the default configuration type:&lt;/I&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm quickconfig (or the abbreviated version, winrm qc)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;‘winrm qc’ performs the following operations:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. Starts the WinRM service and sets the service startup type to auto-start. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;2. Configures a listener for the ports that send and receive WS-Management protocol messages using either HTTP or HTTPS on any IP address. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;3. Defines ICF exceptions for the WinRM service and opens the ports for HTTP and HTTPS.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;(Note: Winrm quickconfig also configures Winrs default settings)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If ‘winrm qc’ throws an error:&lt;/P&gt;
&lt;P&gt;If the firewall is disabled the quick config command will fail. The firewall can either be started in Services long enough to run ‘winrm qc’ or the commands below can be run:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;sc config "WinRM" start= auto&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;net start WinRM&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm create winrm/config/listener?Address=*+Transport=HTTP&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;netsh firewall add portopening TCP 80 "Windows Remote Management"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Group Policy configuration:&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;WinRM can be configured by group policies.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. Type gpedit at a command prompt. The Group Policy Object Editor window opens. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;2. Look for the Windows Remote Management and Windows Remote Shell Group Policy Objects (GPO) under Administrative Templates and Windows Components.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;Troubleshoot WinRM&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Common Issues:&lt;/I&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. If the ISA2004 firewall client is installed on the computer, it can cause a Web Services for Management (WS-Management) client to stop responding. To avoid this issue, install ISA2004 Firewall SP1.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;2. Antivirus software can prevent proper WinRM communication. Disable antivirus software and reboot the machine if the Antivirus software is known to scan processes and protocols, or if there is any doubt about the software.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;Test WinRM communication on the local and remote machines&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;This section addresses how to test whether WinRM is working on the local system, and whether it can communicate with the remote system. Test remote communication in both directions between machines.&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Local communication:&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Locate listeners and addresses: (No output means WinRM is not installed)&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm e winrm/config/listener&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Localhost Ping: &lt;/P&gt;
&lt;P&gt;(Successfully completing this step pretty much insure complete access to WSMan on the local system)&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Winrm id&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;I&gt;Further:&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Check state of configuration settings:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm get winrm/config&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Check the state of WinRM service:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm get wmicimv2/Win32_Service?Name=WinRM&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Remote communication:&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Locate listeners and addresses:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm e winrm/config/listener&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Remote Ping: &lt;/P&gt;
&lt;P&gt;(Successfully completing this step pretty much insure complete access to WSMan on the remote system)&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Winrm id –r:machinename&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;I&gt;Further:&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Check state of configuration settings:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm get winrm/config -r:machinename&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Check the state of WinRM service:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm get wmicimv2/Win32_Service?Name=WinRM -r:machinename&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;Sample Commands&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Here are some sample commands to play with. If you cannot get the ‘Test WS-Man...' step to work, none of the steps following will work either (you're probably not using the right credentials to access the remote machine). One more caveat, the remote commands work best on domain joined machines. For workgroup machines, the WinRM service needs additional configuration. 
&lt;TABLE class="" cellSpacing=0 cellPadding=0 border=1&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;&lt;B&gt;Description&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;&lt;B&gt;Command&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=685&gt;
&lt;P&gt;&lt;I&gt;Run from an &lt;B&gt;Elevated&lt;/B&gt; Command prompt&lt;/I&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Quickly configure the WS-Man &lt;B&gt;service&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm QuickConfig&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Quickly delete the WS-Man &lt;B&gt;listener&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm invoke Restore winrm/Config @{}&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=685&gt;
&lt;P&gt;&lt;I&gt;Run from an &lt;B&gt;standard&lt;/B&gt; Command prompt&lt;/I&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Display your machine's basic hardware info&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm enumerate wmicimv2/Win32_ComputerSystem&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Display your operating system properties&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm get wmicimv2/Win32_OperatingSystem&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Output your OS info in XML&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm get wmicimv2/Win32_OperatingSystem -format:pretty&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Test WS-Man access to a remote machine**&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm id -remote:&amp;lt;some machine&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Grab a remote machine's WS-Man config&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm get winrm/Config -r:&amp;lt;some machine&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Grab a remote machine's CPU load&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm g wmicimv2/Win32_Processor?DeviceID=CPU0 -fragment:LoadPercentage -r:&amp;lt;some computer&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Grab a remote machine's free memory&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm g wmicimv2/Win32_OperatingSystem -fragment:FreePhysicalMemory -r:&amp;lt;some computer&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Stop a service on a remote machine&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm invoke stopservice wmicimv2/Win32_Service?name=w32time -r:&amp;lt;some computer&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Start a service on a remote machine&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm invoke startservice wmicimv2/Win32_Service?name=w32time -r:&amp;lt;some computer&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Reboot a remote machine&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrm invoke reboot wmicimv2/Win32_OperatingSystem -r:&amp;lt;some computer&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Run a command on a remote machine (this uses winr&lt;B&gt;S&lt;/B&gt;, not winr&lt;B&gt;M&lt;/B&gt;)&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;winrs -r:&amp;lt;some computer&amp;gt; ipconfig /all&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=685&gt;
&lt;P&gt;&lt;I&gt;Run from &lt;B&gt;PowerShell&lt;/B&gt;&lt;/I&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Use PowerShell to grab the WS-Man Win32_OperatingSystem XML output&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;[xml]$osInfo = winrm get wmicimv2/Win32_OperatingSystem /format:pretty&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Display the OS version property&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;$osInfo.Win32_OperatingSystem.Version&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Display the last boot time&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;$osInfo.Win32_OperatingSystem.LastBootupTime.DateTime&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Put free memory metric into an XML variable&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;[xml]$freemem = cmd /c "winrm get wmicimv2/Win32_OperatingSystem -fragment:FreePhysicalMemory -f:pretty -r:&amp;lt;some computer&amp;gt;"&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=277&gt;
&lt;P&gt;Display the free memory value&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=408&gt;
&lt;P&gt;$freemem.XMLFragment.FreePhysicalMemory&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;**Note: This step verifies that you have good connectivity to the remote machine, WS-Man is running and properly configured on the remote machine, AND you have the correct permissions to fully leverage WS-Man on the remote machine. If this step fails, it's probably a permissions issue.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Advanced Concepts&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;URI Aliases&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;URI aliases can simplify the Winrm command line. The following URI aliases are supported:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;wmi = http://schemas.microsoft.com/wsman/2005/06/wmi&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;wsman = wsman:microsoft.com/wsman/2005/06/&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;cimv2.9 = http://schemas.dmtf.org/wsman/2005/06/cimv2.9&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;cimv2 = &lt;A href="http://schemas.microsoft.com/wsman/2005/06/wmi/root/cimv2" mce_href="http://schemas.microsoft.com/wsman/2005/06/wmi/root/cimv2"&gt;http://schemas.microsoft.com/wsman/2005/06/wmi/root/cimv2&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For example, the following command:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm get &lt;A href="http://schemas.microsoft.com/wsman/2005/06/wmi/root/cimv2/Win32_Service?Name=WSMan" mce_href="http://schemas.microsoft.com/wsman/2005/06/wmi/root/cimv2/Win32_Service?Name=WSMan"&gt;http://schemas.microsoft.com/wsman/2005/06/wmi/root/cimv2/Win32_Service?Name=WSMan&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Gets replaced with:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;winrm get wmi/root/cimv2/Win32_Service?Name=WinRM&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Performing an Invoke Operation&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;‘Invoke’ initiates commands&lt;/P&gt;
&lt;P&gt;winrm invoke StartService wmicimv2/Win32_Service?Name=WinRM -r:machinename @{}&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;This will likely return ‘ReturnValue = 10’ on a remote system where WinRM is running&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;WS-Man (WinRM) Architecture&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;The following diagram shows a high-level overview of the WS-Man (WinRM) architecture. In the diagram the 'Client' is querying the 'Server' for WS-Man information. Note that HTTP.sys and WinHTTP support the HTTP(s) transport for WS-Man, not IIS. In addition, IIS (or another web publishing service) can co-exist with WS-Man and share port 80.&lt;/P&gt;
&lt;P&gt;Remember:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;WinHTTP = Client&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;HTTP.SYS = Server&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image002_2.jpg" mce_href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image002_2.jpg"&gt;&lt;IMG title=clip_image002 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=445 alt=clip_image002 src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image002_thumb.jpg" width=640 border=0 mce_src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The Windows Remote Management architecture consists of components on the client and server computers. The following illustration shows the components on both computers, how the components interact with other components, and the protocol that is used to communicate between the computers.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image003_2.gif" mce_href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image003_2.gif"&gt;&lt;IMG title=clip_image003 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=480 alt=clip_image003 src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image003_thumb.gif" width=490 border=0 mce_src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/WinRMWindowsRemoteManagementTroubleshoot_F954/clip_image003_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;H6&gt;&lt;A class="" title=ClientArchitecture name=ClientArchitecture&gt;&lt;/A&gt;Requesting Client&lt;/H6&gt;
&lt;P&gt;The following WinRM components reside on the computer that is running the script that requests data.&lt;/P&gt;
&lt;P&gt;· WinRM application &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;This is the script or &lt;B&gt;Winrm&lt;/B&gt; command-line tool that uses the WinRM scripting API to make calls to request data or to execute methods. For more information, see the &lt;A href="http://msdn.microsoft.com/en-us/library/aa384469(VS.85,printer).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa384469(VS.85,printer).aspx"&gt;WinRM Scripting API&lt;/A&gt; [ http://msdn.microsoft.com/en-us/library/aa384469(VS.85).aspx ] .&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmAuto.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The OLE automation layer that provides scripting support.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmCL.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;C API layer within the operating system.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· HTTP API &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;WinRM requires support for HTTP and HTTPS transport.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;H6&gt;&lt;A class="" title=ServerArchiotecture name=ServerArchiotecture&gt;&lt;/A&gt;&lt;/H6&gt;
&lt;H6&gt;Responding Server&lt;/H6&gt;
&lt;P&gt;The following WinRM components reside on the responding computer.&lt;/P&gt;
&lt;P&gt;· HTTP API &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;WinRM requires support for HTTP and HTTPS transport.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmAuto.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The OLE automation layer that provides scripting support.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmCL.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;C API layer within the operating system.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmSvc.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;WinRM &lt;A href="http://msdn.microsoft.com/en-us/library/aa384465(VS.85,printer).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa384465(VS.85,printer).aspx"&gt;&lt;I&gt;listener&lt;/I&gt;&lt;/A&gt; [ http://msdn.microsoft.com/en-us/library/aa384465(VS.85).aspx ] service.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmProv.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Provider subsystem.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmRes.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Resource file.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· WsmWmiPl.dll &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/aa384465(VS.85,printer).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa384465(VS.85,printer).aspx"&gt;&lt;I&gt;WMI plug-in&lt;/I&gt;&lt;/A&gt; [ http://msdn.microsoft.com/en-us/library/aa384465(VS.85).aspx ] . This allows you to obtain WMI data through WinRM.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;· Intelligent Platform Management Interface (IPMI) driver and WMI IPMI provider &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;These components supply any hardware data that is requested using the IPMI classes. For more information, see &lt;A href="http://msdn.microsoft.com/en-us/library/aa390891(VS.85,printer).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa390891(VS.85,printer).aspx"&gt;Intelligent Platform Management Interface (IPMI) Classes&lt;/A&gt; [ http://msdn.microsoft.com/en-us/library/aa390891(VS.85).aspx ] . BMC hardware must have been detected by the SMBIOS or the device created manually by loading the driver. For more information, see &lt;A href="http://msdn.microsoft.com/en-us/library/aa384372(VS.85,printer).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa384372(VS.85,printer).aspx"&gt;Installation and Configuration for Windows Remote Management&lt;/A&gt; [ http://msdn.microsoft.com/en-us/library/aa384372(VS.85).aspx ] .&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;References&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Installation and Configuration for Windows Remote Management&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/aa384372(VS.85).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa384372(VS.85).aspx"&gt;http://msdn.microsoft.com/en-us/library/aa384372(VS.85).aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Windows Remote Management Command-Line Tool (Winrm.cmd)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc781778.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc781778.aspx"&gt;http://technet.microsoft.com/en-us/library/cc781778.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;How can Windows Server 2008 WinRM &amp;amp; WinRS help you&lt;/P&gt;
&lt;P&gt;&lt;A href="http://windowsnetworking.com/articles_tutorials/How-Windows-Server-2008-WinRM-WinRS.html" mce_href="http://windowsnetworking.com/articles_tutorials/How-Windows-Server-2008-WinRM-WinRS.html"&gt;http://windowsnetworking.com/articles_tutorials/How-Windows-Server-2008-WinRM-WinRS.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The things that are better left unspoken Remotely managing your Server Core using WinRM and WinRS&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.dirteam.com/blogs/sanderberkouwer/archive/2008/02/23/remotely-managing-your-server-core-using-winrm-and-winrs.aspx" mce_href="http://blogs.dirteam.com/blogs/sanderberkouwer/archive/2008/02/23/remotely-managing-your-server-core-using-winrm-and-winrs.aspx"&gt;http://blogs.dirteam.com/blogs/sanderberkouwer/archive/2008/02/23/remotely-managing-your-server-core-using-winrm-and-winrs.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Redmond Print First Look WinRM &amp;amp; WinRS&lt;/P&gt;
&lt;P&gt;&lt;A href="http://redmondmag.com/columns/article.asp?EditorialsID=2262" mce_href="http://redmondmag.com/columns/article.asp?EditorialsID=2262"&gt;http://redmondmag.com/columns/article.asp?EditorialsID=2262&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Otto Helweg - Management Matters A Few Good Vista WS-Man (WinRM) Commands&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/otto/archive/2007/02/09/sample-vista-ws-man-winrm-commands.aspx" mce_href="http://blogs.technet.com/otto/archive/2007/02/09/sample-vista-ws-man-winrm-commands.aspx"&gt;http://blogs.technet.com/otto/archive/2007/02/09/sample-vista-ws-man-winrm-commands.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Windows Remote Management Architecture&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/aa384464(VS.85).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa384464(VS.85).aspx"&gt;http://msdn.microsoft.com/en-us/library/aa384464(VS.85).aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3179495" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/jonjor/archive/tags/SCVMM/default.aspx">SCVMM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WinRM/default.aspx">WinRM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Network/default.aspx">Network</category></item><item><title>How to Capture a WinRM Trace</title><link>http://blogs.technet.com/jonjor/archive/2009/01/05/how-to-capture-a-winrm-trace.aspx</link><pubDate>Tue, 06 Jan 2009 02:04:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3176763</guid><dc:creator>Jonathan</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.technet.com/jonjor/comments/3176763.aspx</comments><wfw:commentRss>http://blogs.technet.com/jonjor/commentrss.aspx?PostID=3176763</wfw:commentRss><description>&lt;P&gt;When working with Microsoft Support you may be asked to capture traces to assist with issue resolution. Below are two methods for capturing WinRM traces. Following a reboot these will need to be set up again. The GUI setup is simple. The logman method allows a template with pre-populated settings to be imported. Choose the method that suits you.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Method 1 using GUI&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;1. Open Perfmon and navigate to Event Trace Sessions. In your case you will run this from a non-core box and connect to the core box first.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image002_2.jpg" mce_href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image002_2.jpg"&gt;&lt;IMG title=clip_image002 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=260 alt=clip_image002 src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image002_thumb.jpg" width=644 border=0 mce_src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2. Right click Event Trace Sessions and choose New Data Collector Set.&lt;/P&gt;
&lt;P&gt;3. Name it WinRM, select “Create manually” and click Next&lt;/P&gt;
&lt;P&gt;4. Click “Add” when prompted “Which event trace providers would you like to enable?”&lt;/P&gt;
&lt;P&gt;5. Select “Windows Remote Management Trace”.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image004_2.jpg" mce_href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image004_2.jpg"&gt;&lt;IMG title=clip_image004 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=478 alt=clip_image004 src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image004_thumb.jpg" width=644 border=0 mce_src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image004_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;6. Select the Keywords(Any) Property and choose edit.&lt;/P&gt;
&lt;P&gt;7. Add the desired values. I selected all of them and clicked OK.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image006_2.jpg" mce_href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image006_2.jpg"&gt;&lt;IMG title=clip_image006 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=484 alt=clip_image006 src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image006_thumb.jpg" width=490 border=0 mce_src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image006_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;8. Select Level and then Edit.&lt;/P&gt;
&lt;P&gt;9. Select the Manual option, change the value to 0x05, and click OK.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image008_2.jpg" mce_href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image008_2.jpg"&gt;&lt;IMG title=clip_image008 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=484 alt=clip_image008 src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image008_thumb.jpg" width=490 border=0 mce_src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image008_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;10. Click Next.&lt;/P&gt;
&lt;P&gt;11. Change the Root Directory to the destination location for the trace log.&lt;/P&gt;
&lt;P&gt;12. Click Finish&amp;nbsp; (Repeat process for both client and server)&lt;/P&gt;
&lt;P&gt;13. Start the trace by selecting WinRM and choosing Start (on client and server)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image010_2.jpg" mce_href="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image010_2.jpg"&gt;&lt;IMG title=clip_image010 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=235 alt=clip_image010 src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image010_thumb.jpg" width=644 border=0 mce_src="http://blogs.technet.com/blogfiles/jonjor/WindowsLiveWriter/HowtoCaptureaWinRMTrace_FE23/clip_image010_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;14. Reproduce the issue.&lt;/P&gt;
&lt;P&gt;15. Stop the trace by selecting WinRM and choosing stop for both systems. &lt;/P&gt;
&lt;P&gt;16. You will have a winrm.etl file in the location that was set in step 11.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;/B&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Method 2 using LOGMAN&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;1. Rename the attached WinRMETL.txt file to WinRMETL.xml&lt;/P&gt;
&lt;P&gt;2. Create a folder called “winrm” on the root of the C drive of the node that is having the Winrm problem, node 2 for example.&lt;/P&gt;
&lt;P&gt;3. Copy the xml file to that folder and change into that folder&lt;/P&gt;
&lt;P&gt;4. Enter “logman /import –n mytrace –xml c:\winrm\WinRMETL.xml” and press enter.&lt;/P&gt;
&lt;P&gt;5. Enter “logman” and press enter and should see the “mytrace” as a Data Collector Set”&lt;/P&gt;
&lt;P&gt;6. Repeat this for the client from where you will run the Winrm command.&lt;/P&gt;
&lt;P&gt;7. On both systems Enter “logman start mytrace” to start the tracing.&lt;/P&gt;
&lt;P&gt;8. On the client system enter the “winrm id -r:&amp;lt;targetname&amp;gt;&lt;/P&gt;
&lt;P&gt;9. Stop trace by entering “logman stop mytrace” on both systems.&lt;/P&gt;
&lt;P&gt;10. There will be a file created called winRM2.etl in the C:\winrm directory.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3176763" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/jonjor/archive/tags/SCVMM/default.aspx">SCVMM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WinRM/default.aspx">WinRM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category></item><item><title>How to Troubleshoot Host Status - Quick Table</title><link>http://blogs.technet.com/jonjor/archive/2008/12/29/how-to-troubleshoot-host-status-quick-table.aspx</link><pubDate>Tue, 30 Dec 2008 03:18:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3174471</guid><dc:creator>Jonathan</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/jonjor/comments/3174471.aspx</comments><wfw:commentRss>http://blogs.technet.com/jonjor/commentrss.aspx?PostID=3174471</wfw:commentRss><description>&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 16pt"&gt;From the Microsoft TechNet SCVMM TechCenter&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Article URL: &lt;A href="http://technet.microsoft.com/en-us/library/bb740860.aspx" mce_href="http://technet.microsoft.com/en-us/library/bb740860.aspx"&gt;&lt;FONT color=#0000ff&gt;http://technet.microsoft.com/en-us/library/bb740860.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;(Don't forget the VMMCA tool. This should always be top in your troubleshooting list. More info &lt;A title=here target=_blank href="http://blogs.technet.com/chengw/archive/2008/12/04/vmm-configuration-analyzer-2008-is-now-available-for-download.aspx" mce_href="http://blogs.technet.com/chengw/archive/2008/12/04/vmm-configuration-analyzer-2008-is-now-available-for-download.aspx"&gt;&lt;FONT color=#0000ff&gt;here&lt;/FONT&gt;&lt;/A&gt;.)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;The table below works as a quick reference for why you may be experiencing connectivity issues. This will at least get you off and running in the right troubleshooting direction!&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;You can use &lt;B&gt;Host Properties&lt;/B&gt; dialog box to check the overall status of a host, the status of the agent that is installed on the host, and the status of the virtualization software that is installed on the host. These are important indicators of the operational state of a host. Should a host status indicate a need for attention, see the Troubleshooting Guide for System Center Virtual Machine Manager (VMM)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;(&lt;/SPAN&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=83589" mce_href="http://go.microsoft.com/fwlink/?LinkId=83589"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;http://go.microsoft.com/fwlink/?LinkId=83589&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt; [ http://go.microsoft.com/fwlink/?LinkId=83589 ] ). &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; MARGIN: auto auto auto 3.55pt; WIDTH: 97%; BORDER-COLLAPSE: collapse; BORDER-TOP: medium none; BORDER-RIGHT: medium none; mso-yfti-tbllook: 1184; mso-border-alt: solid #DDDDDD .75pt; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=1 cellSpacing=0 cellPadding=0 width="97%" class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="BORDER-BOTTOM: #f0f0f0 1pt inset; BORDER-LEFT: #dddddd 1pt solid; PADDING-BOTTOM: 0.75pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: #cccccc; BORDER-TOP: #dddddd 1pt solid; BORDER-RIGHT: #dddddd 1pt solid; PADDING-TOP: 0.75pt; mso-border-alt: solid #DDDDDD .75pt; mso-border-bottom-alt: inset #F0F0F0 .75pt" vAlign=bottom&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal mce_keep="true"&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; COLOR: #000066; FONT-SIZE: 8pt"&gt;Note &lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #d5d5d3 1pt solid; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: #f7f7ff; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="MARGIN: 0in 0.7pt 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;The host status values do not change in the VMM Administrator Console until the VMM server performs a refresh. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;The following table describes the host status types and values. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; MARGIN: auto auto auto 3.55pt; WIDTH: 97%; BORDER-COLLAPSE: collapse; BORDER-TOP: medium none; BORDER-RIGHT: medium none; mso-yfti-tbllook: 1184; mso-border-alt: solid #DDDDDD .75pt; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=1 cellSpacing=0 cellPadding=0 width="97%" class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="BORDER-BOTTOM: #f0f0f0 1pt inset; BORDER-LEFT: #dddddd 1pt solid; PADDING-BOTTOM: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-RIGHT: 0.75pt; BACKGROUND: #cccccc; BORDER-TOP: #dddddd 1pt solid; BORDER-RIGHT: #f0f0f0 1pt inset; PADDING-TOP: 0.75pt; mso-border-bottom-alt: inset #F0F0F0; mso-border-top-alt: solid #DDDDDD; mso-border-left-alt: solid #DDDDDD; mso-border-right-alt: inset #F0F0F0; mso-border-width-alt: .75pt" vAlign=bottom&gt;
&lt;P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt" class=MsoNormal align=center&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Status Type &lt;/SPAN&gt;&lt;/B&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #f0f0f0 1pt inset; BORDER-LEFT: #f0f0f0; PADDING-BOTTOM: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-RIGHT: 0.75pt; BACKGROUND: #cccccc; BORDER-TOP: #dddddd 1pt solid; BORDER-RIGHT: #dddddd 1pt solid; PADDING-TOP: 0.75pt; mso-border-bottom-alt: inset #F0F0F0; mso-border-top-alt: solid #DDDDDD; mso-border-left-alt: inset #F0F0F0; mso-border-right-alt: solid #DDDDDD; mso-border-width-alt: .75pt" vAlign=bottom&gt;
&lt;P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt" class=MsoNormal align=center&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Status Value and Definition &lt;/SPAN&gt;&lt;/B&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1"&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #d5d5d3 1pt solid; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="MARGIN: 0in 0.7pt 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Overall host status &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #f0f0f0; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt; mso-border-left-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;OK&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—no issues exist with any host status. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Needs Attention&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—a problem exists with one or more host statuses. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 2"&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #d5d5d3 1pt solid; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="MARGIN: 0in 0.7pt 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Agent connection status &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #f0f0f0; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt; mso-border-left-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Responding&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the VMM server is able to communicate with the agent. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Not Responding&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the VMM server is unable to communicate with the agent. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Access Denied&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the agent is no longer associated with the VMM server. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 3"&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #d5d5d3 1pt solid; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="MARGIN: 0in 0.7pt 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Agent version status &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #f0f0f0; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt; mso-border-left-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Current&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the version of the agent is up to date. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Needs update&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the version of the agent must be upgraded to match the version of VMM server. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Unsupported&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the version of the agent is not supported for any VMM functions. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 4"&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #d5d5d3 1pt solid; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="MARGIN: 0in 0.7pt 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Virtual Server service status &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #f0f0f0; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt; mso-border-left-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Running&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the Virtual Server service is started. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Stopped&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the Virtual Server service is stopped.&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 5; mso-yfti-lastrow: yes"&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #d5d5d3 1pt solid; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="MARGIN: 0in 0.7pt 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Virtual Server version status &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #d5d5d3 1pt solid; BORDER-LEFT: #f0f0f0; PADDING-BOTTOM: 3.55pt; PADDING-LEFT: 3.55pt; PADDING-RIGHT: 3.55pt; BACKGROUND: white; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #d5d5d3 1pt solid; PADDING-TOP: 3.55pt; mso-border-alt: solid #D5D5D3 .75pt; mso-border-top-alt: solid #D5D5D3 .75pt; mso-border-left-alt: solid #D5D5D3 .75pt" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Current&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the version of Virtual Server is up to date. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Needs update&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the version of Virtual Server needs to be upgraded. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%; TEXT-INDENT: -0.25in; MARGIN: 0in 7.85pt 0pt 14.95pt; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: Symbol; FONT-SIZE: 10pt; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-size: 8.5pt"&gt;·&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 7pt; mso-fareast-font-family: Symbol; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;Unsupported&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;—the version of Virtual Server is not supported for any VMM functions. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt; VERTICAL-ALIGN: top" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;To view the status values of a host &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 57.4pt; VERTICAL-ALIGN: top; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: Verdana; mso-bidi-font-family: Verdana"&gt;1.&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 7pt; mso-fareast-font-family: Verdana; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;In Hosts view, navigate to the host group that contains the host, and then, in the results pane, double-click the host. &lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 57.4pt; VERTICAL-ALIGN: top; tab-stops: list .5in" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: Verdana; mso-bidi-font-family: Verdana"&gt;2.&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 7pt; mso-fareast-font-family: Verdana; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt"&gt;In the &lt;B&gt;Host Properties&lt;/B&gt; dialog box, click the &lt;B&gt;Status&lt;/B&gt; tab.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt"&gt;
&lt;SCRIPT type=text/javascript&gt;
&lt;!--
digg_topic = 'microsoft';
//--&gt;
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript src="http://digg.com/tools/diggthis.js"&gt;
&lt;/SCRIPT&gt;
&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;Technorati Tags: &lt;A href="http://technorati.com/tags/microsoft"&gt;&lt;FONT color=#0000ff&gt;microsoft&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/scvmm"&gt;&lt;FONT color=#0000ff&gt;scvmm&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/hyper-v"&gt;&lt;FONT color=#0000ff&gt;hyper-v&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtual"&gt;&lt;FONT color=#0000ff&gt;virtual&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtualization"&gt;&lt;FONT color=#0000ff&gt;virtualization&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/windows"&gt;&lt;FONT color=#0000ff&gt;windows&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3174471" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/jonjor/archive/tags/SCVMM/default.aspx">SCVMM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Hyper-V/default.aspx">Hyper-V</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WinRM/default.aspx">WinRM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Network/default.aspx">Network</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Updates_2F00_Hotfixes/default.aspx">Updates/Hotfixes</category></item><item><title>Understanding Microsoft Virtualization Solutions - eBook download (did I mention FREE?)</title><link>http://blogs.technet.com/jonjor/archive/2008/12/29/understanding-microsoft-virtualization-solutions-ebook-download-did-i-mention-free.aspx</link><pubDate>Mon, 29 Dec 2008 22:54:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3174483</guid><dc:creator>Jonathan</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/jonjor/comments/3174483.aspx</comments><wfw:commentRss>http://blogs.technet.com/jonjor/commentrss.aspx?PostID=3174483</wfw:commentRss><description>&lt;SPAN style="mso-ansi-language: en" lang=EN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 12pt; mso-bidi-font-family: Arial; mso-ansi-language: EN; mso-fareast-font-family: 'Times New Roman'; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri" lang=EN&gt;I found this link on ‘Keith Combs' Blahg.’ Written by Mitch Tulloch with the Microsoft Virtualization team, this is THE reference for all things virtual: Hyper-V, SCVMM, App-V, Med-V, and USMT. Download and read today! &lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 12pt; mso-bidi-font-family: Arial; mso-ansi-language: EN; mso-fareast-font-family: 'Times New Roman'; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri" lang=EN&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://blogs.technet.com/keithcombs/archive/2008/12/19/thanks-for-attending-the-usa-virtualization-tour-ebook-download.aspx"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; COLOR: blue; FONT-SIZE: 12pt"&gt;http://blogs.technet.com/keithcombs/archive/2008/12/19/thanks-for-attending-the-usa-virtualization-tour-ebook-download.aspx&lt;/SPAN&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 12pt; mso-bidi-font-family: Arial; mso-fareast-font-family: 'Times New Roman'; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;Direct download link:&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="https://www.getvirtualnow.com/usevents/education/download/693371eBook.pdf"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; COLOR: blue; FONT-SIZE: 12pt"&gt;https://www.getvirtualnow.com/usevents/education/download/693371eBook.pdf&lt;/SPAN&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;A target=_blank href="http://blogs.technet.com/photos/jonjor/images/3174482/original.aspx" mce_href="http://blogs.technet.com/photos/jonjor/images/3174482/original.aspx"&gt;&lt;IMG border=0 src="http://blogs.technet.com/photos/jonjor/images/3174482/275x332.aspx" mce_src="http://blogs.technet.com/photos/jonjor/images/3174482/275x332.aspx"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;
&lt;SCRIPT type=text/javascript&gt;
&lt;!--
digg_topic = 'microsoft';
//--&gt;
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript src="http://digg.com/tools/diggthis.js" mce_src="http://digg.com/tools/diggthis.js"&gt;
&lt;/SCRIPT&gt;
&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;Technorati Tags: &lt;A href="http://technorati.com/tags/microsoft"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;microsoft&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/scvmm"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;scvmm&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/hyper-v+review"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;hyper-v review&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtual"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;virtual&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtualization"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;virtualization&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/windows"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;windows&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/app-v"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;app-v&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/med-v"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; mso-bidi-font-size: 11.0pt"&gt;&lt;FONT color=#0000ff&gt;med-v&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;/SPAN&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3174483" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/jonjor/archive/tags/SCVMM/default.aspx">SCVMM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Hyper-V/default.aspx">Hyper-V</category><category domain="http://blogs.technet.com/jonjor/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WinRM/default.aspx">WinRM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/P2V/default.aspx">P2V</category><category domain="http://blogs.technet.com/jonjor/archive/tags/V2V/default.aspx">V2V</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Setup/default.aspx">Setup</category><category domain="http://blogs.technet.com/jonjor/archive/tags/How+To/default.aspx">How To</category></item><item><title>WMI Errors and SCVMM – If It’s Not Broken, Update It!</title><link>http://blogs.technet.com/jonjor/archive/2008/12/29/wmi-errors-and-scvmm-if-it-s-not-broken-update-it.aspx</link><pubDate>Mon, 29 Dec 2008 12:02:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3174291</guid><dc:creator>Jonathan</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/jonjor/comments/3174291.aspx</comments><wfw:commentRss>http://blogs.technet.com/jonjor/commentrss.aspx?PostID=3174291</wfw:commentRss><description>&lt;P style="MARGIN: 0in 0in 10pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-outline-level: 1" class=MsoNormal&gt;&lt;SPAN style="mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT size=3 face=Calibri&gt;There are many errors that may appear, based on events in SCVMM, to be WMI related. An understandable response would be to troubleshoot WMI. On the other hand, many ‘Access Denied’ errors, while pointing to WMI in no way, are actually the result of WMI issues. Below are a number of error examples that in one way or another are related to WMI. The best way to deal with these errors is divide and conquer. First, determine if WMI itself is responding correctly. By this I mean that we test WMI functionality alone, not in combination with SCVMM which has its own detached namespace. Second, with no fundamental problems found with WMI due to NIC teaming or otherwise, there are three updates that may very well resolve your issue. These should be installed on all Windows 2008 servers that hold SCVMM components. The updates are at the bottom of this post. Good luck!&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;_____ERRORS_____&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;SCVMM Admin Console typical errors for Hosts&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt; &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;'Connection Status: Not responding' &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;'Virtualization service status: unknown" &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;WMI typical errors &lt;BR&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT size=3&gt;&lt;I style="mso-bidi-font-style: normal"&gt;Example #1 &lt;BR&gt;&lt;/I&gt;Log Name: Application&lt;BR&gt;Source: Microsoft-Windows-WMI &lt;BR&gt;Event ID: 10 &lt;BR&gt;Task Category: none &lt;BR&gt;Description: &lt;BR&gt;Event filter with query "select * from __instancemodificationevent within 30 where &lt;BR&gt;targetinstance isa 'Win32_PerfFormattedData_PerfOS_Processor' and &lt;BR&gt;targetinstance.PercentProcessorTime &amp;gt; 99 and targetinstance.Name != '_Total'" could &lt;BR&gt;not be reactivated in namespace "//./root/CIMV2" because of error 0x80041010. &lt;BR&gt;Events cannot be delivered through this filter until the problem is corrected. &lt;I style="mso-bidi-font-style: normal"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/I&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;I style="mso-bidi-font-style: normal"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;Example #2 &lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;Log Name: Application &lt;BR&gt;Source: Application Error &lt;BR&gt;Event ID: 1000 &lt;BR&gt;Task Category: (100) &lt;BR&gt;Description: &lt;BR&gt;Faulting application wmiprvse.exe, version 6.0.6001.18000, time stamp 0x4791950f, &lt;BR&gt;faulting module ntdll.dll, version 6.0.6001.18000, time stamp 0x4791adec, exception &lt;BR&gt;code 0xc0000005, fault offset 0x000000000003e39c, process id 0x944, application &lt;BR&gt;start time 0x01c95ba1faa603ce. &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Jobs list errors in SCVMM Admin Console &lt;BR&gt;&lt;/B&gt;&lt;I style="mso-bidi-font-style: normal"&gt;Example #1 &lt;/I&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;Error (2911) &lt;BR&gt;Insufficient resources are available to complete this operation on the &lt;BR&gt;server.contoso.com server. &lt;BR&gt;(Not enough storage is available to complete this operation (0x8007000E)) &lt;BR&gt;Recommended Action &lt;BR&gt;Ensure that the virtual machine host has sufficient memory and disk space to &lt;BR&gt;perform this action. Try the operation again. &lt;BR&gt;&lt;BR&gt;&lt;I style="mso-bidi-font-style: normal"&gt;Example #2 &lt;o:p&gt;&lt;/o:p&gt;&lt;/I&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing mce_keep="true"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;Warning (10803) &lt;BR&gt;Unable to refresh \\server.contoso.com\ISOS$\WinPE_X86_with_HyperV_ICs.iso because &lt;BR&gt;the file is in use by another process. &lt;BR&gt;Recommended Action &lt;BR&gt;Wait for the next automatic library refresh, or manually refresh the library share &lt;BR&gt;after the process completes. &lt;BR&gt;&lt;BR&gt;&lt;I style="mso-bidi-font-style: normal"&gt;Example #3&lt;/I&gt; &lt;BR&gt;Error (2912) &lt;BR&gt;An internal error has occurred trying to contact an agent on the server.contoso.com &lt;BR&gt;server. &lt;BR&gt;(No more threads can be created in the system (0x800700A4)) &lt;BR&gt;Recommended Action &lt;BR&gt;Ensure the agent is installed and running. Ensure the WS-Management service is &lt;BR&gt;installed and running, then restart the agent. &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;I style="mso-bidi-font-style: normal"&gt;Example #4 &lt;BR&gt;&lt;/I&gt;Error (2912) &lt;BR&gt;An internal error has occurred trying to contact an agent on the &lt;BR&gt;ephypv01.constrution.enet server. (The paging file is too small for this operation &lt;BR&gt;to complete (0x800705AF) &lt;BR&gt;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;_____TEST_____&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;&amp;nbsp; &lt;BR&gt;Verify that various WMI namespaces can be connected to, then update WMI on all involved Windows 2008 machines &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Using wbemtest &lt;BR&gt;&lt;/B&gt;- Click the 'Start' button &lt;BR&gt;- Start&amp;gt; Run&amp;gt; wbemtest &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Click 'Connect' and enter 'root\cimv2' then click 'Connect' again. This should not prompt with an error &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Click 'Connect' and enter 'root\default' then click 'Connect' again. This should not prompt with an error &lt;BR&gt;On a Hyper-V server, this should also work &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Click 'Connect' and enter 'root\virtualization' then click 'Connect' again. This should not prompt with an error. &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;On an SCVMM Server (Host) this should also work &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Click 'Connect' and enter 'root\scvmm' then click 'Connect' again. This should not prompt with an error &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Close 'wbemtest' &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;&lt;FONT size=3&gt;Using command line &lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;FONT size=3&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;- From an elevated command prompt type 'wmic nic' and press Enter &lt;BR&gt;- This should return information, not an error. If there is an error, and all other tests work, this is likely due to NIC TEAMING. Uninstall all NIC Teaming software, reboot and try again &lt;BR&gt;- From an elevated command prompt type 'wmic diskdrive list brief' and press Enter &lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;- This should return information, not an error&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;_____UPDATE_____&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: auto 0in" class=MsoNoSpacing&gt;&lt;FONT size=3&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;Install WMI Updates and Hotfixes &lt;BR&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;FONT face="Times New Roman"&gt;Each requires a reboot&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: auto 0in" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;&lt;BR&gt;&lt;FONT size=3&gt;954563 Memory corruption may occur with the Windows Management Instrumentation (WMI) service on a computer that is running Windows Server 2008 or Windows Vista Service Pack 1 &lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;954563" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;954563"&gt;&lt;SPAN style="mso-bidi-font-family: Arial"&gt;&lt;FONT color=#0000ff size=3&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;954563&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;FONT size=3&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;&lt;FONT size=3&gt;958124 A wmiprvse.exe process may leak memory when a WMI notification query is used heavily on a Windows Server 2008-based or Windows Vista-based computer &lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;958124" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;958124"&gt;&lt;FONT color=#0000ff size=3&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;958124&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;o:p&gt;&lt;FONT size=3 face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;&lt;FONT size=3&gt;955805 Certain applications become very slow on a Windows Server 2008-based or Windows Vista SP1-based computer when a certificate with SIA extension is installed&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNoSpacing&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;&lt;A href="http://support.microsoft.com/kb/955805" mce_href="http://support.microsoft.com/kb/955805"&gt;&lt;FONT color=#0000ff size=3&gt;http://support.microsoft.com/kb/955805&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;
&lt;SCRIPT type=text/javascript&gt;
&lt;!--
digg_topic = 'microsoft';
//--&gt;
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript src="http://digg.com/tools/diggthis.js"&gt;
&lt;/SCRIPT&gt;
&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 10pt; mso-bidi-font-family: Arial; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;Technorati Tags: &lt;A href="http://technorati.com/tags/microsoft"&gt;&lt;FONT color=#0000ff&gt;microsoft&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/scvmm"&gt;&lt;FONT color=#0000ff&gt;scvmm&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/hyper-v"&gt;&lt;FONT color=#0000ff&gt;hyper-v&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtual"&gt;&lt;FONT color=#0000ff&gt;virtual&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtualization"&gt;&lt;FONT color=#0000ff&gt;virtualization&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/windows"&gt;&lt;FONT color=#0000ff&gt;windows&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3174291" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/jonjor/archive/tags/SCVMM/default.aspx">SCVMM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Hyper-V/default.aspx">Hyper-V</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WinRM/default.aspx">WinRM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WMI/default.aspx">WMI</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category></item><item><title>Troubleshooting and Data Collection During Offline P2V</title><link>http://blogs.technet.com/jonjor/archive/2008/12/29/troubleshooting-and-data-collection-during-offline-p2v.aspx</link><pubDate>Mon, 29 Dec 2008 11:36:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3174282</guid><dc:creator>Jonathan</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/jonjor/comments/3174282.aspx</comments><wfw:commentRss>http://blogs.technet.com/jonjor/commentrss.aspx?PostID=3174282</wfw:commentRss><description>&lt;P style="MARGIN: 0in 0in 10pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-outline-level: 1" class=MsoNormal&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT size=3 face=Calibri&gt;When the P2V process fails there can be a number of issues to identify. A number of situations are discussed below. The machine being virtualized is referred to as the Source machine. The location where the virtualized machine is being copied is the Destination Host. &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Use this article as your main reference for all P2V issues &lt;BR&gt;&lt;/B&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; P2V: Converting Physical Computers to Virtual Machines in VMM &lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family: Arial"&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc764232.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc764232.aspx"&gt;&lt;SPAN style="mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT color=#0000ff size=3 face=Calibri&gt;http://technet.microsoft.com/en-us/library/cc764232.aspx&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt; &lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal mce_keep="true"&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi"&gt;&lt;/SPAN&gt;&lt;BR&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Requirements for the Source Machine &lt;BR&gt;&lt;/B&gt;To perform a P2V conversion, your source computer: &lt;BR&gt;- Must have at least 512 MB of RAM. &lt;BR&gt;- Must have an Advanced Configuration and Power Interface (ACPI) BIOS - Vista WinPE will not install on a non-ACPI BIOS. &lt;BR&gt;- Must be accessible by VMM and by the host computer. &lt;BR&gt;- Cannot be in a perimeter network (also known as a DMZ, demilitarized zone, and screened subnet) where the firewalls or IPsec settings prohibit communication. &lt;BR&gt;- Must contain one of the following supported operating systems: &lt;BR&gt;- Windows Server 2008 (32-bit) &lt;BR&gt;- Windows Server 2008 (64-bit) &lt;BR&gt;- Windows Server 2003 (32-bit) SP1 or later &lt;BR&gt;- Windows Server 2003 (64-bit) SP1 or later &lt;BR&gt;- Windows 2000 Server SP4 or later (Offline P2V only) &lt;BR&gt;- Windows 2000 Advanced Server SP4 or later (Offline P2V only) &lt;BR&gt;- Windows XP Professional (32-bit) SP2 or later &lt;BR&gt;- Windows XP Professional (64-bit) SP2 or later &lt;BR&gt;- Windows Vista (32-bit) SP1 or later &lt;BR&gt;- Windows Vista (64-bit) SP1 or later &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Errors and Resolutions &lt;BR&gt;&lt;/B&gt;- Third party applications can lead to failures &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- Disable all antivirus using MSCONFIG and reboot &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- Disable all monitoring software such as Insight Manager (optional) &lt;BR&gt;- Disable IIS on the source machine if running &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Network Related - Source machine &lt;BR&gt;&lt;/B&gt;Make sure that when rebooted into WinPE there is an IP address. There is a command prompt on the console. Type 'ipconfig /all' and verify with the customer that all IP settings are correct and match that of the &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; Server and Destination Host &lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;FONT size=3 face=Calibri&gt;If the IP starts with 169.254.x.x this is an auto-configed IP. This means there is no DHCP serve to provide an IP address or there are problems with the NIC drivers.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;It is preferable that the source and destination host are on the same subnet. If not test all routing by pinging… &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- Ping the &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; and Host &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; servers by DNS name, not IP. If they do not resolve, correct DNS &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- Ping the IP address of the default gateway and DNS servers. If they do not reply, correct IP settings &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- If IP information needs to be set manually in WinPE, at a command prompt type: &lt;BR&gt;‘netsh interface ipv4 set address "Local Area Connection" static 10.241.0.7&amp;nbsp; 255.255.0.0&amp;nbsp;&amp;nbsp;&amp;nbsp; 10.241.0.2&amp;nbsp;&amp;nbsp;&amp;nbsp; 1’ &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where: &lt;BR&gt;‘netsh interface ipv4 set address "Local Area Connection" static %ipaddr% %subnet% %dns server% 1’ &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Network Related - Source and &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; machines &lt;BR&gt;&lt;/B&gt;On Windows 2003 machines follow the 'Workaround' in this article (disregard the fact that it is a SQL KB. It is correct). This will disable TCP Offloading in Windows 2003 SP2, which can lead to a number of networking issues.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;FONT size=3 face=Calibri&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 942861 Error message when an application connects to SQL Server on a server that is running Windows Server 2003: &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "General Network error," "Communication link failure," or "A transport-level error" &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;942861" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;942861"&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT color=#0000ff size=3 face=Calibri&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;942861&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;FONT size=3 face=Calibri&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN style="mso-bidi-font-family: Arial"&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;WMI and 'Access Denied' errors &lt;BR&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;Follow the article on this site ‘WMI Errors and SCVMM’ &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN style="mso-bidi-font-family: Arial"&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT size=3 face=Calibri&gt;During 'Scan System' operation &lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;I style="mso-bidi-font-style: normal"&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT size=3 face=Calibri&gt;Example Error &lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT size=3 face=Calibri&gt;VMM does not have appropriate permissions to access the resource on the &amp;lt;destination_computer&amp;gt; server. Ensure that Virtual Machine Manager has the appropriate rights to perform this action. &lt;BR&gt;ID: 2910 &lt;BR&gt;Details: Access is denied (0x80070005) &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;EM&gt;Resolution #1 &lt;/EM&gt;&lt;BR&gt;- Make sure the computer object for the &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; server is in the Administrators group on the source machine &lt;BR&gt;- Make sure the account specified in the &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; Admin Console is a member of the Administrators group on the source machine. &lt;BR&gt;- &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; 2008 - If the machine is in a workgroup, make sure the Domain specified along with the Account and Password is actually the name of the source machine, not the domain of the &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; server &lt;BR&gt;&lt;BR&gt;&lt;EM&gt;Resolution #2 &lt;/EM&gt;&lt;BR&gt;Ensure that the following services are not set to 'Disabled,' and that you can start them successfully on the source machine &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- WMI &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- Background Intelligent Transfer Service (BITS) &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- HTTP SSL &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;- RPC &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;EM&gt;Resolution #3 &lt;/EM&gt;&lt;BR&gt;Enable auditing of object access to determine if the account specified in &lt;SPAN style="mso-bidi-font-weight: bold"&gt;SCVMM&lt;/SPAN&gt; or the SCVMM computer object are failing to access the source machine as required. Look for 'Failure' in the security log once configured and tested. &lt;BR&gt;&lt;BR&gt;- Follow the first section of the article below 'For the local computer' &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 325898 How to set up and manage operation-based auditing for Windows Server 2003, Enterprise Edition &lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family: Arial"&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;325898" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;325898"&gt;&lt;SPAN style="mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT color=#0000ff size=3 face=Calibri&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;325898&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;FONT size=3 face=Calibri&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt; mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Arial"&gt;- Record any settings under 'Audit Policy' that are already configured &lt;BR&gt;- Change configure all Policies to record Success and Failure &lt;BR&gt;- If any Policies have an icon of gray servers instead of blue 0's and 1's you will not be able to make this change and must involve the customer's Group Policy administrator &lt;BR&gt;- Back at a command prompt type 'gpupdate /force' &lt;BR&gt;- Try the scan again, then check the Security log for ’Failure’ audits &lt;BR&gt;- Set all Policies back to the state you recorded them as before making changes&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT size=3 face=Calibri&gt;&lt;EM&gt;Resolution #4 &lt;/EM&gt;&lt;/FONT&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family: Arial; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&lt;FONT size=3 face=Calibri&gt;Make sure the DCOM (DCOMLaunch) service is set to Automatic and running. (Thanks to Pramod for this tip)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;BR&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3 face=Calibri&gt;Non-ACPI HAL &lt;BR&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt"&gt;&lt;FONT face=Calibri&gt;If the source machine has a non ACPI HAL P2V cannot be performed. &lt;BR&gt;&lt;BR&gt;P2V: Converting Physical Computers to Virtual Machines in VMM &lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc764232.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc764232.aspx"&gt;&lt;SPAN style="mso-bidi-font-family: Arial"&gt;&lt;FONT color=#0000ff face=Calibri&gt;http://technet.microsoft.com/en-us/library/cc764232.aspx&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt"&gt;&lt;BR&gt;&lt;FONT face=Calibri&gt;309283 HAL options after Windows XP or Windows Server 2003 Setup &lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;309283" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;309283"&gt;&lt;SPAN style="mso-bidi-font-family: Arial"&gt;&lt;FONT color=#0000ff face=Calibri&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;309283&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;FONT face=Calibri&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt"&gt;&lt;BR&gt;&lt;FONT face=Calibri&gt;249694 How to move a Windows installation to different hardware &lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;249694" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;249694"&gt;&lt;FONT color=#0000ff face=Calibri&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;249694&lt;/FONT&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-SIZE: 12pt; mso-bidi-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;
&lt;SCRIPT type=text/javascript&gt;
&lt;!--
digg_topic = 'microsoft';
//--&gt;
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript src="http://digg.com/tools/diggthis.js"&gt;
&lt;/SCRIPT&gt;
&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 10pt" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt"&gt;Technorati Tags: &lt;A href="http://technorati.com/tags/microsoft"&gt;&lt;FONT color=#0000ff&gt;microsoft&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/scvmm"&gt;&lt;FONT color=#0000ff&gt;scvmm&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/hyper-v"&gt;&lt;FONT color=#0000ff&gt;hyper-v&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtual"&gt;&lt;FONT color=#0000ff&gt;virtual&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/virtualization"&gt;&lt;FONT color=#0000ff&gt;virtualization&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/windows"&gt;&lt;FONT color=#0000ff&gt;windows&lt;/FONT&gt;&lt;/A&gt;,&lt;A href="http://technorati.com/tags/P2V"&gt;&lt;FONT color=#0000ff&gt;P2V&lt;/FONT&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3174282" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/jonjor/archive/tags/SCVMM/default.aspx">SCVMM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WinRM/default.aspx">WinRM</category><category domain="http://blogs.technet.com/jonjor/archive/tags/WMI/default.aspx">WMI</category><category domain="http://blogs.technet.com/jonjor/archive/tags/P2V/default.aspx">P2V</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Storage/default.aspx">Storage</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category><category domain="http://blogs.technet.com/jonjor/archive/tags/How+To/default.aspx">How To</category><category domain="http://blogs.technet.com/jonjor/archive/tags/Network/default.aspx">Network</category></item></channel></rss>