Note:
Forums will be making significant UX changes to address key usability improvements surrounding search, discoverability and navigation.
To learn more about these changes please visit the announcement which can be found
HERE.
' Name: MODI File Association Fix ' Author: Microsoft Customer Support Services ' Copyright (c) 2008, Microsoft Corporation ' Script to re-associate .TIF, .TIFF, and .MDI files back to MODI ' Writes associations to the HKCU hive to prevent future Office 2003 patch or repair actions from removing them
Option Explicit Dim WshShell Dim bTIF, bTIFF, bMDI
'======================================================================================================= 'Section for script behavior customizations
'Associate .TIF with MODI. ' Set this option to 'False' to prevent .TIF from being re-associated bTIF = True
'Associate .TIFF with MODI. ' Set this option to 'False' to prevent .TIFF from being re-associated bTIFF = True
'Associate .MDI with MODI. ' Set this option to 'False' to prevent .MDI from being re-associated bMDI = True
'DO NOT CUSTOMIZE BELOW THIS LINE! '==================================================================================
'Create instance of shell object Set WshShell = WScript.CreateObject("WScript.Shell")
Microsoft is conducting an online survey to understand your opinion of the Technet Web site. If you choose to participate, the online survey will be presented to you when you leave the Technet Web site.