Loading software CD's onto hardrive??

cruiseroutfit

Cruizah!
Moderator
Vendor
Location
Sandy, Ut
I have a map program that has seven discs. Basically you open the program, select the maps you want to look at and it will ask you to insert "x" disc. Then if your moving around it might ask for another disc.

Is there a way to copy all the contents of the CD onto the hardrive (easy), but get the software to recognize the fact you have them all loaded, so it won't prompt for you to load a new disc?

TIA...
 

Caleb

Well-Known Member
Location
Riverton
A quick way is to make a disc image an then mount it, then when it looks for the disc it will appear as though you have the disc in the drive. Otherwise, I am pretty sure there is a way, I just can't remember right now :(
 

Meat_

Banned
Location
Lehi
Is it TOPO! (national geographic Utah)? If so I've made that into a DVD, you can have it as a DVD or mount it as an image on the HD.... I have it on a network drive and can scroll the entire state... I don't need no stinking cds
 

cruiseroutfit

Cruizah!
Moderator
Vendor
Location
Sandy, Ut
I'll give that program a try...

The software (AllTopoUtah) says in the owners manual that it will NOT run on a network setup, to protect them blah, blah, blah

It has a cache file, that I can set for up to 2GB, but I think all of the maps are more than this??
 

Meat_

Banned
Location
Lehi
With 7 discs it should be way bigger than 2GB.

Most image software will work around thier blah blah blah... some better than others.
 

cruiseroutfit

Cruizah!
Moderator
Vendor
Location
Sandy, Ut
With 7 discs it should be way bigger than 2GB.

Most image software will work around thier blah blah blah... some better than others.

I figured each disc has 550 mb of map data, and when it puts them into cache, it also caches a .bmp file of each map. I guess the way to do it would be to override the 2GB limit?
 

78mitsu

Registered User
I have a map program that has seven discs. Basically you open the program, select the maps you want to look at and it will ask you to insert "x" disc. Then if your moving around it might ask for another disc.

Is there a way to copy all the contents of the CD onto the hardrive (easy), but get the software to recognize the fact you have them all loaded, so it won't prompt for you to load a new disc?

TIA...

Build a batch file, copy this to the content. uses two arguments sourcepath and destination path, destination path requires a "\" at the end to tell you it's a directory. You can also use the bare xcopy command.


@echo off
Usage is copydisklocal <Sourcepath> <Destination Path>
xcopy %1 %2 /c /e /v /d /h /f
 

cruiseroutfit

Cruizah!
Moderator
Vendor
Location
Sandy, Ut
Build a batch file, copy this to the content. uses two arguments sourcepath and destination path, destination path requires a "\" at the end to tell you it's a directory. You can also use the bare xcopy command.


@echo off
Usage is copydisklocal <Sourcepath> <Destination Path>
xcopy %1 %2 /c /e /v /d /h /f

And where would I paste that???
 

78mitsu

Registered User
And where would I paste that???

Create a text file then copy the stuff in to it then re-name it whatever.bat, you have to call the whatever.bat from the command shell or a shell contributor like "run"

Go Start->Run type c:\<path to Bat>\whatever.bat d:\(I assume Cdrom) c:\savedcds\topostuff\cd1\

if you have spaces in the names, you have to qualify them with " so
Go Start->Run type c:\<path to Bat>\whatever.bat "d:\(I assume Cdrom)" "c:\saved cds\topo stuff\cd1 stuff\"

this doesn't create a cd "Image" it makes a file for file copy on the HDD following each directory tree one at a time.
 

cruiseroutfit

Cruizah!
Moderator
Vendor
Location
Sandy, Ut
Thanks for all the help :cool:

OldGeezer: I don't know how I missed that on their website, but that did the trick... I have all the software on the computer now :cool: Thanks!
 
Top