Windows Shell Extension Without Visual Studio

Is there any way to write a Windows Shell Extension (both 32 and 64 bit) without buying Visual Studio? All the tutorials I can find require ATL, which is apparently not included in the free express editions.

If so, it would be great if someone could point me in the right direction!
You should be able to use the Platform SDK.
I barely recall reading about shell extensions at some point, but I think they are just a COM implementation. ATL is (mainly) a fast and relatively easy framework to produce COM.

You should be able to write COM in straight C++. ATL is just a helper framework. If you don't have idea about what COM is or how to code it, read Don Box: http://www.amazon.com/Essential-COM-Don-Box/dp/0201634465.

After reading that book, you'll write COM in straight C++ without a single problem.
Topic archived. No new replies allowed.