Tuesday, June 23rd, 2009 Posted in Hosting & IIS7, Windows Powershell, Windows Server | No Comments »
You can remove MySQL user from Powershell with MySQL connector: # Powershell Args $dbusername = $args[0] # user01073 $dbpassword = $args[1] # RadoreTelekom $dbname = $args[2] # db01073 # Add MySQL Data Connector [void][system.reflection.Assembly]::LoadWithPartialName("MySql.Data") # ... Read more..