http://download.microsoft.com/download%2f3...nColorSetup.exe
For those of you looking to shrink down the install size for an unattended CD follow these steps.
1. Install the Applet
2. Delete msvcr71.dll
3. Use your favorite compressor to compress it (7-Zip brings it down to 230 KB)
4. Uncompress it during your unattended install
5. Run this command: regsvr32 /s GamutViewer.dll (Remember to put the full path to the dll file)
Here's an AutoIT script to do this silently:
CODE
#NoTrayIcon
AutoItSetOption("ExpandEnvStrings",1)
AutoItSetOption("RunErrorsFatal",0)
RunWait(@ComSpec & " /c " & 'regsvr32 /s "%programfiles%\color control panel\GamutViewer.dll"', "", @SW_HIDE)
AutoItSetOption("ExpandEnvStrings",1)
AutoItSetOption("RunErrorsFatal",0)
RunWait(@ComSpec & " /c " & 'regsvr32 /s "%programfiles%\color control panel\GamutViewer.dll"', "", @SW_HIDE)