wix
  • installation
  • install
  • wix3.7
  • 2014-04-10 2 views 3 likes 
    3
    <CustomAction Id="RegisterEXE" Directory="INSTALLDIR" ExeCommand="&quot;INSTALLDIR]MyApp.exe&quot; /Register" Execute="immediate" Return="ignore" /> 
    <InstallExecuteSequence> 
        <Custom Action='RegisterEXE' After='InstallFinalize' /> 
    </InstallExecuteSequence> 
    

    이 코드를 사용했습니다. 하지만 exe는 실행하지 않습니다. Exe 자체를 OLE 서버로 등록하고 다른 몇 가지 작업을 수행합니다.wix 설치 중에 exe를 실행하는 방법

    답변

    1

    사용이

    <CustomAction Id="RegisterEXE" 
            Directory="INSTALLDIR" 
            ExeCommand="&quot;[INSTALLDIR]TKW5.exe&quot; /Register" 
            Execute="deferred" 
            Return="ignore" 
            Impersonate="no" 
           /> 
    
    <InstallExecuteSequence> 
         <Custom Action='RegisterEXE' After='InstallFiles' /> 
    </InstallExecuteSequence> 
    
    +0

    고맙습니다 ...이 위대한 작품 .. – chetan

     관련 문제

    • 관련 문제 없음^_^