- This topic has 2 Antworten, 2 Stimmen, and was last updated 01:47 um 5. Juni 2005 by Unbekannt.
- AutorBeitrag
- 6. Januar 2005 um 09:55 #26583UnbekanntParticipant
I do not speak or read German, but managed to muddel my way through an earlier post on this board with the asistance of babelfish.altavista.com….. so I figured that other prople might be having the same issue – so here is a solution in english for anyone out there:
Issue: The canon "Canoscan Toolbox" does not recognise MS Outlook 2003 as a mapi client.
Reason: the canon software looks for a matching MAPI client in the list it stores at [HKEY_LOCAL_MACHINE\\SOFTWARE\\Canon\\CanoScan Toolbox Ver4.1\\Devices\\MAPI\\]
It compares this list with entries in:
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail]the entry for Microsoft Outlook is actually labeled "Microsoft Office Outlook" within the "Microsoft Outlook" Key (see below)
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Microsoft Outlook]
@="Microsoft Office Outlook"Solution:
Make sure that thers is a matching entry in both:
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Canon\\CanoScan Toolbox Ver4.1\\Devices\\MAPI\\]
and
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail]Remember it is not the key you are matching, but rather the first default entry within the key in [HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\MailClientName\\]
you do not need to reboot for the changes to take effect – simply restart the canoscan toolbox
Method 1.
Add a new String value (6) at the following location:
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Canon\\CanoScan Toolbox Ver4.1\\Devices\\MAPI]
"1"="Outlook Express"
"2"="Microsoft Outlook"
"3"="Microsoft Exchange"
"4"="Netscape Messenger"
"5"="Eudora"
"6"="Microsoft Office Outlook"Method 2:
Create a dummy MAPI registration for Outlook that the canoscan toolbox will understand:
Export [HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Microsoft Outlook\\, use find and replace on the .reg file to change the string "Mail\\Microsoft Outlook" for "Mail\\Outlook" and then import the .reg file again. This will create another MAPI registration
You should have a file that look like one below. – merge it into the registry.
————– Begin Cut ——————–
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook]
"MSIComponentID"="{FF1D0740-D227-11D1-A4B0-006008AF820E}"
"MSIInstallOnWTS"=dword:00000000
"MSIOfficeLCID"=hex(7):4d,00,69,00,63,00,72,00,6f,00,73,00,6f,00,66,00,74,00,\\
5c,00,4f,00,66,00,66,00,69,00,63,00,65,00,5c,00,31,00,31,00,2e,00,30,00,5c,\\
00,43,00,6f,00,6d,00,6d,00,6f,00,6e,00,5c,00,4c,00,61,00,6e,00,67,00,75,00,\\
61,00,67,00,65,00,52,00,65,00,73,00,6f,00,75,00,72,00,63,00,65,00,73,00,00,\\
00,55,00,49,00,4c,00,61,00,6e,00,67,00,75,00,61,00,67,00,65,00,00,00,49,00,\\
6e,00,73,00,74,00,61,00,6c,00,6c,00,4c,00,61,00,6e,00,67,00,75,00,61,00,67,\\
00,65,00,00,00,00,00
"MSIApplicationLCID"=hex(7):4d,00,69,00,63,00,72,00,6f,00,73,00,6f,00,66,00,74,\\
00,5c,00,4f,00,66,00,66,00,69,00,63,00,65,00,5c,00,31,00,31,00,2e,00,30,00,\\
5c,00,4f,00,75,00,74,00,6c,00,6f,00,6f,00,6b,00,00,00,4c,00,61,00,73,00,74,\\
00,55,00,49,00,4c,00,61,00,6e,00,67,00,75,00,61,00,67,00,65,00,00,00,00,00
@="Microsoft Outlook"
"DLLPathEx"="C:\\\\Program Files\\\\Common Files\\\\SYSTEM\\\\MSMAPI\\\\1033\\\\msmapi32.dll"
"DLLPath"="mapi32.dll"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Envelope]
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Envelope\\CLSID]
@="{0006F01A-0000-0000-C000-000000000046}"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Envelope\\CurVer]
@="Outlook.Envelope.11"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Protocols]
@=""[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Protocols\\mailto]
"EditFlags"=hex:02,00,00,00
"URL Protocol"=""
@="URL:MailTo Protocol"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Protocols\\mailto\\DefaultIcon]
@="\\"C:\\\\PROGRA~1\\\\MICROS~2\\\\OFFICE11\\\\OUTLOOK.EXE\\",7"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Protocols\\mailto\\shell]
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Protocols\\mailto\\shell\\open]
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\Protocols\\mailto\\shell\\open\\command]
@="\\"C:\\\\PROGRA~1\\\\MICROS~2\\\\OFFICE11\\\\OUTLOOK.EXE\\" -c IPM.Note /m \\"%1\\""[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\shell]
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\shell\\open]
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\shell\\open\\command]
@="\\"C:\\\\PROGRA~1\\\\MICROS~2\\\\OFFICE11\\\\OUTLOOK.EXE\\" /recycle"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\shell\\Properties]
"MUIVerb"="Properties"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Outlook\\shell\\Properties\\command]
@="rundll32.exe shell32.dll,Control_RunDLL \\"C:\\\\PROGRA~1\\\\COMMON~1\\\\SYSTEM\\\\MSMAPI\\\\1033\\\\MLCFG32.CPL\\""————- END CUT ——————
6. Januar 2005 um 10:30 #89914lastwebpageModeratorHello, thank you Mr/Mrs Unknown ! 😀
I think there are some settings in WindowsXP that i don\’t found, or a bug in Office ?
Because i have installed Cannon and Outlook very often, even if i install Outlook first or Canonbox first, i never get this kind of trouble. (I have Canonbox 4.0)However,thank you for your posting, i hope that will help somebody.
regards
Peter5. Juni 2005 um 01:47 #100358UnbekanntParticipantFür mich war es die optimale Anleitung, da ich genau dieses Problem hatte.
Thank yoe very mutch 😀
- AutorBeitrag
Das Thema ‘Outlook 2003 and canoscan toolbox problem’ ist für neue Antworten geschlossen.
