我需要能够做installer.msi /bob
或installer.msi /bob=1
以及其中一种语法
<CustomAction Id="Script"
Execute="deferred"
Return="ignore"
Impersonate="no"
ExeCommand=ExeCommand=""C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -executionpolicy Bypass -NoExit -File "[MERGESCRIPTDIR]IndexManager_v03.ps1" "
Directory="INSTALLDIRGLOB"/>
我需要在exe命令字符串中添加" -bob"
,以便我的Powershell脚本无法发送类似
ExeCommand=""C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -executionpolicy Bypass -NoExit -File "[MERGESCRIPTDIR]IndexManager_v03.ps1" -bob"
基本上,我需要将msi传递给布尔型的Powershell脚本