Get Boot InformationThis script will determine the boot settings of a computer.
Added 276 days ago by Emnico
| Download | |
| Review | ||
| Back | ||
| 59 | Views |
Source code
$computer = "LocalHost" $namespace = "root\CIMV2" Get-WmiObject -class Win32_BootConfiguration -computername $computer -namespace $namespace

