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 ...
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...
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 ...
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?
$...
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 ...