Outlook 2010: Keine Erinnerungen mehr ?!

Anscheinend gibt es einen Bug bei Office 2010 SP1, sodass in seltenen Fällen die Erinnerungen nicht mehr angezeigt werden.
Das Erinnerungsfenster wird komplett leer angezeigt.
In meinem Fall hat der folgende Microsoft-Hotfix geholfen: http://support.microsoft.com/kb/2584053
Nach der Installation dauert es noch ca. 5 Sekunden bis die Erinnerungen geladen sind.
Gruß
Cons
 

Reset root password of mysql database

1. Stop the MySQL Server.

sudo service mysql stop

2. Start the mysqld configuration.

sudo mysqld --skip-grant-tables &

3. Login to MySQL as root.

mysql -u root mysql

4.. Replace YOURNEWPASSWORD with your new password!

UPDATE user SET Password=PASSWORD('YOURNEWPASSWORD') WHERE User='root'; FLUSH PRIVILEGES; exit;

Kopiert von: http://ubuntu.flowconsult.at/en/mysql-set-change-reset-root-password/