MySql remote access can be easily achieved by running the following command: CREATE USER ‘usernamehere’@’%’ IDENTIFIED BY ‘passwordhere’; GRANT ALL PRIVILEGES ON *.* TO ‘databasenamehere’@’%’ WITH GRANT OPTION;
Category Archives: Uncategorized
Allowing remote access to MySQL
Posted by dave on March 15, 2013
No comments
Using LDAP authentication with MediaWiki and IIS
Posted by dave on January 15, 2013
No comments
Powershell to email Windows users when their AD password is soon to expire
Posted by dave on January 15, 2013
No comments
Handy Powershell Commands
Posted by dave on October 19, 2012
No comments
This page will be updated as and when I come across any handy PowerShell. List alias email addresses: get-mailbox | select -expand emailaddresses alias Recreate OWA directory in IIS: New-OWAVirtualDirectory Return all AD users created in last 30 days $checktime = (get-date).adddays(-30) get-aduser -searchbase …