Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Find Firmware of Virtual Machines

$
0
0

Summary: Use Windows PowerShell to find the firmware version of your virtual machines on Hyper-V.

Hey, Scripting Guy! Question How can I use Windows PowerShell to check the version of firmware on my second-generation
          virtual machines running Hyper-V in Windows Server 2012 R2?

Hey, Scripting Guy! Answer Use the Get-VM cmdlet to find your second generation virtual machines,
          then pipe the virtual machine objects to the Get-VMFirmware cmdlet:

get-vm | where generation -eq 2 | Get-VMFirmware

Note  This command requires admin rights. 


Viewing all articles
Browse latest Browse all 3333

Trending Articles