Showing results for July 2015 - Page 12 of 14 - Scripting Blog [archived]

Jul 5, 2015
0
0

Weekend Scripter: When to Write a PowerShell Script

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about when to write a Windows PowerShell script. Microsoft Scripting Guy, Ed Wilson, is here. I am enjoying a beautiful sunny morning in central Florida. The sun is shining, there is hardly a cloud in the sky, and a gentle ocean breeze tickles my skin. I am sitting outside under a beautiful, severa...

Scripting Guy!Windows PowerShellWeekend Scripter
Jul 4, 2015
0
0

PowerTip: Multiply Value in Variable and Store Results

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to multiply the value stored in a variable and store the results. How can I use Windows PowerShell to multiply the value of a variable and store the results in the same variable? Use the *= operator, for example:PS C:> $a = 2PS C:> $a *= 3PS C:> $a6

Scripting Guy!Windows PowerShellPowerTip
Jul 4, 2015
0
0

PowerTip: Multiply Value in Variable and Store Results

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to multiply the value stored in a variable and store the results.  How can I use Windows PowerShell to multiply the value of a variable and store the results in the same variable?  Use the *= operator, for example: PS C:\> $a = 2 PS C:\> $a *= 3 PS C:\> $a 6

Jul 4, 2015
0
0

Weekend Scripter: Welcome to the PowerShell Information Stream

Doctor Scripto
Doctor Scripto

Summary: Learn about the Windows PowerShell information stream in this guest post by June Blender. Microsoft Scripting Guy, Ed Wilson, is here. Today we have another guest blog post by Honorary Scripting Guy and Sapien technical evangelist, June Blender. Take it away June... Note  This post is updated on August 3, 2015 for the Windows Pow...

Scripting Guy!Windows PowerShellguest blogger
Jul 3, 2015
0
0

PowerTip: Use PowerShell to Create OU in Active Directory

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to easily create an organizational unit in Active Directory.  How can I use Windows PowerShell to create a new organizational unit (OU) in Active Directory?  Use the New-ADOrganizationalUnit cmdlet, and specify the name and path. A description is optional.            ...

Scripting Guy!Windows PowerShellPowerTip