Facebook
From rayenn, 2 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 308
  1. Get-ADComputer -Filter {(OperatingSystem -like "Windows Server*") -and (Enabled -eq $true)} -Properties Name,OperatingSystem | Select-Object Name,OperatingSystem | Export-Csv -Path C:\Path\To\ExportedServers.csv -NoTypeInformation
  2.