views:

6272

answers:

8

What is the best way to find out where is notepad.exe and mspaint.exe that will work across various versions of Windows?

Should I get the Windows directory via SHGetFolderPath(NULL, CSIDL_WINDOWS, NULL, SHGFP_TYPE_CURRENT, dir), and then traverse through all the subdirectories to look for the two files?

(Assume that I am not interested in anything outside the Windows folder.)

Thanks.

A: 

try opening a DOS prompt, change to the windows folder and do:

dir notepad.exe /s

-- long live DOS :)

tehvan
Jason S
+9  A: 

This works on every Windows box I've got access to (XP+).

c:\> for %i in (cmd.exe) do @echo. %~$PATH:i
C:\WINDOWS\system32\cmd.exe

c:\> for %i in (python.exe) do @echo. %~$PATH:i
C:\Python25\python.exe

c:\>

The great thing is, you don't have to use the actual %PATH%, you can substitute your own search path by using a different environment variable.

paxdiablo
It wouldn't on many localized versions of Windows as the executable might be named differently.
peSHIr
Then you substitute the localized name. This will be a problem with any solution unless you think there's a WIN_NOTEPAD_REALNAME constant somewhere in the Win32 API.
paxdiablo
notepad.exe is still notepad.exe and cmd.exe is still cmd.exe in all the language versions of Windows (98,XP,Vista) I've seen (about 20). Folders may be named differently, but executables, libraries, and other important stuff are not translated - at least not the filenames.
Piskvor
+1  A: 

I think to start off small you should get the windir environment variable and look in the subfolders %windir%\system32\ for mspaint and notepad. Most likely they will be there.

However if that fails, well then resort to a more brute force search.

Roman M
+1  A: 

Normally, you would just execute them. They are on the system path in every version of Windows.

You can ExpandEnvironmentStrings. The environment variable you want to expand is WINDIR. http://msdn.microsoft.com/en-us/library/ms724265(VS.85).aspx

In the past you could have used GetWindowsDirectory or GetSystemDirectory, but I think they are deprecated.

Bogdan
+1  A: 

Check if the key HKEY_CLASSES_ROOT\Applications\notepad.exe is the same on localized versions. Maybe the key name is same and the value for edit/open points to the localized exe.
Example:

English:
HKEY_CLASSES_ROOT\Applications\notepad.exe\shell\edit\command
%SystemRoot%\system32**NOTEPAD.EXE** %1

Dutch:
HKEY_CLASSES_ROOT\Applications\notepad.exe\shell\edit\command
%SystemRoot%\system32**kladblok.exe** %1

If thats the case, then its just about to check the registry for that key (same goes for the mspaint).

Stefan
Sounds like a viable way of doing this, yes. Provided that the assumption holds. (Can't check myself, as I'm not on a non-English localized Windows and I don't have registry editing permissions here...)
peSHIr
Anyone else that has possibility to check?
Stefan
+2  A: 

If you have the Microsoft Platform SDK installed (the February 2003 version is the last one that works with Microsoft VC6), you can grab the where.exe program (it's 38K, only 18K if you gzip it) and run

where notepad.exe

help from the where command:

WHERE [/R dir] [/Q] [/F] [/T] pattern...

Description:
    Displays the location of files that match the search pattern.
    By default, the search is done along the current directory and
    in the paths specified by the PATH environment variable.

Parameter List:
    /R       Recursively searches and displays the files that match the
             given pattern starting from the specified directory.

    /Q       Returns only the exit code, without displaying the list
             of matched files. (quite mode)

    /F       Displays the matched filename in double quotes.

    /T       Displays the file size, last modified date and time for all
             matched files.

    pattern  Specifies the search pattern for the files to match.
             Wildcards * and ? can be used in the pattern. The
             "$env:pattern" and "path:pattern" formats can also be
             specified, where "env" is an environment variable and
             the search is done in the specified paths of the "env"
             environment variable. These formats should not be used
             with /R. The search is also done by appending the
             extensions of the PATHEXT variable to the pattern.

     /?      Displays this help message.

  NOTE: The tool returns an error level of 0 if the search is
        successful, of 1 if the search is unsuccessful and
        of 2 for failures or errors.

Examples:
    WHERE /?
    WHERE myfilename1 myfile????.*
    WHERE $windir:*.*
    WHERE /R c:\windows *.exe *.dll *.bat
    WHERE /Q ??.???
    WHERE "c:\windows;c:\windows\system32:*.dll"
    WHERE /F /T *.dll
Jason S
A: 

Use the WinAPI function GetWindowsDirectory() to get the Windows folder, and GetSystemDirectory() to get the Windows\System folder. Thely're guaranteed to work with all Windows versions since at least Win95; I think they were available in Win 3.x as well.

Ken White
A: 

i'd use SearchPath()

nabiy