首页 > 其他 > 详细

installshield 判断mdmcpq.inf和usbser.sys 是否 存在

时间:2014-02-17 15:58:25      阅读:551      评论:0      收藏:0      [点我收藏+]

1.产品上位机程序,需要驱动支持,在安装  exe程序的时候,连同NET框架4.0和 .inf驱动文件,一起安装,

   安装驱动的时候,会发现,

   如果系统 C:\Windows\Inf 缺少mdmcpq.inf文件和 C:\Windows\System32 缺少usbser.sys 文件,

   就会出现

安装设备时出现一个错误,这个INF中的服务安装段落无效

  所以在安装的时候,要用脚本判断一下,是否存在这两个文件。

  我建立的是Installshield script项目。 在organization 目录新建features,命名为 DriverPatch

bubuko.com,布布扣
export prototype DriverPatch_Installed();
function DriverPatch_Installed()
string s; 
number r;
begin   
    if(FindFile ("C:\\Windows\\Inf","mdmcpq.inf",s)  <0)
    then   
       r=  CopyFile (INSTALLDIR^"\\mdmcpq.inf", "C:\\Windows\\Inf\\mdmcpq.inf");   
    endif;   
    
     if(FindFile ("C:\\Windows\\System32","usbser.sys",s)  <0)
    then   
       r=  CopyFile (INSTALLDIR^"\\usbser.sys", "C:\\Windows\\System32\\usbser.sys");   
    endif;   
end;
bubuko.com,布布扣

installshield 判断mdmcpq.inf和usbser.sys 是否 存在

原文:http://www.cnblogs.com/HCCZX/p/3551995.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!