1) Remove the vSwitch and port group added by VMM. 2) Remove the attribute named ‘Cluster Invariant’ added by VMM in the VM summary tab. 3) Remove any roles added by VMM (including SCVMM in the name) in the role tab.
Month: October 2011
Remove vCenter from SCVMM
To remove a VMware VirtualCenter server from VMM In Administration view of the VMM Administrator Console, click Virtualization Managers. In the results pane, select the VirtualCenter server that you want to remove. In the Actions pane, under Virtualization Manager, click Remove. In Host Group view, right click the host group that contained the vCenter cluster … Continue reading Remove vCenter from SCVMM
Autoruns
Autoruns has the most comprehensive knowledge of auto-starting locations of any startup monitor, shows you what programs are configured to run during system bootup or login, and shows you the entries in the order Windows processes them. The utility can be downloaded here: http://technet.microsoft.com/en-us/sysinternals/bb963902
PowerShell: List the Hyper-V VM VHD Location
The following PS script is to query the VHD location of each VM running on the hosts listed in the C:\scripts\Hyperv_Hosts.txt file. cls cd "c:\Scripts" $HyperVParents = Get-Content Hyperv_Hosts.txt Foreach ($HyperVParent in $HyperVParents) { $VMManagementService = Get-WmiObject -class "Msvm_VirtualSystemManagementService" -namespace "root\virtualization" -ComputerName $HyperVParent $VMs = Get-WmiObject -Namespace "root\virtualization" -ComputerName $HyperVParent -Query "Select * From Msvm_ComputerSystem … Continue reading PowerShell: List the Hyper-V VM VHD Location
SCVMM 2008 R2 SP1 Server Naming Issue
My colleague found that – SCVMM 2008 R2 SP1 does not like to be installed in a server with ‘-’ in the server name. And someone had the exact same issue described as here: http://social.technet.microsoft.com/Forums/en-US/virtualmachingmgrsetup/thread/46fd012d-f5ac-4025-aac1-29f62f1c6124/ More info about installing SCVMM 2008: http://technet.microsoft.com/en-us/library/cc764327.aspx http://technet.microsoft.com/en-us/library/cc764295.aspx