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

1.產品上位機程序,須要驅動支持,在安裝  exe程序的時候,連同NET框架4.0和 .inf驅動文件,一塊兒安裝,框架

   安裝驅動的時候,會發現,spa

   若是系統 C:\Windows\Inf 缺乏mdmcpq.inf文件和 C:\Windows\System32 缺乏usbser.sys 文件,prototype

   就會出現code

安裝設備時出現一個錯誤,這個INF中的服務安裝段落無效

  因此在安裝的時候,要用腳本判斷一下,是否存在這兩個文件。blog

  我創建的是Installshield script項目。 在organization 目錄新建features,命名爲 DriverPatchip

export prototype DriverPatch_Installed();
function DriverPatch_Installed()
string s; 
number r;
begin   
    if(FindFile ("C:\\Windows\\Inf","mdmcpq.inf",s)  <0)
    then   
       r=  CopyFile (TARGETDIR^"\\mdmcpq.inf", "C:\\Windows\\Inf\\mdmcpq.inf");   
    endif;   
    
     if(FindFile ("C:\\Windows\\System32","usbser.sys",s)  <0)
    then   
       r=  CopyFile (TARGETDIR^"\\usbser.sys", "C:\\Windows\\System32\\usbser.sys");   
    endif;   
end;
相關文章
相關標籤/搜索