在 Windows XP 上自动安装驱动程序
我有一个声卡驱动程序,我需要在 Windows 上自动安装它。 有什么办法可以实现这一点吗?
I have a sound card driver and I need to automate the installation of it on windows. Is there any way to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是服务器故障的问题,但许多驱动程序安装文件提供了可用于静默或无人值守安装的开关。 您可以使用 /? 运行该程序 切换或联系设备制造商以获取更多信息。 获得该信息后,您可以使用 XP 中的计划任务或注册表(RunOnce 键)来计划该命令。
This is a question for Server Fault, but many driver install files offer switches that can be used for a silent or unattended install. You could run the program with the /? switch or contact the device manufacturer for more information. Once you have that information, you could schedule the command using Scheduled Tasks in XP or the registry (RunOnce key).
实际上,您可能想阅读 msdn 上的驱动程序安装部分。 (因为我不确定你所说的“自动化”是什么意思。)
Actually you probably want to read the driver installation section on msdn. (For I am not sure what you mean by "automating".)
这个问题应该在服务器故障时提出。
无论如何,我假设您的意思是希望它与您的操作系统一起安装。
一种方法是将驱动程序集成到 Windows 操作系统安装程序中。
一个很好的指南是:
使用 Nlite(简单):
http://www.nliteos.com/
或
(先进的)
http://unattend.msfn.org/unattended.xp
如果不是,请说明具体情况。
This question should be asked at server fault.
Anyways, I assume you mean to want it to be installed with your OS.
One way is to slipstream the driver into your Windows OS Installer.
A good guide is:
Using Nlite (Simple) :
http://www.nliteos.com/
or
(Advanced)
http://unattended.msfn.org/unattended.xp
If not please specify the situation.
nLite (http://www.nliteos.com/) 应该有您需要的解决方案。
nLite (http://www.nliteos.com/) should have the solution you need.