August 23, 200422 yr HelloI need some hello.. how can I compress a load of dll and sys and so on.. I what to pack my drivers???going to have drivers in the $OEM$/$1/drivers/ my unstanding is windows system can read compressed files.. if they named .dl_
August 23, 200422 yr there's a tool on your xp install called makecab.exe you can use that if you want to create cabs in that fashionjust go to a command line and try makecab and you'll see itWhtKnight
August 27, 200422 yr Author there's a tool on your xp install called makecab.exe you can use that if you want to create cabs in that fashionjust go to a command line and try makecab and you'll see itWhtKnightI know how to do that but this they any way to do like 300 files.?? I what to compress drivers..
August 27, 200422 yr and why didn't you look up your post, where topics are pinned there is 1 that says "Guide For Compressed Drivers Unattended Install"i'm sure it'll be easier to use that method than compress 300 files to cabs
August 28, 200422 yr that be cool if it works.. that 7zip does better compress then winrar?4 sure Yes indeed better than anything else (maybe except for some extreme compressing, used by companies...(consumes too much CPU power anyway))
August 28, 200422 yr @ECHO OFFSETLOCAL ENABLEEXTENSIONSSET SOURCE= <write the name of the source folder here>SET TARGET= <write the name of the target folder here>IF EXIST %SOURCE%\*.* FOR /F %%J IN ('DIR /A-D /OGN /B %SOURCE%\*.*') DO MAKECAB /D CompressionMemory=21 /D CompressionType=LZX /L %TARGET% %SOURCE%\%%JTake care that all files *.* in the source folder (including the .inf and .cat files) are compressed to target folder.To use the content of target folder for unattended install, .inf and .cat files MUST be uncompressed.use expand to uncompress a fileEXPAND Source Destinationand delete compressed version driver.in_ and driver.ca_
Create an account or sign in to comment