• Launch a Batch File With Windows Installer


    Quote from: http://flexerasoftware.force.com/articles/en_US/HOWTO/Q111515

     

     

    Synopsis

    This article describes how to launch a batch file from a Windows Installer (MSI-based) setup.

    Discussion

    The following steps describe how to create a custom action that launches a batch file targeted to be installed to the main installation directory location (i.e., the location stored in the INSTALLDIR MSI property).

    1. Make sure that the installer is configured to install the batch file to the main installation directory location (i.e., the location stored in the INSTALLDIR MSI property)
    2. Launch the Custom Action Wizard. For more information, see the "Additional Information" section of this article.
    3. On the "Basic Information" dialog, enter a name (i.e., test) for the custom action in the Name field.
    4. Click the Next button.
    5. On the "Action Type" dialog, set the "Type" to "Launch an executable" and the "Location" to "Stored in the Directory Table".
    6. Click the Next button.
    7. On the "Action Parameters" dialog, set the "Source" to "SystemFolder" and the "Target" to the following:

    "[SystemFolder]cmd.exe" /c "[INSTALLDIR]NameOfBatchFile.bat"

    This command calls cmd.exe (the executable for the Windows command prompt) from the location stored in the SystemFolder MSI property and passes cmd.exe the path to the batch file. Cmd.exe accepts various parameters. For example, to have the command prompt window close after launching the batch file, use the /c parameter, as in the example above. To have the command prompt window remain open after launching the batch file, use the /k parameter instead. For more information regarding the parameters accepted by cmd.exe, see the "Additional Information" section of this article.

    1. Click the Next button.
    2. On the "Additional Options" dialog, keep the default values selected.
    3. Click the Next button.
    4. On the "Respond Options" dialog, keep the default values selected.
    5. Click the Next button.

    On the "Insert into Sequence" dialog, set the "Install Execute Sequence" to "After InstallFinalize" and the "Install Execute Condition" to the following: Not Installed and VersionNT. This condition instructs the install to only execute the custom action during a first-time install on an NT-based target system.

    Additional Information

    This method is restricted to NT systems.

    For more information about the Microsoft cmd.exe command interpreter, please refer to Microsoft TechNet article Cmd

    For more information on the VersionNT property, please refer to MSDN article VersionNT Property

  • 相关阅读:
    LaunchScreen.storyboard 换了图片 不能更改过来 解决方案
    iOS Google 地图 集成详解
    Mac下 使用git clone 代码慢解决方案
    iOS 函数式编程
    iOS [self class] 、 [self superclass]、 [super class] 、[super superclass] 几种情况对比
    iOS 链式编程-Block 作为放回值
    iOS block的变量捕获(capture)
    iOS Block本质探究
    iOS 读写操作 处理 pthread_rwlock dispatch_barrier_async
    iOS atomic 和 nonatomic 区别
  • 原文地址:https://www.cnblogs.com/cindy-hu-23/p/3596194.html
Copyright © 2020-2023  润新知