Entries from July 2008 ↓

Verbose, Parameter

PowerShell Verbose Parameter

Some cmdlets can provide verbose data. This is disabled by default but can be enabled by using the -Verbose parameter. This can be useful if you want to log an action or troubleshoot your scripts.
Continue reading →

OutBuffer, Parameter

PowerShell OutBuffer Parameter

The OutBuffer parameter determines how many objects will be buffered before calling the next cmdlet in the pipeline.

Instead of typing out -OutBuffer you can use -ob for short.
Continue reading →