Windows Utilities

Description

ExtractMHT, Open with Arguments

BUG: Wrong Quoted-printable decoding

First: Thank you for the really useful utility!

I've looked in the code and found that you first determine all used for encoding tripplets and then one by one substitute them by corresponding characters.
That is a wrong way: when you have string (П=CF) where 'П' has code 0xCF it is encoded as (=CF=3DCF), =3D substituted first =CF next and than one has string (ПП).

Update:
http://ifile.it/swjvouy -- here I put patched *.au files: correct (I hope) QPDecode, fast Base64 decode, some changes to get files like that http://ifile.it/eujcry9 to be fully extracted (boundary changes, header continuation and other bad things)

Open With Arguments on a file with no extension ?

Is it possible to use OwA on a file with no extension ? I'm writing a build system using the scons tool, which has a top level file called SConstruct and sub-files called SConscript. The scons tool looks for SConstruct by default, you have to use a '-f filename' argument to run it on the sconscript files. I was hoping I could use your tool to accomplish this so my developers can just click on the file to run it.