You will need to have RSAT (Remote Server Administration Tools) installed For Windows 7 and above. This enables your local machine to remotely manage Windows Servers and Services via the usual MMC GUI’s (eg AD Users and Computers) and (most importantly) includes PowerShell modules in order to be able to do so as well. Once installed…
Category: Windows
Windows Administrator Must Have Powershell Commands
This is a quick blog post about some useful windows powershell commands an administrator will find useful on a day to day basis. Share the love Command What it Does? $psversiontable Which version of powershell and I running Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass Allow execution of commands Get-Printer | select Name, DriverName, PortName | Export-Csv…
Top 10 PowerShell commands every Windows admin should know – VirtuallyThatGuy
This is a useful cmdlets every SA should have in their armoury for starting off their automation jorneny 1: Get-Help The first PowerShell cmdlet every administrator should learn is Get-Help. You can use this command to get help with any other command. For example, if you want to know how the Get-Process command works, you…