Showing archive results for January 2016

Jan 26, 2016
Post comments count0
Post likes count0

PowerTip: Import colon-delimited file with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to import a file that uses a colon as a delimiter.  How can I use Windows PowerShell to import a file that is delimited with a colon instead of a comma?  Use the Import-CSV cmdlet and specify the colon as the delimiter, for example: import-csv -Path C:\fso\applog.csv -Delimiter '...

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

Announcing the 2015 Honorary Scripting Guys

Doctor Scripto
Doctor Scripto

Summary: The Honorary Scripting Guys for 2015 are announced in this blog post. Microsoft Scripting Guy, Ed Wilson, is here. I have been pretty busy—I missed work because of my ear surgery and the holidays, so I have enlisted the help of the Scripting Wife, Teresa Wilson, to write this post to announce the 2015 Honorary Scripting Guys. I gave her t...

Scripting Guy!Windows PowerShellguest blogger
Jan 25, 2016
Post comments count0
Post likes count1

PowerTip: Find running services with PowerShell

mredwilson
mredwilson

Summary: Use Windows PowerShell to find running services.  How can I use Windows PowerShell to quickly produce a sortable list of running services on my computer?  Use the Get-Service cmdlet to return the services, and the Out-GridView to produce a sortable list: gsv | ogv Note   gsv is an alias for Get-Service, and ogv is an alias for Out-GridVie...

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

Introducing the top five Hey, Scripting Guy! Blog posts in 2015

mredwilson
mredwilson

Summary: See which Hey, Scripting Guy! Blog posts were the top five in 2015.Today I feature Honorary Scripting Guy and Windows PowerShell MVP, Teresa Wilson, aka The Scripting Wife. Take it away Teresa…Hello everyone, with over 700 new posts a year on the Hey, Scripting Guy! Blog, the number one thing I hear at conferences and user group mee...

Scripting Guy!Windows PowerShellguest blogger
Jan 24, 2016
Post comments count0
Post likes count0

PowerTip: Find disk status with PowerShell and Windows 10

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell in Windows 10 to find disk status.  How can I use Window PowerShell in Windows 10 to check the status information (such as the health status,            operational status, and if the disks are offline or read-only) on multiple disks?  Use the Get-DiskStorageNodeView ...

Scripting Guy!Windows PowerShellPowerTip