Update powershell.md

This commit is contained in:
Alexandre B 2024-09-14 17:32:40 -04:00 committed by GitHub
parent 72594efdb1
commit 8d452d4f45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,6 +126,15 @@ Get-WmiObject -Class Win32_OperatingSystem
Get-CimInstance -ClassName CIM_Processor | Where-Object {$_.'DeviceID' -eq 'CPU0'} | ft -hide
```
### Cim-Class List
To get full list of CimClass, run `Get-CimClass`
- Win32_SystemBIOS
- Win32_DiskPartition
- Win32_Processor
- CIM_Processor (DeviceID, Name, Caption, MaxClockSpeed, Manufacturer)
## SYSTEMINFO
__SYSTEMINFO__ displays operating system configuration information for a local or remote computer.