SYS320 Week 9 Lab - JadenGil/Jaden-Tech-Journal GitHub Wiki
#Use the Get-WMIobject cmdlet
#Get-WMIObject -Class Win32_service | select Name, PathName, ProcessId
#Get-WMIObject -List | where { $_.Name -ilike "win32_[n-z]*"} | sort-object
#Get-WMIObject -Class Win32_Account | Get-Member
#Grabs the Net adapter info using WMI class
#Get-WMIObject -Class Win32_NetworkAdapter
#Grabs all network configuration info
#Get-WMIObject -Class Win32_NetworkAdapterConfiguration