我需要做誰禁用所有任務的批處理文件的所有任務,到目前爲止,我已經得到了這一點: @echo OFF
for /f "tokens=2 delims=:" %%i in ('schtasks /Query /FO LIST ^| findstr "Nombre de tarea:"') do (call :subroutine "%%i")
:subroutine
set TASKNAME=
與維克斯任務 我在.wxs文件中的以下XML上卸載運行的批處理文件: <InstallExecuteSequence>
<Custom Action="uninstall_action" After="InstallInitialize">Installed AND NOT UPGRADINGPRODUCTCODE</Custom>
</InstallExecuteSequence>