I want to make a shortcut. I know how, but cannot find Windows Picture
and Fax viewer in the menu or by using search. What is the executable
file name and which folder subfolder is it in?
On Fri, 19 Oct 2007 15:40:19 -0400, in
microsoft.public.windowsxp.general, Brian Kochera
<brian1951@earthlink.net> wrote:
>I want to make a shortcut. I know how, but cannot find Windows Picture
>and Fax viewer in the menu or by using search. What is the executable
>file name and which folder subfolder is it in?
"Brian Kochera" <brian1951@earthlink.net> wrote in message
news:eFQRifoEIHA.3916@TK2MSFTNGP02.phx.gbl...
>I want to make a shortcut. I know how, but cannot find Windows Picture and
>Fax viewer in the menu or by using search. What is the executable file
>name and which folder subfolder is it in?
>
> --
> ____
> Brian M. Kochera
> "Some mistakes are too much fun to only make once!"
> ____
> View My Web Page: http://home.earthlink.net/~brian1951
I believe it is run from with in Windows Explorer as a .DLL and there is no
executable for Windows Picture and Fax View.
"Alan Edwards" wrote in message
news:s96ih31rhkpmsa4vjiv8q35en6ua933ch0@4ax.com...
> If you look in Explorer-Tools-Folder Options-File Types at an
> extension that uses it (probably .jpg) you will see the details,
> i.e.
>
> rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscre en %1
The %1 is needed to pass in the name of the file being opened (when
you, for example, double-click on it). To just open the program, use
the same command line except without the "%1" at the end.
There is no direct executable file for this program. Instead it is a
method stored within a DLL file (dynamic linked library). You tell
rundll32.exe, the executable, which DLL file to use and the entry
point name for the method. That is why rundll32.exe was provided
because of aggregate "programs" (methods) stored within DLLs.