Showing results for August 2012 - Page 2 of 13 - Scripting Blog [archived]

Aug 29, 2012
0
0

Create, Load and Use PowerShell Modules

Doctor Scripto
Doctor Scripto

Summary: Microsoft PFE, Chris Weaver, talks about creating loading and using Windows PowerShell modules. Microsoft Scripting Guy, Ed Wilson, is here. Today Chris Weaver is going to share a preview of his presentation for Windows PowerShell Saturday on September 15 in Charlotte NC. Hope you are planning to register. Chris has been working for Micro...

Scripting Guy!Windows PowerShellscripting techniques
Aug 28, 2012
0
0

PowerTip: Use PowerShell to Help Build Paths

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to build a path to the system32 directory.  I need to build a path to the Windows\system32 directory. How can I do this?    Join-Path -path (get-item env:\windir).value -ChildPath system32

Scripting Guy!Windows PowerShellPowerTip
Aug 28, 2012
0
0

Build Your SharePoint Internet Presence with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn about using Windows PowerShell to automate SharePoint. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a guest blog by Ryan Dennis. Ryan Dennis is a senior SharePoint engineer for Information Control Corporation (ICC) in Columbus, Ohio.  Ryan is a Microsoft Certified IT Professional (MCITP) and a Microsoft Virtual Te...

Scripting Guy!Windows PowerShellSharePoint 2010
Aug 27, 2012
0
0

PowerTip: A Couple Quick PowerShell Array Tricks

Doctor Scripto
Doctor Scripto

Summary:  Learn some quick tricks for using Windows PowerShell arrays.  How can I split the following string in the $a variable? $a = "atl-ws-01,atl-ws-02,atl-ws-03,atl-ws-04"  Use the split method : $b = $a.split(",")    How do I join an array, such as the one in the $a variable shown here?  $a = "...

Scripting Guy!Windows PowerShellPowerTip
Aug 27, 2012
0
0

Three Cool PowerShell Service Tricks

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, the Microsoft Scripting Guy, talks about three cool Windows PowerShell tricks for working with services. Microsoft Scripting Guy, Ed Wilson, is here. It does not matter what ones role is, whether an Exchange Server admin, a Group Policy guru, or even an ordinary every day power user, one eventually needs to work with services. T...

Scripting Guy!Windows PowerShelloperating system