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...
Bulk-Creating PDF Files from Word
PowerTip of the Day, from PowerShell.com: To convert a whole folder full of MS Word documents to PDF, here's a function that might...
Retrieve Exchange Rates using PowerShell
PowerTip of the Day, from PowerShell.com: If you need up-to-date exchange rates, try loading the rates via XML from the European Central Bank. This...
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...
Finding Driver Information using PowerShell
PowerTip of the Day, from PowerShell.com: driverquery.exe returns all kinds of information about installed drivers, but the information seems a bit useless at first:...
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...
Enumerating Registry Keys
Enumerating Registry Keys To enumerate all subkeys in a Registry key, you might be using a line like this: PS> Dir HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall | Select-Object...