Where is Windows Picture and Fax viewer?

B

Brian Kochera

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
 
A

Alan Edwards

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_Fullscreen %1

....Alan
 
C

Cajunswabbie

Brian Kochera said:
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.

Cajunswabbie
U.S.N, Retired
 
V

VanguardLH

in message
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_Fullscreen %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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top