
Unlock automation on Windows! We'll start with PowerShell basics, showing you how to write, execute, and expand simple scripts to display messages, get dates, list processes, and manage services. Learn to automate tasks efficiently on Windows Server 2022.
Commands:
.\WelcomeScript.ps1
Get-Date
Get-Process
Get-Service | Where-Object { $_.Status -eq 'Running' }
Get-WmiObject -Class Win32_Product | Select-Object Name,Version
Get-NetIPAddress