BigDaddyO Posted November 29, 2004 Posted November 29, 2004 I am trying to open the MLCFG32.cpl file to edit the Exchange settings but when I attempt to launch the control panel applet it does nothing, no errors, no windows, nothing... I am using this code, any help would be appreciated. Run(@SystemDir & "\RUNDLL32.EXE shell32.dll,Control_RunDLL "& @CommonFilesDir & "\System\MSMAPI\1033\MLCFG32.CPL")
sugi Posted November 29, 2004 Posted November 29, 2004 Why use such a long command? Run('control mlcfg32.cpl') Works for me
BigDaddyO Posted November 29, 2004 Author Posted November 29, 2004 Why use such a long command?Run('control mlcfg32.cpl')Works for me<{POST_SNAPBACK}>Weird, My Common folder does not seem to be in my path and the control.exe only accepts the DOS 8.3 file/folder names so This is what got me working, Thanks$Path = FileGetShortName(@CommonFilesDir & "\System\MSMAPI\1033\MLCFG32.CPL") Run(@SystemDir & "\control.exe "& $Path)
sugi Posted November 29, 2004 Posted November 29, 2004 My mlcfg32.cpl is in my Windows\System32 directory
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