Showing results for August 2014 - Page 12 of 13 - Scripting Blog [archived]

Aug 4, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to List Time Zones Defined on System

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to list time zones that are defined on a system.  How can I use Windows PowerShell to produce a list of all the time zones that are defined on my system?  Use the System.TimeZone .NET Framework class, and call the GetTimeZones static method: [System.TimeZoneInfo]::GetSystemTimeZones()

Scripting Guy!Windows PowerShellPowerTip
Aug 4, 2014
Post comments count0
Post likes count0

Use PowerShell to Create Bulk Users for Office 365

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about creating bulk users in Office 365. Microsoft Scripting Guy, Ed Wilson, is here. This morning I spent a bit of time talking to my mentee. It is really cool, because yesterday I spent some time talking to my mentor. So it is sort of like the circle completing itself. I have been getting quite...

Scripting Guy!Windows PowerShellOffice 365
Aug 3, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Display Square Root of Number

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to display the square root of a number.  How can I figure out the square root of a number when I am writing a Windows PowerShell script?  Use the Sqrt static method from the System.Math class. This example obtains the square root of the number 9: [math]::Sqrt(9)

Scripting Guy!Windows PowerShellPowerTip
Aug 3, 2014
Post comments count0
Post likes count0

Weekend Scripter: A Hidden Gem in the PowerShell Ocean: Get-PSCallStack

Doctor Scripto
Doctor Scripto

Summary: Microsoft PowerShell MVP, Jeff Wouters, talks about using the Get-PSCallStack Windows PowerShell cmdlet. Microsoft Scripting Guy, Ed Wilson, is here. Today Windows PowerShell MVP, Jeff Wouters, is back with another guest blog post. To read more of Jeff's previous guest posts, see these Hey, Scripting Guy! Blog posts. And now, Jeff... ...

Scripting Guy!Windows PowerShellscripting techniques
Aug 2, 2014
Post comments count0
Post likes count0

PowerTip: Wire Up PowerShell GUI Buttons

Doctor Scripto
Doctor Scripto

Summary: Learn to use the OK and Cancel buttons in a Windows PowerShell GUI.  How can I use Windows PowerShell to get my GUI’s OK and Cancel buttons to trigger when            the user presses ENTER or Escape?  Assign the OK and Cancel button objects to your form&...

Scripting Guy!Windows PowerShellPowerTip