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
Explore all the products and find the right solution for your business
Explore all the products and find the right solution for your business
Explore all the products and find the right solution for your business
by ps1Mar 4, 2009
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