0% found this document useful (0 votes)
6 views1 page

PowerShell Commands for System Info

Uploaded by

dopanara.law
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

PowerShell Commands for System Info

Uploaded by

dopanara.law
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

netstat -ano | Out-GridView

netsh wlan show profile | Out-GridView


netsh wlan show profile
netstat -ano | findstr ESTABLISHED
query user
$[Link] = "Black"
$[Link]. ForegroundColor = "Green"
schtasks /query /fo LIST /v

Clear-Host
Get-childitems
Get-ChildItem | Out-GridView
Get-Printer
Get-PrintConfiguration
Get-Process
Get-Process | Sort-Object CPU -Descending | Select-Object -First 20
Get-Process | Sort-Object -Property WorkingSet -Descending | Select-Object -First
10 | Out-GridView
Get-ComputerInfo | Out-GridView
Get-Content C:\Windows\System32\drivers\etc\hosts
Get-CimInstance Win32_StartupCommand | Select Name, Command, Location
Get-Service | Where-Object {$_.Status -eq 'Running'} | Sort-Object DisplayName
Get-EventLog -LogName Security -Newest 30
Get-EventLog -LogName Security | Where-Object {$_.EventID -eq 4624} | Select-Object
TimeGenerated, Message | Format-List
Get-EventLog -LogName Security | Where-Object {$_.EventID -eq 4624} | Select-Object
TimeGenerated, Message | more
Get-EventLog -LogName Application -Newest 10
Get-EventLog -LogName System -Newest 10
ping [Link].
ipconfig
whoami
& C:/Users/Bester/AppData/Local/Programs/Python/Python313/[Link]
"c:/Users/Bester/Desktop/from flask import Flask, render_template.py"
& C:/Users/Bester/AppData/Local/Programs/Python/Python313/[Link]
c:/Users/Bester/Desktop/python/[Link]

You might also like