- Changed most
Write-Host
toWrite-Verbose
to be more like standard cmdlets - Changed
Write-Host
for the host not found to be aWrite-Error
- Changed
Deduplicate
andExcludeExpired
toswitch
instead ofboolean
to be more like standard cmdlets - Changed
Write-Output
inEnd { }
into areturn
- Moved return from
End { }
to theProceess { }
loop so it should be able to return partial values if something goes wrong - Added
Write-Warning
to non-terminating error messages
- Initial release