Showing results for December 2013 - Page 11 of 14 - Scripting Blog [archived]

Dec 8, 2013
Post comments count0
Post likes count0

Weekend Scripter: Who are the Administrators?

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Bill Stewart, talks about using Windows PowerShell to find administrators. Microsoft Scripting Guy, Ed Wilson, is here. Hello everyone. It is the weekend, and guest blogger, Bill Stewart is going to share his time and knowledge today. Bill is a scripting guru and a moderator for the Official Scripting Guys Forum... As you kn...

Scripting Guy!Windows PowerShellguest blogger
Dec 7, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Subtract Timespans

Doctor Scripto
Doctor Scripto

Summary: Subtract timespans by using Windows PowerShell.  How can I use Windows PowerShell to subtract 2 days and 14 hours from 12 days and 1 hour to determine the amount of time left on a project?  Create two timespans using the New-Timespan cmdlet, and then subtract them from each other: (New-TimeSpan -Days 12 -Hours 1) - (New-Time...

Scripting Guy!Windows PowerShellPowerTip
Dec 7, 2013
Post comments count0
Post likes count0

Weekend Scripter: Create an HTML Server Report with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Matthew Kerfoot, talks about using Windows PowerShell to create an HTML server report. Microsoft Scripting Guy, Ed Wilson, is here. Today I would like to welcome a new guest blogger, Matthew Kerfoot… I'm a Windows PowerShell enthusiast with strong interests in automating systems administration. I write a blog called ...

Scripting Guy!Windows PowerShellscripting techniques
Dec 6, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Display Network Adapter Bindings

Doctor Scripto
Doctor Scripto

Summary:  Use Windows PowerShell to display network adapter bindings.  How can I use Windows PowerShell in Windows 8 to display network adapter bindings?  Use the Get-NetAdapter cmdlet to retrieve your network adapter, and pipe it to Get-NetAdapterBinding: Get-NetAdapter -Name ethernet | Get-NetAdapterBinding -All...

Scripting Guy!Windows PowerShellPowerTip
Dec 6, 2013
Post comments count0
Post likes count0

Solving Office Holiday Gift-Giving Conundrums with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about a project to assign secret pals at work. He ropes one of the managers into the project. During my one-on-one last week with my manager, Adina, she mentioned doing something to help people who work from remote locations feel more like part of the team. Because I work remotely, I was all e...

Scripting Guy!Windows PowerShellscripting techniques