Seems like this question comes-up quite a bit, and I can never seem to find the snippet of code which will do this in CF 5, so I thought I’d leave myself a post of this snippet of code, and perhaps someone else out there in the future trying to find information on how to reset their administrator password. That said, here are a few ways to get back into the CF Administrator if you’ve somehow been inadvertently locked-out for both ColdFusion 5 and previous versions, as well as ColdFusion MX:
For ColdFusion 5 on Windows:
Find the following registry entry:
- HKLM\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server\UseAdminPassword
And set it to 0. Restart the ColdFusion Server service, and go to the Administrator to set a new password.
OR:
Use this code snippet to retrieve the password values:
- <cfset password_key=“4p0L@r1$”>
- <cfregistry action=“GET” branch=“HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server” entry=“AdminPassword” variable=“adminpassword” type=“String”>
- </cfregistry><cfregistry action=“GET” branch=“HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server” entry=“StudioPassword” variable=“studiopassword” type=“String”>
- <cfoutput>
- <strong>Admin Password:</strong><br />
- #Evaluate(“cfusion_Decrypt(adminpassword, PASSWORD_KEY)”)# <br /><br />
- <strong>RDS Password:</strong> <br />
- #Evaluate(“cfusion_Decrypt(studiopassword, PASSWORD_KEY)”)# <br /><br />
- </cfoutput>
- </cfregistry>
For ColdFusion 6 MX, ColdFusion 7 MX, and ColdFusion 8:
- Stop the “ColdFusion MX Application Server” Service
- Open the “neo-security.xml” file contained at %CFMXInstallRoot%\lib
- Find the line: “<var name=’admin.security.enabled’><boolean value=’true’/></var>” and change the true to false, then save the file
- Restart the “ColdFusion MX Application Server” Service
- Go to the ColdFusion Administrator again and set a password










By Blog-Fu June 18, 2004 - 10:13 am
Forgetting an Admin password is generally bad.
Okay. I had apparantly forgot the Admin password for my localhost ColdFusion Server. That's a bad thing. Luckily I found how to resetting ColdFusion Administrator Passwords. Whew....
By CLM February 23, 2007 - 12:04 am
THANK YOU Brandon!!
CLM
By Lance July 17, 2007 - 12:36 pm
Thanks, but you should change your title to say WINDOWS as all you wrote was that, and it appeared on a search with linux in the title.... so thanks!
By Sean Harrison September 17, 2007 - 6:13 am
Hey man - that final /CFRegistry tag should be on line 4.
By Amaacnt January 20, 2008 - 7:21 am
Thanks a lot.
By Wesley Hall July 31, 2008 - 5:02 am
Thanks alot! I read a different set of instruction that left out restarting the CF service. This did the trick.
By OneLineAtATime December 3, 2009 - 7:11 am
Save my A**! thanks
By Todd December 29, 2010 - 10:56 pm
awesome. Perfect!
By Admin SSC June 24, 2011 - 9:00 am
Thank you. This was helpful!