@Furian, Reply #6: Start, run does *NOT* check, if the program will run, because it's included in the %path% statement (user or system). Try this: Start, Run, notepad, OK -> will execute start, Run, scite, OK -> will execute Open a CMD.EXE box, working dir = "C:", then... Type notepad <enter> -> will execute (in path, usually @windir or @systemdir) Type scite <enter> -> it will *NOT* execute type start scite <enter> -> it *WILL* execute, amazing at the first glance, isn't it? The important information for the "Start" functionality is stored here:
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionApp Paths]There you will find an entry for many executables (including SciTE.exe, when "setup installed"). These keys/vals do the trick, that the named executables *WILL* run from start, run, ... , but *ONLY* from start, run (or "CMD-BOX", "start programname <enter>"), and not from any random "working directory" (implying the EXE's path is not included in the %path% statement) Regards, Rudi. <edit: grammar, typo>