制作自动运行文件以打开 CD 内容和应用程序时出现问题

发布于 2024-10-19 12:25:38 字数 300 浏览 0 评论 0原文

我想创建一张包含许多文件 [音频文件、文本文件、应用程序等] 的 CD,当插入 CD 时,它将打开一个应用程序,向用户显示欢迎屏幕并指导他,此外,它还会在资源管理器中打开 CD(仅显示 CD 的内容,允许用户选择他想要打开的文件)。

用户是养老院的老人,我们正在教他们如何使用电脑。 操作系统是windows xp,默认设​​置为自动运行。

我的问题是这可能吗?如果可能的话怎么办?

如果没有,是否可以让自动运行加载引导用户的应用程序,但是当用户通过双击访问驱动器本身时,它将打开 CD 内容。

任何帮助表示赞赏,谢谢。

I want to create a CD which contains many files [audio files, text files, applications, etc..], when the CD will be inserted it will open an application which shows a welcome screen to user and guides him, plus it will also open the CD in explorer (simply show the contents of the CD allowing the user to select which files he wish to open).

The users are elders in a retirement home, we are teaching them how to use computers.
The operation system is windows xp with autorun set on default.

my question is is it possible, and if so how?

And if not, is it possible to make the autorun load the application which will guide the user, but when the user accesses the drive itself via double-clicking it will open the cd contents.

Any help appreciated, thanks ahead.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素罗衫 2024-10-26 12:25:38

由于它仅在 Windows 中使用,请尝试以下操作:在 CD 的根目录中创建两个文件(autorun.infopen.bat)。

将其放入 autorun.inf

[autorun]
ShellExecute=open.bat

...并将其放入 open.bat

start <path to the dir you want to open>
start <path to the default cd app>

Since it will be used in Windows only, try this: create two files (autorun.inf and open.bat) in the root directory of your CD.

Put this inside autorun.inf

[autorun]
ShellExecute=open.bat

...and this inside open.bat

start <path to the dir you want to open>
start <path to the default cd app>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文