VMM 2012 R2 – Uninstall VMM Agent from Windows Server 2012 R2 Core
September 9, 2014 2 Comments
Uninstallation commands for Windows Core:
List installed software:
Get-WmiObject -Class Win32_Product
Uninstall VMM DHCP Extension
(Get-WmiObject -Class Win32_Product -Filter “Name=’Microsoft System Center Virtual Machine Manager DHCP Server (x64)'” -ComputerName . ).Uninstall()
Uninstall VMM Agent
(Get-WmiObject -Class Win32_Product -Filter “Name=’Microsoft System Center Virtual Machine Manager Agent (x64)'” -ComputerName . ).Uninstall()
Technet reference: http://technet.microsoft.com/en-us/library/dd347651.aspx
Pingback: Manually reinstall SCVMM Agent (2012 R2) on Hyper-V cluster node | WickedSwitch
I believe you may have the ‘ & ” reversed. The commands do not work as entered.