Showing tag results for scripting techniques

Nov 3, 2015
Post comments count0
Post likes count0

Long String Running

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using a compound string command. Microsoft Scripting Guy, Ed Wilson, is here. The other day, the Scripting Wife and I headed to Nashville for a couple of speaking engagements. We decided to head through Alabama instead of going through Atlanta for a couple of reasons. We have never driven the...

Scripting Guy!Windows PowerShellscripting techniques
Nov 2, 2015
Post comments count0
Post likes count0

Creating Pop-ups by Using PowerShell

Doctor Scripto

Summary: Guest blogger and PowerShell MVP, Chrissy LeMaire, talks about creating pop-ups with Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. Welcome today a brand new guest blogger, Chrissy LeMaire. Chrissy is a systems engineer and PowerShell MVP. Always an avid scripter, she attended the Monad session at the Microsoft Profe...

Scripting Guy!Windows PowerShellscripting techniques
Oct 8, 2015
Post comments count0
Post likes count0

Playing with JSON and PowerShell

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about playing with JSON and Windows PowerShell 5.0. Microsoft Scripting Guy, Ed Wilson, is here. The Scripting Wife has an updated shopping list. It includes a Microsoft Band 2 and a Surface Pro 4. The launch was a mouthwatering event and really well done. One of the cool cmdlets in ...

Scripting Guy!Windows PowerShellscripting techniques
Oct 7, 2015
Post comments count0
Post likes count0

PowerTip: Concatenate String Array with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to concatenate elements of a array.  How can I use Windows PowerShell to concatenate the elements of a string array?  Use the static Concat method from the String class, for example: $a = "string a" $b = "string b" $arr = @($a,$b) [string]::Concat($arr)

Scripting Guy!Windows PowerShellscripting techniques
Oct 7, 2015
Post comments count0
Post likes count0

Dude, a String Is a String in PowerShell

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using string methods to determine null or empty in Windows PowerShell.  Hey, Scripting Guy! I have a problem with a script. It is used to write data to another application, but sometimes the variables in it are empty. I have tried to detect this by checking to see if the variable is equa...

Scripting Guy!Windows PowerShellscripting techniques