在一般情況下,當自動運行由非本地管理員組的成員的登錄用戶調用時,可能會顯示「安裝失敗」消息(在Vista上,您可能需要向右-click autorun.inf並選擇'以管理員身份運行')。
另外,這裏是對自動運行(以下簡稱「NoDriveTypeAutoRun」註冊表項
對於您通過使用Microsoft Visual Studio .NET創建的應用程序創建一個自動運行的CD-ROM的一般信息和幾個環節: -
步驟是
1) Start Visual Studio .NET.
2) Create a simple Console Application or Windows Application.
3) Build the application.
4) On the File menu, point to New, and then click Project.
5) In Project Types, click Setup and Deployment Projects. In Templates, click Setup projects
6) Name the project Setup, and then click OK.
7) In Solution Explorer, right-click your Setup project, click Add, and then click File.
8)在文件名文本框中,鍵入您在第3步建立的可執行文件的絕對路徑,然後單擊打開。
9)在生成菜單上,單擊生成解決方案。 10)啓動任何文本編輯器(如記事本)。
Paste the following code in the text editor, and then save the file as Autorun.inf:
[autorun]
open=Setup.exe
注: - 要準備在步驟3內置在Visual Studio .NET應用程序的自動運行的CD-ROM,複製在步驟9和您在創建Autorun.inf文件中生成的文件步驟11到CD-ROM。
爲什麼不直接鏈接到http://support.microsoft.com/kb/818804呢? –