pyt...@bdurham.com wrote: > Wondering if its possible to create Windows Shell Extensions using > pywin32 and if so, has anyone has tried to create a QueryInfo type > Windows Shell Extension?
Sure, it's possible. A shell extension is just a COM server. There are lots of example showing how to build a COM server in Python. You'll need to support IPersistFile and IQueryInfo. Here's a web page from Tim Golden showing a sample shell extension in Python. You'll need to modify this to support IPersistFile and IQueryInfo based on the information in that article, but this will show you the mechanics of it: http://timgolden.me.uk/python/win32_how_do_i/add-my-own-icon-overlays.html -- Tim Roberts, t...@probo.com Providenza & Boekelheide, Inc. _______________________________________________ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32