我有以下CustomAction
:
<CustomAction Id="CopyToSystem32" ExeCommand="copy /y 64bits.txt C:\Windows\System32" Directory="INSTALLFOLDER" Impersonate="no" Execute="deferred" Return="asyncWait" />
<InstallExecuteSequence>
<Custom Action="CopyToSystem32" After="InstallFiles" >VersionNT64</Custom>
</InstallExecuteSequence>
因此,当它检测到64位操作系统时,它会将文件复制到System32文件夹。如果我用.bat文件执行它,它工作正常。但我更希望它是一个批处理命令。
日志说明如下:
MSI (s) (74:AC) [10:08:33:473]: Executing op: ActionStart(Name=CopyToSystem32,,)
Action 10:08:33: CopyToSystem32.
MSI (s) (74:AC) [10:08:33:473]: Executing op: CustomActionSchedule(Action=CopyToSystem32,ActionType=3234,Source=C:\Program Files (x86)\SetupProject\,Target=copy /y 64bits.txt C:\Windows\System32,)
MSI (s) (74:AC) [10:08:33:474]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])
Action 10:08:33: RegisterProduct. Registering product
MSI (s) (74:AC) [10:08:33:474]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,MediaCabinet=1\cab1.cab,BytesPerTick=0,CopierType=1,,,SignatureRequired=0,,,IsFirstPhysicalMedia=1)
MSI (s) (74:AC) [10:08:33:474]: Executing op: DatabaseCopy(DatabasePath=C:\Windows\Installer\32ea43.msi,ProductCode={0C013216-61FB-4283-AF0A- 6CB264019F5B},,,)
MSI (s) (74:AC) [10:08:33:474]: Note: 1: 1402 2: UNKNOWN\Products\612310C0BF163824FAA0C62B4610F9B5\InstallProperties 3: 2
1: CopyToSystem32 2: 1631
为什么ExeCommand
没有复制我的文件?
谢谢!
答案 0 :(得分:5)
AFAIK copy
是命令shell解释器的一部分,而不是命令本身。 E..g你可以检查这个,例如在dir copy.* /s
- 文件夹中执行Windows
。没有独立实现copy
的文件。
你能做什么:在命令解释器的调用之前,例如:
cmd /c copy /y 64bits.txt C:\Windows\System32
/c
- 参数告诉解释器在执行后关闭(您也可以使用[%COMSPEC]
- 环境变量而不是cmd
)。您还可以使用CAQuietExecute
自定义操作来阻止cmd弹出窗口,如here所述
也许您也可以使用CopyFile
-element来完成任务?这样你就不必处理shell窗口等。