I had the annoying issue that my Windows 10 Search bar stops working for some reason. Trying to restart the
Continue readingTag: powershell
Invoke-WebRequest : The response content cannot be parsed because the Internet Explorer engine is not available
Yesterday I was facing this error when running a SMA Runbook with the invoke-webrequest cmdlet. For troubleshooting I had to
Continue readingPowerShell: The specified string is not in the form required for a subject
During the creation of a PowerShell SMA Runbook I was getting the following error message. This error appear when sending
Continue readingGet PowerShell version
Sometimes you need to check the PowerShell version of your Windows System, to get the PowerShell version you need to
Continue readingDelete VM From VMM Database
Firtst, try to remove the VM with the VMM Powershell module:
1 2 |
$vm=Get-SCVirtualMachine -Name "your machine name" Remove-SCVirtualMachine -VM $vm -Force |
If this was not succesvol you can try
Continue readingMSMQ errors in ClusterLog
What is MSMQ: You can use MSMQ for Application communication across heterogeneous networks and systems that may be temporarily offline.
Continue readingHyper-v VM migration with VMM Powershell
Somethimes you need to bulk migrate some Hyper-v virtual machines. This is not possible with the VMM gui. In this
Continue readingList all Hyper-v snapshots with the VMM PowerShell Module
There is no place where you can find an overview from all Hyper-v snapshots in the VMM Gui. In this
Continue readingGet Hyper-v snapshot with Powershell
List Hyper-v VM Snapshots. With this PowerShell command you can search for snapshots on a Hyper-v node.
1 2 |
#Get VMSnapshots Hyper-v host Get-VM -computername hpvhost | Get-VMSnapshot |
List all
Continue readingRemove Temporary Template SCVMM
When you manually remove a .VHD file from the library, is it possible that you cannot remove the template from
Continue reading