AndreasVliegen Posted March 28, 2006 Posted March 28, 2006 (edited) Hello peeps, maybe a simple question ... I know how I can use the 'RegRead' command ($var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion", "ProgramFilesDir") MsgBox(4096, "Program files are in:", $var) But how can I check where Internet Explorer is installed ? It's somewhere in the registry (regedit).. I know it's 99,9% C:\Program Files\Internet Explorer\IEXPLORE.EXE But do you know where in the registry (regedit) I can find where Internet Explorer is installed. I'm just a noob (on AutoIt), so it's just a test if I can make a program ... Thanks, SteeloXP Edited March 28, 2006 by AndreasVliegen
MHz Posted March 28, 2006 Posted March 28, 2006 MsgBox(0, '', RegRead('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE', ''))
AndreasVliegen Posted March 28, 2006 Author Posted March 28, 2006 MsgBox(0, '', RegRead('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE', '')) Thank you very much!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now