> I've noticed that the path to the service script is the last > element in > sys.path i.e. sys.path[-1] and not sys.path[0]. > > Is this deliberate and can I rely on this? No, and No :) It should probably be first. Further, in a py2exe built service the only entry on sys.path will be the .zip file. Mark.