Automating the world one-liner at a time…
Here is a pointer to a good demonstration of PowerShell's [SWITCH] datatype:
http://msgoodies.blogspot.com/2006/12/negating-powershell-switch-parameters.html
Jeffrey Snover [MSFT]Windows PowerShell/MMC ArchitectVisit the Windows PowerShell Team blog at: http://blogs.msdn.com/PowerShellVisit the Windows PowerShell ScriptCenter at: http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx
PS D:\corp\corp document> get-command|select-string "object"
Compare-Object
ForEach-Object
Get-WmiObject
Group-Object
Measure-Object
New-Object
Select-Object
Sort-Object
Tee-Object
Where-Object
PS D:\corp\corp document> get-command|select-string "jion"
PS D:\corp\corp document> get-command|select-string "path"
Convert-Path
Join-Path
Resolve-Path
Split-Path
Test-Path
PS D:\corp\corp document> get-command|select-string "write"
Write-Debug
Write-Error
Write-Host
Write-Output
Write-Progress
Write-Verbose
Write-Warning
PS D:\corp\corp document>
where are the command of 'write-object' and 'join-object' ?
win2003+sp1