home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Technical Support
Ask a Tech Support Question (free)!

Making an Autorun CD

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 1594
Discussions: 200,505, Posts: 2,374,392, Members: 245,828
Old December 11th, 2001, 07:57 AM   Digg it!   #1 (permalink)
Ultimate Member
 
nodnerb2's Avatar
 
Join Date: Oct 2001
Location: Antibe.Fr+Vegesak.De
Posts: 1,360
Making an Autorun CD

Hi,

Is it possible to make an Autorun CD that will start by loading an image that is on the CD?

The reason I am asking is that I am presently burning a CD for my Folks with a load of Photos of my Baby Daughter. I was hoping that I could set it up so that when it is shoved into their PC at home the CD ran by itself and a picture of her would appear.

Any advice or ideas on this one would be greatly appreciated

Cheers

Nodnerb2
nodnerb2 is offline   Reply With Quote
Old December 11th, 2001, 08:02 AM     #2 (permalink)
Junior Member
 
Join Date: Nov 2001
Location: Albany, NY
Posts: 23
Karens power tools has a good autorun editor. You can find it here. http://www.karenware.com/powertools/ptautorun.html
BigR is offline   Reply With Quote
Old December 11th, 2001, 08:59 AM     #3 (permalink)
Member
 
str8jakit's Avatar
 
Join Date: Oct 2001
Location: Earth, Sol System
Posts: 228
Send a message via AIM to str8jakit Send a message via MSN to str8jakit Send a message via Yahoo to str8jakit
I have done this and it works great!

1. Download Irfanview in zip format from this link.
2. When building the CD image, put in your pictures and include the files "i_view32.exe" and "i_view32.cnt" (you can also include "i_view32.hlp" if you want) from the zip file you just downloaded.
3. Make a text file named "autorun.inf" (no quotes) with the following text:

Code:
[autorun]
OPEN=i_view32.exe IMAGE.JPG
ICON=i_view32.exe
Replace "IMAGE.JPG" with the name of the first image you want them to see.

4. Include the new autorun.inf file on your image and burn it.

When they pop in the CD, Irfanview will run automagically showing the image you want them to see. Irfanview is freeware and does not need to be "Installed" to run properly. It also includes the benefit of "Back" and "Forward" buttons allowing them to browse all the images on the CD.

Irfanview also includes a slideshow feature, although I'm not sure how to make it run automatically. I will do some checking, and let you know how to do it if I find out that it can be done.

Str8jakit
__________________
-Str8jakit
"Everything you know is RONG" - RONG FOO

Last edited by str8jakit : December 11th, 2001 at 09:01 AM.
str8jakit is offline   Reply With Quote
Old December 11th, 2001, 09:18 AM     #4 (permalink)
Member
 
str8jakit's Avatar
 
Join Date: Oct 2001
Location: Earth, Sol System
Posts: 228
Send a message via AIM to str8jakit Send a message via MSN to str8jakit Send a message via Yahoo to str8jakit
OK, here is how to do an automatic slideshow.

1. On your computer, click on i_view32.exe to run Irfanview.

2. Click on File | Slideshow

3. In the box on the right, find your pictures and click ADD to add them to the slideshow list on the left. Click "Play" to test your slideshow.

4. Click on the "Save as TXT File" button and save it as something like "slideshow.txt". Include this file on the CD image.

5. Make a text file named "slideshow.bat" with the following contents:

Code:
echo off
i_view32.exe /slideshow=slideshow.txt /closeslideshow
exit
Include this file on the CD image as well.

6. Make the autorun.inf file with the following contents:

Code:
OPEN=slideshow.bat
ICON=i_view32.exe
Include this file on the CD image as well. In all your CD image should contain:

autorun.inf
slideshow.txt
slideshow.bat
i_view32.exe
i_view32.cnt
i_view32.hlp
images

This will autorun the slideshow.
str8jakit is offline   Reply With Quote
Old December 11th, 2001, 09:24 AM     #5 (permalink)
Ultimate Member
 
osprey4's Avatar
 
Join Date: Oct 2001
Location: South Jersey
Posts: 8,677
Thanks, str8jakit, I'm trying to do the same thing and your instructions are MUCH easier than the set up I was trying to do.

I've got another question for you, though. How do I add music to this CD?

Jn
osprey4 is offline   Reply With Quote
Old December 11th, 2001, 09:40 AM     #6 (permalink)
Member
 
str8jakit's Avatar
 
Join Date: Oct 2001
Location: Earth, Sol System
Posts: 228
Send a message via AIM to str8jakit Send a message via MSN to str8jakit Send a message via Yahoo to str8jakit
I've never tried that before, but I would assume you could just add another OPEN= line to your autorun.inf:

Code:
[autorun]
OPEN=slideshow.bat
OPEN=music.mpg
ICON=i_view32.exe
I'll run some tests and see if this works.
str8jakit is offline   Reply With Quote
Old December 11th, 2001, 10:07 AM     #7 (permalink)
Member
 
str8jakit's Avatar
 
Join Date: Oct 2001
Location: Earth, Sol System
Posts: 228
Send a message via AIM to str8jakit Send a message via MSN to str8jakit Send a message via Yahoo to str8jakit
OK, that didn't work. Not only that, but the slideshow thing in general didn't work for several reasons.

The "Save as TXT File" option saves it as a *.lst file. It includes the full path of the image when you add it to the slideshow (in this case , it was my C: drive). No problem, thought I, so I removed the path and left just the file name. Since the images would be in the same volume and directory as the program file, no path would be needed. Well apparently the *.lst file needs to be opened for writing by Irfanview. Since it is on a CD, it is read-only. No luck.

Theoretically, it would be possible to create a slideshow.bat file that would copy the entire contents of the CD to the hard drive and remove the read-only attribute, but now we're getting complicated.

Also, the second OPEN= line did not work. I guess if you were going to build the batch file anyway, you could throw in a command somewhere to play that sound file while you're at it.

I still stand by my first post, however, as that one does work. It's just not nice and automated like. It does pop up a picture with back and forward buttons so they can flip through all the images in the directory, though.
str8jakit is offline   Reply With Quote
Old December 12th, 2001, 04:50 AM     #8 (permalink)
Ultimate Member
 
nodnerb2's Avatar
 
Join Date: Oct 2001
Location: Antibe.Fr+Vegesak.De
Posts: 1,360
Hi,

Many thanks str8jakit and BigR for the links.

I like the looks of str8jakit's method and will report back when I have got a runner.

Cheers

Nodnerb2
nodnerb2 is offline   Reply With Quote
Old December 12th, 2001, 03:17 PM     #9 (permalink)
Ultimate Member
 
nodnerb2's Avatar
 
Join Date: Oct 2001
Location: Antibe.Fr+Vegesak.De
Posts: 1,360
Hi,
When I first go going with this I just burned 1 Image and ran the Autorun file as per your str8jakit's post. It worked well and did so after I had burned a few more Images and added them to the slideshow.

I can't get the slideshow to start automatically on insertion of the CD. If I start it manually it trundles away ok.

Below are the two files I am using as per str8jakit's second post. Is this how they are supposed to look?

[slideshow.bat]

echo off
i_view32.exe /slideshow=slideshow.txt /closeslideshow
exit

[autorun]

open=slideshow.bat
icon=i_view32.exe

Cheers

Nodnerb2
nodnerb2 is offline   Reply With Quote
Old December 12th, 2001, 04:03 PM     #10 (permalink)
Ultimate Member
 
osprey4's Avatar
 
Join Date: Oct 2001
Location: South Jersey
Posts: 8,677
I looked around and found this slide show software last night:
http://hjem.get2net.dk/lpj/CreateCD.htm

I downloaded the files and set it up just like the guy tells you, burned it on a rewriteable and voila!! Works perfectly. Put the CD in and away it goes.

And just in time for Christmas, too!

Now, just need to figure out how to add music.

Jn
osprey4 is offline   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
Is It Just Me? (1635)
Review My Build (5)
FT HOOD attack: 7 killed 12 injured (66)
HELP!!! What do you think of this s.. (16)
Looking for a graphic card that wil.. (30)
My 1st pc build (40)
Aero in Vista (7)
core i7 extreme 975, nvidia 9400gt (9)
PC Modern Warfare 2: it's much wors.. (12)
Building my first computer (13)
How to Ship a PC (16)
[F@H SPAM 11/1/09]New month . . . n.. (33)
slaving laptop drive (7)
Windows 7 Keeps Restarting Itself (7)
Recent Discussions
FAT32 to NTFS file system in Win2kpro (3)
Motherboards and my curse... (25)
Review My Build (5)
HELP!!! What do you think of this sys.. (16)
New Processor, Monitor will not turn .. (2)
2009 Build (4)
Internet very slow since updating AVG.. (7)
My 1st pc build (40)
Freezing During Music/Movies (1)
Windows Experience Index is screwed u.. (2)
ext. sound card laptop to stereo syst.. (2)
Remote Desktop via SSH and error mess.. (2)
Help and Support disappeared from my .. (0)
[F@H SPAM 11/1/09]New month . . . new.. (33)
Basic applications needed for "r.. (1)
core i7 extreme 975, nvidia 9400gt (9)
hard drive problem (2)
Win7 TrustedInstaller Permissions (2)
Speed up Win 7 boot time a bit (1)
Hard Drive test program (2)
wireless westell versalink model 327w (1)
New build 10 second reboot cycle! Won.. (3)
New Linksys Routers (2)
sometime power/Amber light (0)
Mic won't work. (2)


All times are GMT -4. The time now is 01:25 AM.
TechIMO Copyright 2008 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28