Windows PowerShell Backtick `
Introduction To the Windows PowerShell Backtick Operator ` It has to be said that if you blink, then you will miss the ` backtick operator. However, that would be a pity, because backtick enables you to escape characters, for example the carriage return, and thus achieve word-wrap in your PowerShell …
Introduction to Windows PowerShell Get-Alias PowerShell has a whole family of Aliases. One group of these aliases provides shorthand for the regular cmdlets; instead of typing thirteen keystrokes for Get-Childitem, just use a PowerShell alias and type the three letters: gci. However, I am going to concentrate on the other group …
Windows PowerShell Get-Date Format Manipulating dates is always tricky. However, PowerShell’s Get-Date cmdlet does a wonderful job of interpreting the different international formats for day / month / year. As a result, whatever your computer’s country locale, it will be easy to calculate how many days there are to Christmas. …
PowerShell 3.0 ISE Integrated Scripting Engine (GUI) While Windows PowerShell 3.0 opens up more avenues for developers, it also brings neat improvements to the GUI version. In a nutshell the PowerShell 3’s ISE is like a deluxe version of 2.0; for example the ISE v3 has Auto-complete and a new …
Creating Windows PowerShell Functions Regular PowerShell command(s) + named parameters = Function. I see a Parameter in PowerShell as similar to a -in a DOS command. In both cases the user gets extra options for the basic command. Topics for PowerShell Parameters Benefits of Microsoft PowerShell Parameters Key Concepts for …
How PowerShell Can Display a Notification Balloon This is just a fun project to learn about PowerShell functions; in particular, how to make use of .Net objects such as Windows.Forms. Show-BalloonTip Function Planning the Show-BalloonTip Function Code for the Show-BalloonTip Function Researching Windows.Forms Properties ♣ Planning the Show-BalloonTip Function The …