|
-
Oct 24th, 2003, 11:07 PM
#1
all in one CDs?
Just wondering what application do they use to make the all-in-one CDs? I understand the logic behind but I want to know the app that is commonly used to make them (ie, 8 flavors of windows in one CD )
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Oct 30th, 2003, 12:32 AM
#2
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Oct 30th, 2003, 05:00 AM
#3
I've got no idea what you are talking about!
-
Oct 30th, 2003, 11:48 AM
#4
Retired VBF Adm1nistrator
Re: all in one CDs?
Originally posted by MrPolite
(ie, 8 flavors of windows in one CD )
A single CD wouldn't be large enough for 8 versions of Windows.
It might take 2 or 3 I'd imagine though... possibly more if the data was RAR'd.
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Oct 30th, 2003, 05:23 PM
#5
Re: Re: all in one CDs?
Originally posted by plenderj
A single CD wouldn't be large enough for 8 versions of Windows.
It might take 2 or 3 I'd imagine though... possibly more if the data was RAR'd.
eeeh I have one with 7 versions 95a, 95b, 95c, 98, 98SE, 98 lite, ME
How it works is that all these different versions of windows have a lot of "chunks" of data that are the same. So the program looks for the similar data between all those files, and when it wants to make an ISO file for the CD, it will only copy the repetitive data once, while writing it 7 times in the file table. So basically there will be many places in the file table that point to the same location on the CD. It's fooling the computer. If you get the properties for the CD it's gonno tell you that it has like 1.7 GB or something like that on it. the ACTUAL written data is still around 700 MB, but the file system on the CD has around 1.7GB (in my example)....
eeh it's simple it just doesn't copy the "duplicate chunks of files" twice, it only copies them once, but writes them to the file system of the CD as many times as they appear.... hope it's clear
I was just looking for a program that would do it. There is one that I found, it's called CDImage ( I got the CDImage GUI version. ) Apparently the utility is written by microsoft though
anyways if anyone knows of any other programs, let me know!
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Nov 3rd, 2003, 10:47 AM
#6
Lively Member
Come on now Mr P - I'd hardly compare the latest versions of windows with the one's you mentioned - Those versions of windows were really small - I don't think Microsoft is thinking of sqeezing WinXP, Win2k and winMe all in one cd. But your explanation does make sense and I'd like to give it a go
The most I could do was sqeeze 95, 98 and Nt on one disc (without compressing them).
My software doesn't have bugs, It has undocumented features!
-
Nov 3rd, 2003, 12:01 PM
#7
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Nov 4th, 2003, 01:35 AM
#8
Lively Member
in order to store all those OS on one system and use the reffering method to share files, you would have to know your stuff and working with the latest versions of windows might be a bit of a problem.
My software doesn't have bugs, It has undocumented features!
-
Nov 4th, 2003, 01:42 AM
#9
Originally posted by Richard_Branson
in order to store all those OS on one system and use the reffering method to share files, you would have to know your stuff and working with the latest versions of windows might be a bit of a problem.
well the purpose isnt to put them all in one system... its just neat to carry one CD around instead of many
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Nov 4th, 2003, 01:57 AM
#10
Lively Member
That's waht I meant - on one cd. You'd have to know your onions from your potatoes.
I wouldn't mind giving it a try - anybody want to join me?
My software doesn't have bugs, It has undocumented features!
-
Nov 11th, 2003, 05:09 AM
#11
Fanatic Member
we need a high capacity CD...
and a powerfull Zip software
-
Nov 12th, 2003, 06:39 AM
#12
Lively Member
I don't think having a high capacity cd would be your solution - It would be a cheap solution.
What you would have to do (as Mr P) has mentioned is actually go and look into the .cab and see which files are being used in more than one OS and redirect the Second OS to the First OS for it's setup files - meaning that you have to go into all the files in the multiple OS' and get the common ones.
Like I said previously "you'd have to know your onions from your potatoes".
My software doesn't have bugs, It has undocumented features!
-
Nov 12th, 2003, 10:39 PM
#13
you can get teh program from here http://www.tech-hints.com/2kos.html
click on English Beta 3
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Nov 13th, 2003, 01:19 AM
#14
Lively Member
Takes the fun out of doing it yourself
My software doesn't have bugs, It has undocumented features!
-
Nov 13th, 2003, 01:23 AM
#15
Originally posted by Richard_Branson
Takes the fun out of doing it yourself
well! if you want to write a program that does this, you probably have to know assembly (or not)... I dont know how the CD FAT works. I guess you have to know about that in order to manually modify the stuff on it. shouldnt be an easy task
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Nov 14th, 2003, 01:11 AM
#16
Lively Member
It's not going to be easy - It might just turn out to be one to be one of my "life-long missions", Kind'a like restoring a 1967 bettle.
Mr. P - have you tried using those tools to see if they work?
My software doesn't have bugs, It has undocumented features!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|