Onsite or Remote Support
Call (519) 573-3759
get-service
get-process
Gets detailed about the network adapter installed such as name, status, speed and mac address.
get-netadapater
Restart-Computer -ComputerName "Server01", "Server02", "localhost"
This takes a few lines
$os = Get-WmiObject win32_operatingsystem $uptime = (Get-Date) - $os.ConvertToDateTime($os.LastBootUpTime) Write-Output ("Last boot: " + $os.ConvertToDateTime($os.LastBootUpTime))
Use this command to copy an entire folder to another folder. This will copy the folder and all the sub folder/files. The -verbose command will display the results to the console.
copy-item E:\WindowsImageBackup\exchange -destination \\server1\Backups\Exchange -recurse -verbose