Showing category results for Hey Scripting Guy!

Jun 23, 2016
Post comments count0
Post likes count0

Build a hexadecimal clock in PowerShell – Part 4

Doctor Scripto

Summary: Use PowerShell to navigate the neutral zone. Honorary Scripting Guy, Sean Kearney, is here today to continue forth (not COBOL nor even Visual BASIC) into our silly yet fun quest to build a hexadecimal clock by using the PowerShell console. It does seem silly, doesn’t it? Yet, consider some of the things that we’ve learned in PowerShell d...

Windows PowerShellguest bloggerSean Kearney
Jun 22, 2016
Post comments count0
Post likes count0

PowerTip: Set a default value in a switch statement

Doctor Scripto

Summary: Use the default field in switch statement to have an assumed value. I was playing with Select-String and would like to have it default to a value if none was trapped for. How can I do that? Just use the Default keyword, and you can have an assumed value in the script block. In the following example, the switch is listening for the $DogS...

Windows PowerShellPowerTipguest blogger
Jun 22, 2016
Post comments count0
Post likes count0

Build a hexadecimal clock in PowerShell – Part 3

Doctor Scripto

Summary: Use Select-String in PowerShell to identify data and match it to an array. Honorary Scripting Guy, Sean Kearney, is here today to play more with our funky, nerdy, cool hexadecimal clock. Yesterday we built out a small function named Get-HexTime to give us the current time that displays hex digits instead of decimal for hours, minutes, an...

Windows PowerShellguest bloggerSean Kearney
Jun 21, 2016
Post comments count0
Post likes count0

Build a hexadecimal clock in PowerShell – Part 2

Doctor Scripto

Summary: Manipulate string data from Get-Date in PowerShell. Honorary Scripting Guy, Sean Kearney, is here today to have a little more fun with our silly project to build a hexadecimal clock in the PowerShell console. Well, after all, who said scripting wasn’t allowed to be fun? That’s usually how I learn, by playing about! Yesterday, we defined...

Windows PowerShellguest bloggerSean Kearney
Jun 20, 2016
Post comments count0
Post likes count0

PowerTip: Extend a string array in PowerShell

Doctor Scripto

Summary: Use the built in features of PowerShell to easily add new Element to a string array. I created an array of strings in PowerShell, but I need to add to it. Is there a simple way to do this? Absolutely. Just use += to add an element to your string array. In the following example, we add a new element to the array that’s named $HSG

Windows PowerShellPowerTipguest blogger