Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $list
- $list = get-wmiobject win32_product
- (Get-WmiObject win32_operatingsystem) | select caption,OSArchitecture,OSLanguage
- Get-AppvClientApplication
- Get-WmiObject win32_product | select name,version | sort name
- Get-WmiObject win32_product | where {$_.name -ilike "*app-v*" } | select name, version | ft
- Get-WmiObject win32_product | where {$_.name -ilike "*McAfee*" } | select name, version | ft
- Get-WmiObject win32_product | where {$_.name -ilike "*MOVE*" } | select name, version | ft
- Get-WmiObject win32_product | where {$_.name -ilike "*notifier*" } | select name, version | ft
- gwmi win32_userprofile | select sid,localpath,roamingpath | ft
- Get-WmiObject -Query "SELECT Label, Blocksize, Name FROM Win32_Volume WHERE FileSystem='NTFS'" -ComputerName '.' | Select-Object Name, Label, Blocksize | ft
- gwmi SoftwareLicensingProduct | where {$_.applicationid -eq "55c92734-d682-4d71-983e-d6ec3f16059f"} | where {$_.licensestatus -eq 1 } | fl *
- gwmi Win32_UserAccount -filter "LocalAccount=True" | where {$_.name -eq "Guest"} | fl *
- Get-WmiObject -Class Win32_OperatingSystem -Property DataExecutionPrevention_SupportPolicy
- Get-ItemProperty "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
- $host.Version
Advertisement
Add Comment
Please, Sign In to add comment