Showing archive results for August 2013

Aug 17, 2013
Post comments count0
Post likes count0

Weekend Scripter: Understanding PowerShell in Windows 7

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about understanding Windows PowerShell in Windows 7. Microsoft Scripting Guy, Ed Wilson, is here. This morning I am sipping a cup of English Breakfast tea, with goji berries, lemon grass, and cinnamon. The taste is quite nice, and because the goji berries are sweet, I do not need to add any sugar o...

Scripting Guy!Windows PowerShellscripting techniques
Aug 16, 2013
Post comments count0
Post likes count0

PowerTip: Find Case-Specific Strings by Using PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to find case-specific strings.  How can I find a particular, case-sensitive word in a string?  Use Select-String and specify the –CaseSensitive switch: "Hey Scripting Guy","hey scripting guy" | Select-String -Pattern 'hey' -CaseSensitive

Scripting Guy!Windows PowerShellPowerTip
Aug 16, 2013
Post comments count0
Post likes count0

Use PowerShell to Customize Server Manager

Doctor Scripto

Summary: Guest blogger, Rolf Masuch, talks about using Windows PowerShell to customize Server Manager. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a guest post written by Rolf Masuch, who is a senior consultant for Microsoft in Germany. Today is Rolf’s birthday, and he wanted to start the celebration off right by sharing a coup...

Scripting Guy!Windows PowerShellguest blogger
Aug 15, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Show Approved Verbs Group

Doctor Scripto

Summary: Use Windows PowerShell to show the group of approved Windows PowerShell verbs.  How can I find the grouping information for a couple of approved verbs that I want to use to name my advanced functions?  Use the Get-Verb function, and supply an array of verbs to the function: get-verb ping, receive  

Scripting Guy!Windows PowerShellPowerTip
Aug 15, 2013
Post comments count0
Post likes count0

Use PowerShell to Log Changes to AD DS Attributes

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to log changes made to Active Directory Domain Services attribute values.  Hey, Scripting Guy! We are in the process of merging a couple of resource domains, and we need to modify some user accounts prior to the move. I have been tasked with making the changes, a...

Scripting Guy!Windows PowerShellActive Directory