Showing results for April 2013 - Page 3 of 10 - Scripting Blog [archived]

Apr 24, 2013
0
0

PowerTip: Use PowerShell to Find Virtual Machine DVD Info

ScriptingGuy1
ScriptingGuy1

Summary: Use Windows PowerShell to find Hyper-V DVD information in Windows 8 or Windows Server 2012.    How can I use Windows PowerShell in Windows 8 or Windows Server 2012 to find Hyper-V virtual machine DVD disk information?  Use the Get-VM cmdlet and pipe the output to the Get-VMDvdDrive cmdlet: PS C:> get-vm | Get-VMDvdDrive ...

Scripting Guy!Windows PowerShellPowerTip
Apr 23, 2013
0
0

PowerTip: Use PowerShell to Find WMI Classes Related to Disks

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell 3.0 to help find WMI classes related to disks.  How can I find WMI classes that will return information about disks on my local computer?  Use the Get-CimClass cmdlet in Windows PowerShell 3.0. Use a wildcard character for the class name, and use the QualifierName parameter to filter only dynamic ...

Scripting Guy!Windows PowerShellPowerTip
Apr 22, 2013
0
0

PowerTip: Use PowerShell to Keep Up-to-Date with the 2013 Scripting Games

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to help you stay up-to-date with the 2013 Scripting Games.  How can I use Windows PowerShell to obtain an RSS feed of all 2013 Scripting Games content from the Scripting Guys?  Use the Invoke-RestMethod cmdlet in Windows PowerShell 3.0 and specify the uri for the Scripting Guys 2013 Scripting Games RSS...

Scripting Guy!Windows PowerShellPowerTip
Apr 21, 2013
0
0

PowerTip: Use PowerShell to Find WMI Classes with a Specific Property

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find WMI classes that contain a specific property.  How can I use Windows PowerShell to help find a WMI class that contains a specific property?  Use the Get-CimClass cmdlet in Windows PowerShell 3.0, and use the specific property name or a wildcard pattern to help you find the class: Get-CimClass -...

Scripting Guy!Windows PowerShellPowerTip
Apr 20, 2013
0
0

PowerTip: Use PowerShell to Detect Mouse Type Used on Laptop

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell and WMI to detect the type of mouse that is being used on a laptop running Windows 8.  How can I find information about the type of mice that are being used in conjunction with my laptop that is running Windows 8?  Depending on the mouse, you may be able to obtain the information by using the ...

Scripting Guy!Windows PowerShellPowerTip