Get-BIOS Description Get-BIOS will provide you the attributes of the computer system's basic input/output services (BIOS) that are installed on a computer. Note: You need to install SysInfo module in order for this cmdlet to be available. For more information, see PowerShell ...
Get-Battery
Get-Battery Description Get-Battery will provide you the information of a battery connected to the computer system. Note: You need to install SysInfo module in order for this cmdlet to be available. For more information, see PowerShell Module SysInfo. Syntax: Get-Battery ...
Get-BaseBoard
Get-BaseBoard Description Get-BaseBoard will provide you the information of a baseboard. Note: You need to install SysInfo module in order for this cmdlet to be available. For more information, see PowerShell Module SysInfo. Syntax: Get-BaseBoard [[-ComputerName] ...
Get-1394Controller
Get-1394Controller Description Get-1394Controller will provide you the capabilities and management of a 1394 controller. Note: You need to install SysInfo module in order for this cmdlet to be available. For more information, see PowerShell Module ...
PowerShell Switch
PowerShell Switch In this tutorial we will see about PowerShell Switch statement and how we are able to use it. When we need to check a condition we are using If statement. In cases we would like to check multiple conditions we can use a Switch statement. The switch statement perform the same job ...
PowerShell Trap
PowerShell Trap In this tutorial we will see about PowerShell Trap and how we are able to use it. When there is a terminating error, any statement will stop running. When we are not handling the terminating errors, PowerShell will stop running the function or script in the current pipeline. By ...