Ever done anything *this* stupid?
Yeah, so here I was at work thinking of things to entertain myself. So I opened up MS Outlook, hit Alt + F11 to get into the VBA editor. Now mind you, the Security settings on this computer were set to low. I put in the following code:
VB Code:
Private Sub Application_Startup()
Application.Quit
End Sub
You know what, don't do this. I spent 1 1/2 hours trying to find where Outlook stores the code and could not find it. I finally tracked down the security settings in the registry:
Code:
HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Outlook\Security
I changed the value to 3, so that it wouldn't run any Macro's period. The 9 after Office in the key location will vary depending on your version of Office though.
Just thought I would share this new found wisdom with everyone.
Can anyone beat it?