Showing results for October 2012 - Page 3 of 13 - Scripting Blog [archived]

Oct 26, 2012
0
0

PowerTip: Easily Load all Windows PowerShell Modules

Doctor Scripto
Doctor Scripto

Summary: See how to load all Windows PowerShell modules into a current session.  How can I load all Windows PowerShell modules I have on my system?            Use the Get-Module cmdlet with the ListAvailable switch, and pipe the results to the Import-Module cmdlet.       &nb...

Scripting Guy!Windows PowerShellPowerTip
Oct 26, 2012
0
0

Use PowerShell to Create a Bootable USB Drive

Doctor Scripto
Doctor Scripto

Summary: Microsoft PFE Jason Walker talks about creating a Windows PowerShell script to create a bootable USB drive. Microsoft Scripting Guy, Ed Wilson, is here. Today, The Scripting Wife and others will be heading to Atlanta for the PowerShell Saturday #003 event that takes place tomorrow. Sadly, I woke up with no voice and a stuffy head...

Scripting Guy!Windows PowerShellguest blogger
Oct 25, 2012
0
0

PowerTip: Use the Force Switch in PowerShell

Doctor Scripto
Doctor Scripto

Summary: Many times Windows PowerShell cmdlets display additional information when using the Force switch.  How can I display hidden and system files when using Windows PowerShell?           Use the Get-Item or Get-ChildItem cmdlet and use the Force switch—this works w...

Scripting Guy!Windows PowerShellPowerTip
Oct 25, 2012
0
0

PowerShell Fundamentals for Beginners

Doctor Scripto
Doctor Scripto

Summary: Mike Robbins, guest blogger, talks about Windows PowerShell fundamentals for beginners. Microsoft Scripting Guy, Ed Wilson, is here. We are getting closer by the minute to Windows PowerShell Saturday #003 in Atlanta—just two more days, and you, too, can listen to our guest blogger at the event. For today, he talks about Windows Power...

Scripting Guy!Windows PowerShellguest blogger
Oct 24, 2012
0
0

PowerTip: Replacing a String Inside Another String with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn two different techniques to replace strings inside another string by using Windows PowerShell.  I have the following string: this`"is a string. I want to remove the quotation mark (") and replace it with nothing—no space, just nothing. I want the results to look like this: thisis a string. The backtick (`) is use...

Scripting Guy!Windows PowerShellPowerTip