Showing archive results for December 2012

Dec 11, 2012
Post comments count0
Post likes count0

PowerTip: Query Running Scheduled Tasks

Doctor Scripto

Summary: Use Windows PowerShell 3.0 to query running scheduled tasks.  How do I query “running” scheduled tasks on my computer?  Charlotte PowerShell User Group member Brian Wilhite says the following: With Windows PowerShell 3.0, we have a ton of new cmdlets, and we’ll see one of those cmdlets here. ...

Scripting Guy!Windows PowerShellPowerTip
Dec 11, 2012
Post comments count0
Post likes count0

Use PowerShell to Add Two Pieces of CSV Data Together

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about adding together two pieces of CSV information and making the rows wider, not longer. Hey, Scripting Guy! I have a problem at work. Our company is in the midst of massive acquisitions and mergers. I mean every few weeks our network completely changes, and we have to absorb a new domain or for...

Scripting Guy!Windows PowerShellscripting techniques
Dec 10, 2012
Post comments count1
Post likes count0

PowerTip: Find the path to Exchange mailbox database

Doctor Scripto

Summary:  Use Windows PowerShell to find the path to the Exchange mailbox databases. How can I find the path to the Exchange mailbox database on my Exchange Server? Use the Get-MailboxDatabase cmdlet, and select the EdbFilePath property, as shown here. Get-MailboxDatabase -Status | select edbfilepath  

Scripting Guy!Windows PowerShellPowerTip
Dec 10, 2012
Post comments count0
Post likes count0

New User Exchange & Lync Settings

Doctor Scripto

Summary: Guest blogger Tim Bolton discusses a script to create new Exchange uses and Lync settings.  Microsoft Scripting Guy, Ed Wilson, is here. Today we have a special treat – a cool Windows PowerShell script to create new Exchange users and the associated Lync settings. Tim has written a very popular guest blog article earlier this ye...

Scripting Guy!Windows PowerShellguest blogger
Dec 9, 2012
Post comments count0
Post likes count0

PowerTip: Finding Out the Number of Words in the About_ conceptual Help Files

Doctor Scripto

Summary: Learn how to find out the number of words in the Help About_ conceptual files.  How can I determine how many words are in the Help About_ conceptual files?  Use the Get-Help cmdlet to find all of the About_ conceptual files. Then, pipe the results to a Foreach-object cmdlet. Inside the process script block, ca...

Scripting Guy!Windows PowerShellPowerTip