You need to sort a text file, maybe a list of servers or names? Here is how:
$file = $homeserverlist.txt
Get-Content $file | Sort-Object | Set-Content $file
You need to sort a text file, maybe a list of servers or names? Here is how:
$file = $homeserverlist.txt
Get-Content $file | Sort-Object | Set-Content $file