Showing archive results for October 2012

Oct 11, 2012
Post comments count0
Post likes count1

PowerTip: Write PowerShell Output in Color Without Using Write-Host

Doctor Scripto

Summary: Write colorized output to the Windows PowerShell console without using the Write-Host cmdlet.  How can you write output to the Windows PowerShell console without using the Write-Host cmdlet?  Set ForegroundColor to a different color by using $host.Ui.RawUi, and then use the Write-Output&nbs...

Scripting Guy!Windows PowerShellPowerTip
Oct 11, 2012
Post comments count0
Post likes count0

Using Categories to Help Search PowerShell Help

Doctor Scripto

Summary: Learn how to use advanced features in the Windows PowerShell Get-Help cmdlet to quickly find PowerShell Help information. Microsoft Scripting Guy, Ed Wilson, is here. It seems that my schedule keeps getting fuller. Tonight is the Windows PowerShell User Group in Charlotte. We will be having a script club, so it should be a really cool lear...

Scripting Guy!Windows PowerShellgetting started
Oct 10, 2012
Post comments count0
Post likes count0

Use PowerShell 3.0 to Filter Files Based on Advanced Attributes

Doctor Scripto

Summary: Learn how to use Windows PowerShell 3.0 for file attribute filtering. Microsoft Scripting Guy, Ed Wilson, is here. The Scripting Wife and I will be at the Copenhagen Windows PowerShell User Group in a about a month. Teresa has been corresponding with Windows PowerShell MVP, Claus T. Nielsen, about the agenda for the meeting. It is official...

Scripting Guy!Windows PowerShellstorage
Oct 10, 2012
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Check Status of Windows Error Reporting

Doctor Scripto

Summary: Use the Get-WindowsErrorReporting cmdlet to check the status of Windows Error Reporting.  How do I check the status of Windows Error Reporting on my computer?  Use the Get-WindowsErrorReporting cmdlet from the WindowsErrorReporting module: PS C:\> Get-WindowsErrorReporting Enabled

Scripting Guy!Windows PowerShellPowerTip
Oct 9, 2012
Post comments count0
Post likes count0

PowerTip: Easily Track Which Modules Update PowerShell Help

mredwilson

Summary: See how to track which Windows PowerShell modules update Help.     How can you easily track which modules update Help?  Use the Verbose parameter when calling the Update-Help cmdlet, and then redirect the verbose stream to a text file: Update-Help -module * -force -verbose 4>>c:\fso\helpupdate.txt  

Scripting Guy!Windows PowerShellPowerTip