Showing results for August 2012 - Page 6 of 13 - Scripting Blog [archived]

Aug 19, 2012
Post comments count0
Post likes count0

Weekend Scripter: Starting a PowerShell Saturday

Doctor Scripto
Doctor Scripto

Summary: The Scripting Wife talks about starting a Windows PowerShell Saturday event where you live, what’s involved, and how to get help. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a special blog written by none other than the Scripting Wife. Take it away Teresa… A member of the Windows PowerShell community recently as...

Scripting Guy!Windows PowerShellguest blogger
Aug 18, 2012
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Simplify Working with Random Numbers

Doctor Scripto
Doctor Scripto

Summary: Learn about using Windows PowerShell to generate random numbers.  How can I generate a random number?   a. Use the Get-Random cmdlet. b. Use the System.Random .NET Framework class, and call the next() method: ([random]5).next()  How can I generate a random number between the values of 1 and 10?   a....

Scripting Guy!Windows PowerShellPowerTip
Aug 18, 2012
Post comments count0
Post likes count0

Weekend Scripter: RC Milestone for the PowerShell Script Explorer

Doctor Scripto
Doctor Scripto

Summary: Announcing the Windows PowerShell Script Explorer RC milestone. Download it today! Microsoft Scripting Guy, Ed Wilson, is here. Today I have a major announcement to make: Microsoft Script Explorer for Windows PowerShell is now officially a release candidate (RC). This release represents a significant step toward realizing our vision for a ...

Scripting Guy!Windows PowerShellWeekend Scripter
Aug 17, 2012
Post comments count0
Post likes count0

PowerTip: Working with Alternate Credentials with WMI

Doctor Scripto
Doctor Scripto

Summary: Learn four  ways to supply alternate credentials with WMI and Windows PowerShell.  How can I supply alternate credentials for a remote WMI call when I am using the Get-WmiObject cmdlet? a. Use the credential parameter as shown here. Get-WmiObject Win32_BIOS -ComputerName Server01 -Credential (get-credential ` Domain01@...

Scripting Guy!Windows PowerShellPowerTip
Aug 17, 2012
Post comments count0
Post likes count0

Use PowerShell 3.0 to Easily Download 60 Spanned Files

Doctor Scripto
Doctor Scripto

Summary: Windows PowerShell MVP, Marco Shaw, talks about using a Windows PowerShell 3.0 cmdlet to download 60 virtual machine files from the Microsoft download site. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a guest blog from Windows PowerShell MVP, Marco Shaw. Take it away Marco… I was pretty excited when I recently saw tha...

Scripting Guy!Windows PowerShellguest blogger