MOD2000: How to Use the Autorun.inf File to Run a Package Created with the Package and Deployment Wizard
ID: Q241264
|
The information in this article applies to:
-
Microsoft Office 2000 Developer
SUMMARY
In Windows, whenever you insert a compact disc in a CD-ROM or DVD-ROM drive, Windows looks for a file named Autorun.inf. If the file exists, Windows follows the instructions contained in the file, which usually involves running a setup application of some sort. This article demonstrates how to use Autorun.inf with a package created by the Package and Deployment Wizard to run a setup application automatically.
MORE INFORMATIONCAUTION: Following the steps in this example will modify the sample
database Northwind.mdb. You may want to back up the Northwind.mdb file
and perform these steps on a copy of the database.
To demonstrate using the Windows Autorun feature to automatically run Setup from a compact disc, follow these steps:
- Open the sample database Northwind.mdb.
- Press ALT+F11 to switch to the Visual Basic Editor.
- On the Add-ins menu, if the Package and Deployment Wizard is listed, skip to step 7.
- On the Add-ins menu, click Add-in Manager.
- In the Available Add-ins list, click VBA Package and Deployment Wizard.
- Under Load Behavior, click to select the Loaded/Unloaded check box, and then click OK.
- On the Add-ins menu, click Package and Deployment Wizard.
- In the Package and Deployment Wizard dialog box, click Package.
- Click Next and accept the defaults until you get to the Package and Deployment Wizard - Included Files page.
- Click to select the Include Access Runtime check box, and then continue through the wizard until it is finished.
- Open Notepad.
-
Type the following:
[Autorun]
ICON=Setup.exe
OPEN=Setup.exe
- On the File menu, click Save As.
- In the Save As dialog box, browse to the folder where you created the package.
- In the Save as type list, click All Files (*.*).
- In File name, box type Autorun.inf.
- On the File menu, click Save, and then quit Notepad.
- When you are creating the compact disc, copy the contents of the folder containing the package, and place the contents "as is" onto the compact disc. Do not place the folder itself onto the compact disc; only copy the contents of that folder. If the Autorun.inf file is not in the root folder of the compact disc, Autorun is not triggered. In this example, the root folder of the compact disc has the following files and folders:
Name |
Type |
Runtime |
Folder |
Support |
Folder |
Autorun.inf |
File |
Northwind.cab |
File |
Setup.exe |
File |
Setup.lst |
File |
- Load the compact disc onto a target computer that has the Windows Autorun feature turned on. Note that the Setup program starts automatically.
REFERENCESFor additional information about Autorun with compact discs, click the article numbers below
to view the articles in the Microsoft Knowledge Base:
Q136214 How to Test Autorun.inf Files
Q172078 HOWTO: Enable Autorun for Applications Distributed on CD-ROM
Q126025 How to Disable Automatic CD-ROM Running and Audio CD Playing
Also, see the following on the Microsoft web site:
http://www.microsoft.com/msj/0998/win320998top.htm http://www.microsoft.com/msj/0499/win32/win320499top.htm
Additional query words:
inf pdw
Keywords : kbdta modPDWizard
Version : :
Platform :
Issue type : kbhowto
|