(imported topic written by tscott91)
It appears that Office SP3 is breaking the .tif file extention… I’ve had numerous calls from users saying they can’t open tif’s anymore…
There is a dos command “assoc” that allows you manage file type and extension associations… When I type:
assoc .tif I get the results ".tif= "
What it needs to be is “.tif=tiffile”
So, in order to do that I simply type the command: assoc .tif=tiffile
From there, I now need to assign a program to open the tif files. This is where it gets tricky as every PC isn’t going to use the same thing…
By using the command “ftype” and the exact command: ftype jpegfile I get what program the computer is using to open jpgs… For example the return value on a particular PC is “rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1”
So, I then used the command: ftype tiffile=rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1 to assign tif files to open with this program…
Anyone have any ideas on how to accomplish this smoothly?