database-tools

Bypassing Execution Policy

When execution policy prevents execution of PowerShell scripts, you can still execute them. There is a secret parameter called "-" . When you use...

read more

Re-Encoding ISE-Scripts

When you save scripts with the PowerShell ISE script editor, they are saved with the rather unusual "Big Endian Unicode" encoding....

read more

How Large Are My Folders?

To find out the total size of all subfolders in a directory, try this function: function Get-FolderSize($Path=$home) { $code = { ('{0:0.0}...

read more

HTML-Scraping with RegEx

To scrape valuable information from websites with PowerShell you can download the HTML code and then use regular expressions to extract what you are...

read more