Tuesday, February 16, 2016

PowerShell Tips : Getting Sound Card information by using PowerShell.

 

Music, Music, we all love that,, that music comes fromt he Sound Card, do you wanna know more about  it, run the below commnad ;o) .

Get-Wmiobject -class "Win32_SoundDevice" | Fl * -Force

111

With Regards.
Aman Dhally
If you like, you can follow me on Twitter and Facebook. You can also check my “You Tube channel for PowerShell video tutorials. You can download all of my scripts from “Microsoft TechNet Gallery”.

Monday, February 15, 2016

PowerShel Tips : Getting BIOS information by using PowerShell.

 

Like to know about all information about your BIOS? Run the below commnad. ;o) .

Get-Wmiobject -class "Win32_BIOS" -namespace "root\CIMV2" | Fl * -Force

 

123

 

 

With Regards.
Aman Dhally
If you like, you can follow me on Twitter and Facebook. You can also check my “You Tube channel for PowerShell video tutorials. You can download all of my scripts from “Microsoft TechNet Gallery”.

Sunday, February 14, 2016

PowerShell Tips : Find a information on Full battery charge and Design capacity.

 

Do you like to know about the Battery Chageing status aand design capacity of the laptop battery, try the below wmi class :) .

 

(Get-WmiObject -Class "BatteryStaticData" -Namespace "ROOT\WMI").DesignedCapacity

 

 

 

(Get-WmiObject -Class "BatteryFullChargedCapacity" -Namespace "ROOT\WMI").FullChargedCapacity

 

01

 

 

With Regards.
Aman Dhally
If you like, you can follow me on Twitter and Facebook. You can also check my “You Tube channel for PowerShell video tutorials. You can download all of my scripts from “Microsoft TechNet Gallery”.