Here is a quick way to get the entire cmdlet available for Hyper-V and VMM. It come handy when you want to write a powershell script and you’re not sure of cmdlet available. You can easily get entire list of cmdlet by using Powershell and export it to a text file for future reference.
[ Hyper-V]
Open Windows Powershell and type
Get-Command –Module “Hyper-V” > C:\Temp\HyperVCmd.txt |
Output:-
[VMM 2012 R2]
Open VMM Windows Powershell
Get-Command –Module “VirtualMachineManager” > C:\Temp\VMMCmd.txt |
Output:
You also can view
- Hyper-V CmdLet Reference from here:- http://technet.microsoft.com/en-us/library/hh848559.aspx
- VMM Cmdlet Reference for VMM from here:- http://technet.microsoft.com/en-us/library/jj654428%28v=sc.20%29.aspx