Showing results for November 2013 - Page 8 of 12 - Scripting Blog [archived]

Nov 12, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell Cmdlet to Report CredSSP

Doctor Scripto
Doctor Scripto

Summary: Use a Windows PowerShell cmdlet to find the status of CredSSP.  How can I use Windows PowerShell 4.0 on my laptop running Windows 8.1 to find if WinRM is configured for CredSSP?  Use the Get-WSManCredSSP cmdlet: Get-WSManCredSSP

Scripting Guy!Windows PowerShellPowerTip
Nov 12, 2013
Post comments count0
Post likes count0

Combine Automation Tasks by Using PowerShell Objects

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell objects to combine output from multiple WMI classes. Microsoft Scripting Guy, Ed Wilson, is here. I registered for Windows PowerShell Saturday #007, which will be held in Charlotte, NC. I am going to be presenting one or two talks (now I am scheduled for two talks, bu...

Scripting Guy!Windows PowerShellscripting techniques
Nov 11, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Format Dates

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to format dates. How can I discover the formats that are available to use in Windows PowerShell when I format date and time information? One way is to keep this script handy and run it when you have a date formatting issue to output common formats:"d ShortDatePattern    &nbs...

Windows PowerShellPowerTipguest blogger
Nov 11, 2013
Post comments count0
Post likes count0

The Admin’s First Steps: Capacity Planning Part 2

Doctor Scripto
Doctor Scripto

Summary: Richard Siddaway talks about using Windows PowerShell to store data for capacity planning.  Hey, Scripting Guy! I’ve just starting learning PowerShell and I understand how to use it as a scripting language and shell. I’ve been told to start performing capacity planning for my servers, and I am wondering how I can use Windo...

Scripting Guy!Windows PowerShellscripting techniques
Nov 10, 2013
Post comments count0
Post likes count0

PowerTip: Back-to-Basics Math Class

Doctor Scripto
Doctor Scripto

Summary: Learn how to find Windows PowerShell math methods.  How can I use Windows PowerShell to find math methods so I can perform some mathematical calculations?  Use the [math] type accelerator, pipe it to the Get-Member cmdlet, and use the –Static operator: [math] | get-member -Static

Scripting Guy!Windows PowerShellPowerTip