PowerShell 2.0 – One Cmdlet at a Time

How could I have done this in PowerShell 1.0? The closest you could probably get would be Export-CSV to give you the data in a CSV file, which could then be manipulated in a similar fashion to Out-GridView using Excel. Get-Service | Export-Csv C:\Scripts\Services.csv –NoTypeInformation The CSV file can be opened in Excel using PowerShell: ................
................