Showing archive results for February 2013

Feb 18, 2013
Post comments count0
Post likes count0

PowerTip: Keep Output from Scrolling Off the PowerShell Console

Doctor Scripto
Doctor Scripto

Summary: Learn how to keep content from scrolling off the Windows PowerShell console.  How can I keep content from scrolling off the Windows PowerShell console and, instead, display content a page at a time?  Pipe the results to the More function to display content in the Windows PowerShell console one page at a time. Keep ...

Scripting Guy!Windows PowerShellPowerTip
Feb 18, 2013
Post comments count0
Post likes count0

Use PowerShell and a Web Service to Find Holidays

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, shows how to use Windows PowerShell to find the date for a specific holiday by using a web service.  Hey, Scripting Guy!  I have a problem. I guess you hear that a lot. Anyway, my boss has given me what I think is an impossible task—to find the holidays we have coming up this year. Not ju...

Scripting Guy!Windows PowerShellusing the Internet
Feb 17, 2013
Post comments count0
Post likes count0

PowerTip: Find Your Personal PowerShell Aliases

Doctor Scripto
Doctor Scripto

Summary: Learn how to find your personally created Windows PowerShell aliases.  I need a way to identify personally created Windows PowerShell aliases. How can I easily do this?  When creating a custom alias, specify the Description property. You can then search for aliases that use that description, as shown here. New-Alia...

Scripting Guy!Windows PowerShellPowerTip
Feb 17, 2013
Post comments count0
Post likes count0

Weekend Scripter: Use PowerShell for ADM Cleanup—The Exciting Conclusion

Doctor Scripto
Doctor Scripto

Summary: Two Microsoft PFEs conclude their three-part series on cleaning up old ADM files from AD DS. Microsoft Scripting Guy, Ed Wilson, is here. Today, we have the conclusion of a three-part series written by PFEs Mark Morowczynski and Tom Moser. Be sure to read the blog for Friday and Saturday first if you have not already done so. Mark Mor...

Scripting Guy!Windows PowerShellguest blogger
Feb 16, 2013
Post comments count0
Post likes count0

PowerTip: Find the Start Mode and Startup Account for Services

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find the start mode and startup account used by services.  How can I use Windows PowerShell to find the startup account and the start mode of services on my system?  You need to use WMI and query the Win32_Service class. With Windows PowerShell 3.0, use the Get-CimInstance cmdlet, as shown...

Scripting Guy!Windows PowerShellPowerTip