gpt4 book ai didi

c# - 安装完软件后如何安装USB驱动

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:35:08 25 4
gpt4 key购买 nike

我想在客户端计算机上安装我的软件后安装(或至少为安装做准备)USB 驱动程序。

我有一个小程序,是在 Visual Studio 2008 中用 C# 编写的,我可以使用 VS2008 中的标准功能安装该程序。该程序通过 USB 电缆与硬件设备通信。 USB 驱动程序来自 ftdi,用户将其插入 USB socket 即可安装。这工作正常,但我希望在安装软件期间复制文件。完成后,在屏幕上显示消息,例如“Please in plug in your USB cable into the socket and click OK to continue”,从那一刻开始自动安装驱动程序。 (与为新打印机安装软件时相同)。

请指教我该怎么做。如果你能帮我从一些例子开始,那就太好了。

非常感谢,亨利。

最佳答案

这个有效:

// szInfDirectory is a directory on the hard drive where your installer copied the driver files to.

TCHAR szInfPath[MAX_PATH];
_tcscpy( szInfPath, szInfDirectory );
_tcscat( szInfPath, _T("YourDriver.inf") );

TCHAR szDestinationInfFileName[MAX_PATH];

if( (!SetupCopyOEMInf( szInfPath, szInfDirectory, SPOST_PATH, 0, szDestinationInfFileName, MAX_PATH, NULL, NULL )) )
{
nResult = ERR_COPYINF_FAILED;
return;
}

LPCTSTR HardwareIds[] =
{
_T("USB\\Vid_123f&Pid_0444"),
_T("USB\\Vid_123f&Pid_0555"),
};
const size_t cbMax = sizeof(HardwareIds) / sizeof(*HardwareIds);

bool fInnerLoopFailed = false;
for( size_t cb=0; (cb<cbMax) && (!fInnerLoopFailed); cb++ )
{
BOOL bRebootReqTemp = FALSE;
if( (!UpdateDriverForPlugAndPlayDevices( NULL, HardwareIds[cb], szInfPath, INSTALLFLAG_FORCE, &bRebootReqTemp )) )
{
if( ERROR_NO_SUCH_DEVINST == GetLastError() )
{
// nothing to do: device not present
}
else
{
nResult = ERR_UPDATE_DRIVER_FAILED;
fInnerLoopFailed = true;
break;
}
}
}

if( fInnerLoopFailed )
{
// error
return;
}

// success

关于c# - 安装完软件后如何安装USB驱动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5828547/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com