fbpx

Category Archives for "Windows 2008 R2"

Killing a Hung VM in Task Manager (Another PowerShell command)

This is another command of how to kill a Hung VM by identify the Process ID using PowerShell command : For Windows 2012 Get-WmiObject -Namespace rootvirtualization -class msvm_computersystem | select elementname, operationalstatus, processid, name| ft –auto For Window 2012 R2 Get-WmiObject -Namespace rootvirtualizationv2 -class msvm_computersystem | select elementname, operationalstatus, processid, name| ft –auto Once the […]

Continue reading

Killing a Hung VM in Task Manager (Another PowerShell command)

This is another command of how to kill a Hung VM by identify the Process ID using PowerShell command : For Windows 2012 Get-WmiObject -Namespace rootvirtualization -class msvm_computersystem | select elementname, operationalstatus, processid, name| ft –auto For Window 2012 R2 Get-WmiObject -Namespace rootvirtualizationv2 -class msvm_computersystem | select elementname, operationalstatus, processid, name| ft –auto Once the […]

Continue reading

Killing a Hung VM in Task Manager

Sometimes the VM we tried to stop hangs.  So in order to kill the process using the Task Manager, we can end process of VMWP.exe.  But the next question is which one.  Each VM has a unique Process ID. Therefore, I launch the elevated Powershell by executing the following command below Get-WmiObject win32_process -Filter “Name […]

Continue reading

Killing a Hung VM in Task Manager

Sometimes the VM we tried to stop hangs.  So in order to kill the process using the Task Manager, we can end process of VMWP.exe.  But the next question is which one.  Each VM has a unique Process ID. Therefore, I launch the elevated Powershell by executing the following command below Get-WmiObject win32_process -Filter “Name […]

Continue reading

DPM 2012 Reporting Issue (ID : 220)

After upgrading from SCDPM 2012 SP1 to SCDPM 2012 R2, I hit the issue when I tried to configure the Reporting to be send out periodically in the Report Module of SCDPM 2012 R2. The steps taken was the following : Launch the Reporting Services Manager (in my example is SQL 2008 R2, since it’s […]

Continue reading

DPM 2012 Reporting Issue (ID : 220)

After upgrading from SCDPM 2012 SP1 to SCDPM 2012 R2, I hit the issue when I tried to configure the Reporting to be send out periodically in the Report Module of SCDPM 2012 R2. The steps taken was the following : Launch the Reporting Services Manager (in my example is SQL 2008 R2, since it’s […]

Continue reading