PowerTip of the Day, from PowerShell.com: eed a quick message box to display something or ask a question? Fortunately, PowerShell can access old...
Spying on Parameters in Powershell
PowerTip of the Day, from PowerShell.com: Your own PowerShell functions can have the same sophisticated parameters, parameter types and parameter sets that you...
Sending Text to Clipboard Everywhere using Powershell
In a previous tip you learned how to use clip.exe to send results to the clipboard. But what if you don't have clip.exe (let's say...
Reading the Clipboard using Powershell
PowerTip of the Day, from PowerShell.com: What if you wanted to paste information from the clipboard? No sweat, here is a Get-Clipboard function...
Creating Your Own Get-Driver Tool using PowerShell
PowerTip of the Day, from PowerShell.com: Creating Your Own Get-Driver Tool Some code snippets are really valuable, so you should turn them into...
Finding More Driver Information using PowerShell
PowerTip of the Day, from PowerShell.com: Finding More Driver Information In a previous tip you learned how you can convert raw CSV data...
Creating Multiline Strings
PowerTip of the Day, from PowerShell.com: You probably know what this line produces: 'Hello' * 12 Right, you get 12 times the string you...
Adding New Lines to Strings
PowerTip of the Day, from PowerShell.com: In a previous tip you learned that text arrays can easily be multiplied. The same is true...
Writing Registry Key Default Values
PowerTip of the Day, from PowerShell.com: If you need to set the default value for a Registry Key, you can use either of...
Asking for Credentials
PowerTip of the Day, from PowerShell.com: When you write functions that accept credentials as parameters, add a transformation attribute! This way, the user can...