Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.
One surprising news is that one day i tried to compress the windowsxp boot cd contents along with some softwares like ms office 2003, nero 7, vlc player etc..... worth the size of 3.5GHz, and I didn't believe that my .rar file size is of 2MB(Two mega bytes only) and I unpacked the contents the same 3.5gb are available to me........ really surprising.......
17% = Text Files (TXT, LOG)11% = Images (PNG, JPG)24% = Uncompressed Archives (CAB, IMG)16% = Movies/Videos (AVI, MPG)14% = Audio (MP3, OGG)18% = Executables (EXE, COM, BAT)Files: 27495Folders: 219Size: 17.87GB
No, no the 3.5gb is compressed into 2mb really. Next time i'l attach the rar file, I decompressed it and all the contents are retrieved again......... True.........
It's a 3.20GB Nero Image file. As per your post I just downloaded and tested it (Mounted the .nrg image into nero image drive ) and I got the files.......Try once...
It's empty. Every single character in the extracted Image is ascii 0.
what i was did is here....1)I downloaded winrar version 3.802)I copied the contents of my xp os into a folder3)I copied MSOffice, Nero, VLC and some other files into the same folder where i put the windows.4) Now using Nero 7 i make an image file of these5) then I compressed that image file, and it came to 2MBI gave it to my friends and they told it's working....
Public Sub CheckBytes(Byval onFile as String) Dim StreamOfFile as BCFile.FileStream Dim StringRead as String,CountMismatch as Long Set StreamOfFile = BCFile.OpenStream(onfile) Do Until StreamOfFile.AtEndOfStream StringRead = StreamofFile.ReadString(32768,strRead_ANSI) if StrComp(Stringread,String$(len(stringread),vbnullchar)) <> 0 then debug.Print "Compare mismatch" countmismatch = countmismatch+1 End If Loop StreamOfFile.CloseStream() debug.print "number of 32K blocks that contain non-null characters:" & countmismatchEnd Sub