Get-Process
Get-Service
Get-ComputerInfo
(get-date) - (gcim Win32_OperatingSystem).LastBootUpTime
Get-ChildItem Env:
$PSVersionTable
Get-Location
Get-ChildItem
New-Item -ItemType Directory -Path "C:\Test"
New-Item -ItemType File -Path "C:\Test\file.txt"
Copy-Item "C:\a.txt" "C:\Backup\"
Move-Item "C:\a.txt" "C:\Backup\"
Remove-Item "C:\a.txt"
Get-Content "C:\a.txt"
Get-NetIPAddress
Get-NetAdapter
Get-NetTCPConnection
Get-DnsClientCache
Test-Connection google.com
Get-NetRoute
Get-LocalUser
Get-LocalGroup
whoami
whoami /priv
whoami /groups
net user
Get-ScheduledTask
Get-WinEvent -LogName System -MaxEvents 20
Get-Service | Sort-Object Status
Stop-Service -Name spooler
Start-Service -Name spooler
Get-CimInstance Win32_PnPSignedDriver
Get-Help Get-Process
Get-Command
Get-History
Clear-Host
pwd
.\script.ps1
Get-Module -ListAvailable
exit