Showing archive results for September 2014

Sep 5, 2014
Post comments count0
Post likes count0

PowerTip: Find How Many Days until PowerShell Summit Europe 2014

Doctor Scripto

Summary: Use Windows PowerShell to find how many days until Windows PowerShell Summit Europe in Amsterdam.  How can I use Windows PowerShell to help me find how many days until the Windows PowerShell Summit            Europe 2014 in Amsterdam?  Use the New-TimeSpan cmdlet, and use Get-Date...

Scripting Guy!Windows PowerShellPowerTip
Sep 5, 2014
Post comments count0
Post likes count0

PowerShell Summit Europe 2014 in Amsterdam

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about the Windows PowerShell Summit Europe in Amsterdam. Microsoft Scripting Guy, Ed Wilson, is here. It is nearly here...just a few weeks actually. And unbelievably, there are still a few tickets left.  I am talking about the Windows PowerShell Summit Europe 2014 in Amsterdam. This is an...

Scripting Guy!Windows PowerShellcommunity
Sep 4, 2014
Post comments count0
Post likes count0

PowerTip: Use Complete Name for PowerShell Cmdlet

Doctor Scripto

Summary: Use the complete name for a Windows PowerShell cmdlet.  How can I ensure that I use the correct cmdlet in my Windows PowerShell session if I think             there might be more than one with the same name?  Use the complete name of the cmdlet—this includes the module name and the cmdlet name....

Scripting Guy!Windows PowerShellPowerTip
Sep 4, 2014
Post comments count1
Post likes count0

PowerShell Naming Conflicts

Doctor Scripto

Summary: Learn how to handle naming conflicts for Windows PowerShell cmdlets.  Hey, Scripting Guy! My Windows PowerShell installation is completely hosted on my laptop. In fact, I tried to uninstall and reinstall Windows PowerShell, but that did not work. I really do not want to have to pave my laptop. I download this module from the Internet....

Scripting Guy!Windows PowerShellscripting techniques
Sep 3, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Copy Array

Doctor Scripto

Summary: Use Windows PowerShell to copy an array.  How can I use Windows PowerShell to copy the contents of one array over another array?  One way to do this is to use the Copy static method from the System.Array .NET Framework class, for example: PS C:> $a = 1,2,3,4,5 PS C:> $b = 6,7,8,9,10 PS C:> [array]::copy($a,$b,5...

Scripting Guy!Windows PowerShellPowerTip