1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
#Serial Number, Vendor, information Get-WmiObject -Class Win32_ComputerSystem #Bios Information , including Version Number of BIOS Get-WmiObject -Class win32_bios #Battery Information Get-WmiObject -Class win32_battery #Serial Number, Capacity, Part Number of Installed Memory Stick Get-WmiObject -Class win32_Physicalmemory #Capacity, Serial Number of Drive and other info of the Hard-disk Get-WmiObject -Class win32_DiskDrive #Monitor Information including Resolutions Get-WmiObject -Class win32_DesktopMonitor #Information Related Cd Drive Get-WmiObject -Class win32_cdromdrive #Network Adaptor information contains, manufacturer, MAC ID etc Get-WmiObject -Class win32_networkadapter #Mouse related information Get-WmiObject -Class win32_pointingdevice #OS Name, OSArchitecture, Version Info Get-WmiObject -Class win32_operatingsystem #DeviceID, Free Space, Size of Partition Get-WmiObject -Class win32_logicalDisk #Mapped Network Drives Get-WmiObject -Class Win32_NetworkConnection #List of Installed Printers Get-WmiObject -Class win32_printer #List of Printer Drivers Get-WmiObject -Class win32_PrinterDriver #IP Adress, DHCP , DNS and other information of Network Drivers Get-WmiObject -Class Win32_NetworkAdapterConfiguration #Command that runs automatically when a user logs onto the computer system Get-WmiObject -Class win32_startupCommand #All Running Processes Get-WmiObject -Class win32_process #List of All Services Get-WmiObject -Class win32_Service #List of Installed Software Get-WmiObject -Class win32_Product |