Showing archive results for 2016

Jan 15, 2016
Post comments count0
Post likes count0

Working with Windows Startup Processes and PowerShell

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to examine startup processes in Windows 10. Microsoft Scripting Guy, Ed Wilson, is here. This morning I am playing with the Xbox One Smart Glass app on Windows 10. I have used the app since it was in beta, and I just got my Xbox One. But I have started using the ...

Scripting Guy!Windows PowerShellWMI
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. ...