Scheduled ISO Creation

Anyone know of a program for windows that will create an ISO file for burning on a schedule?

It was easy enough in Linux to program a script that would run every Sunday morning at about 5 to create a ISO image of my documents so when I got up I just stuck a DVD in the drive and burnt the ISO to disc.

Is there anything like this for windows?

you could use “at” to schedule it, but you’d need a command line iso builder.

windows has a built in cli image creater, not that i can remember the command tho and now im not sure it does after all. hmmmm not sure from here i will have a look when i get home and see if i can dig out the commands

I think you can it would be a case send files to CD/DVD drive and an appropriate command to make sure it finalises the disk.

createcd
http://isorecorder.alexfeinman.com/createcd.htm

also in the 2k3 (should work in xp) resource kit
dvdburn.exe
http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en

/edit: cdburn.exe is also included in the resource kit

/edit2: it appears the cdburn and dvdburn only take iso’s and burn them to media… the trick is creating the iso in the first place - the first link seems to take files as an argument so might be best trying that one.
The only other option I can think of would be to try and find a CAB to ISO converter (cli) or similar, as there’s surely cli commands to create CAB files :wink:

Just remembered I didn’t have it create a ISO file in 'nix, I had it create a Tar file.

Thus I’m sure I can create a tar file from Windows cli easy enough…

EDIT:

Indeed I can.
http://www.cgi-interactive-uk.com/backup_data_windows.html gave me a link for windows versions of tar and gzip. With a bit of fancy editing, I can even use my linux script to run on windows :slight_smile:

nope jsut checked, i was wrong…

[QUOTE=drezha;407823]

Thus I’m sure I can create a tar file from Windows cli easy enough…

EDIT:

Indeed I can.
http://www.cgi-interactive-uk.com/backup_data_windows.html gave me a link for windows versions of tar and gzip. With a bit of fancy editing, I can even use my linux script to run on windows :)[/QUOTE]

Would you please be so kind as to post it please? - with a general version of your edit for your setup ? Looks like what I need :slight_smile: Cheers Bro’.

No probs.

I downloaded the tar and gzip programs from the link I posted. Extract those to your C:\Windows folder.

Then my batch file is as follows:-

tar -cv --exclude=./Documents/Music --exclude=./Documents/Videos --file=backup.tar ./Documents
gzip -9 < backup.tar > backup.tar.tgz
del backup.tar
copy backup.tar.tgz C:\Users\Chris\Desktop
del backup.tar.tgz

Using Vista so it’s a bit different on XP due to file paths. I found to exclude folders (I only want to burn my documents folders to DVD, not the Music or my Airsoft Videos) I had to use relative paths.

Also because it’s not on linux, I couldn’t get it to run tar and gzip at the same time to create the compressed file to start with. Hence the run of gzip separately. Oh and I’m sure with playing you’d be able to get the file to create on the desktop to start with but I went for the easy, quick to get setup option first.

Now to set it up to run every week.:slight_smile: