Showing archive results for January 2016

Jan 14, 2016
Post comments count0
Post likes count0

PowerTip: Find PowerShell Cmdlets that Work with CSVs

Doctor Scripto

Summary: Learn how to find Windows PowerShell cmdlets that work with CSVs.  How can I find Windows PowerShell cmdlets that I can use to work with a CSV file?  Use the Get-Command cmdlet and look for cmdlets that have a noun of CSV: Get-Command -Noun csv*

Scripting Guy!Windows PowerShellPowerTip
Jan 14, 2016
Post comments count0
Post likes count0

Use PowerShell to Work with Data from MS OMS

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to parse data obtained from Microsoft Operations Management Suite. Microsoft Scripting Guy, Ed Wilson, is here. One of the things I have been working on a lot the past month is the new Microsoft Operations Management Suite Blog. For one thing, it is on the new bloggin...

Scripting Guy!Windows PowerShellscripting techniques
Jan 13, 2016
Post comments count0
Post likes count0

PowerTip: Find Help about PowerShell Pipelines

mredwilson

Summary: Learn how to find Windows PowerShell Help about pipelines.  How can I find information so that I can read about Windows PowerShell pipelines?  Use the Get-Help cmdlet, specify the category of HelpFile, then type the word pipeline, for example: Get-Help -Category HelpFile pipeline

Scripting Guy!Windows PowerShellPowerTip
Jan 12, 2016
Post comments count0
Post likes count0

Incorporating Pipelined Input into PowerShell Functions

mredwilson

Summary: Microsoft MVP, Adam Bertram, talks about accepting pipelined input into Windows PowerShell advanced functions. Microsoft Scripting Guy, Ed Wilson, is here. Today Microsoft MVP, Adam Bertram, returns to talk about accepting pipeline input into advanced Windows PowerShell functions. Note   This is the second post in a series. ...

Jan 12, 2016
Post comments count0
Post likes count0

PowerTip: Find List of PowerShell Functions

mredwilson

Summary: Easily find a list of Windows PowerShell functions.  How can I produce a list of the Windows PowerShell functions that are currently available?  Use the Function PS Drive and the Get-ChildItem cmdlet: Get-ChildItem function:

Scripting Guy!Windows PowerShellPowerTip