August 23, 200422 yr Hi, i have a dir full of exes dlls and cpls and i want to Makecab them all in one step, not file by files because is tedious . Any suggest?thanks!!
August 23, 200422 yr Add makecab to your right click option. right click on the file and then click makecab.
August 23, 200422 yr How about this:for "%i" in (*.dll;*.cpl) do makecab "%i"Double the % if you are doing this from a batch file:for "%%i" in (*.dll;*.cpl) do makecab "%%i"-- Pyron
August 23, 200422 yr Author many thanks for your help, but im not very familiar with these commands, so please explain in detail step by step. Sorry
August 23, 200422 yr Step by step:Create an empty textfile in the directory with the cpls. Name it "createcabs.cmd".Edit it and put this into it:for "%%i" in (*.dll;*.cpl) do makecab "%%i"pauseSave it. Double click it. Should work as expected.-- Pyron
August 23, 200422 yr Author when double-clicking it doesnt work, and running it in cmd i get thisI also need EXEs to be compressedMicrosoft Windows XP [Version 5.1.2600]© Copyright 1985-2001 Microsoft Corp.C:\Documents and Settings\Administrator>cd..C:\Documents and Settings>cd..C:\>cd fC:\f>createcabs"%i" was unexpected at this time.C:\f>for "%i" in (*.dll;*.cpl) do makecab "%i"C:\f>
August 23, 200422 yr Ah, typo...Try this:for %%i in (*.dll;*.cpl;*.exe) do makecab "%%i"pause-- Pyron
August 24, 200422 yr My utility posted in this thread allows you to drag and drop multiple files to makecab.
August 24, 200422 yr Another option to consider would be to use the IEXPRESS tool, that comes with windows itself. (just run it from "Start>>Run")
August 24, 200422 yr Author THANKS ALL!!!Jcarle in what language do you make your programs? C# in Visual Studio? just for curiosityBYE!
August 24, 200422 yr THANKS ALL!!!Jcarle in what language do you make your programs? C# in Visual Studio? just for curiosityBYE! Yes, Indeed. IMHO, it's the best language.
August 25, 200422 yr Author jcarle could you post some links related to C# language for idiots? (for pre-pre-pre beginners like me) Some pdf tutorial for example or websites.THANKS!!
Create an account or sign in to comment