database-tools

Using Closures

Script blocks are dynamic by default, so variables in a script block will be evaluated each time the script block runs. By turning a script block in...

read more

Unzipping Files

Unfortunately, there is no built-in cmdlet to unzip files. There are plenty of 3rd party tools, many of which are free. If you cannot use these...

read more

BUMMER

USE mysql; SHOW FULL TABLES WHERE table_type = 'base table'; /* returns ... innodb_index_stats BASE TABLE innodb_table_stats BASE TABLE ......

read more

Renaming Object Columns

In some of our previous tips, we showed how you can turn comma-separated data returned from different console tools into rich PowerShell objects....

read more

Deleting Certificates

If you want to permanently delete a digital certificate in your certificate store, here is how. This line lists all your personal certificates:...

read more

Powershell

Hi there, I have created a simple powershell script which I know works on my local machine running Windows 7 64bit. I have an evaluation copy of...

read more

Exploring Group Membership

To find out the groups your account belongs to, there is a command line tool called whoami. This tool supports options to output the information as...

read more