Lotus Notes Traveler Fix Pack 8.0.1.2

A fixpack for Lotus Notes Traveler (Fix Pack 8.0.1.2) is available for download. It fixes the following issues

  • LO27829 – Traveler stops pushing data because file name case mismatch
  • LO28880 – Notice accept failed when SMTP routed
  • LO29236 – Underscores in subject with Danish Characters
  • LO29261 – Server Doc lookup failed during startup
  • LO29250 – Device Stop synching because mail file is not resolved
  • LO29364 – “Unable to open view Server\Internet Sites” message displayed
  • LO29482 – Compression error on SSL syncs with self-signed cert
  • LO29215 – Some WM devices can not send mail because of an exception in SubmitMessage
  • LO29211 – Device password screen hides Authenticator screen
  • LO29715 – Could not open database ntsclcache” message in log files
  • LO30460 – Lotus Traveler users cannot reply to email sent from addresses
  • LO30553 – ActiveSync constantly syncs traveler logs
  • LO30955 – Send/Receiver Email in inbox inverted on server
  • Support for Windows Mobile 6.1 Classic, Standard and Professional devices.
  • Support for Self-signed or non-well known SSL certificates on the Domino Server running Lotus Notes Traveler Server.
  • Client log files moved out of the My Documents folder to reduce ActiveSync syncronization for connected devices.

Softsphere Admin & Developer Conference 2008

In September, I’ll be presenting at the Softsphere Admin & Developer Conference 2008 in Munich. The session is about “Templates, Code and Tools”. I’ll try to cover almost everything that is available for Lotus Notes / Domino for free or at least for a small budget. I will take you to some well known sources for Lotus Notes / Domino related stuff in the world wide web. But there are also some sites you might not know by now.

I’m looking forward to seeing you in Munich at Softsphere 2008 ( 15 & 16.-SEP-2008 )


Elevated Command Prompt Here

One of the things that irks me is I’m trying to do stuff in a deeply buried directory in Explorer and then realize that I want to do something Command Prompt related. You get all the way down to where you want to be and say “uwaaaah!” because you realize that you now have to type that long path into a command window. Sure you could copy the path from the directory bar and paste in the command window, but, well, that’s a bunch of steps I don’t want to deal with.

Below you’ll find a set of Registry settings that will enable a “Command Prompt here” and “Elevated Command Prompt here” menu item when you right click on a drive or directory in Explorer.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\cmd]
@=”CMD Prompt here”
“NoWorkingDirectory”=””
“Extended”=-

[HKEY_CLASSES_ROOT\Directory\shell\cmd\command]
@=”cmd.exe /k \”pushd %L && title Command Prompt\””

[HKEY_CLASSES_ROOT\Directory\shell\runas]
@=”Ele&vated CMD Prompt here”
“NoWorkingDirectory”=””

[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@=”cmd.exe /k \”pushd %L && title Command Prompt\””

[HKEY_CLASSES_ROOT\Drive\shell\cmd]
@=”CMD Prompt here”
“NoWorkingDirectory”=””
“Extended”=-

[HKEY_CLASSES_ROOT\Drive\shell\cmd\command]
@=”cmd.exe /k \”pushd %L && title Command Prompt\””

[HKEY_CLASSES_ROOT\Drive\shell\runas]
@=”Ele&vated CMD Prompt here”
“NoWorkingDirectory”=””

[HKEY_CLASSES_ROOT\Drive\shell\runas\command]
@=”cmd.exe /k \”pushd %L && title Command Prompt\””

Works on Windows XP, Windows 2003, and Windows Vista. Vista already has Command Prompt here in the menu but it’s normally hidden. It comes down to a single REG_SZ value called Extended, which is removed as part of the Registry file. If you don’t want to lose the hidden option, remove these two lines. I want it to always be there, so I delete that REG_SZ value.

Download: cmdhere.reg