7-zip有CLI,呼叫後應該可以用
裝
因我要下載「http://api-hisecurecdn.cdn.hinet.net/MOICARenewCertSetup.zip」
下載後,可以自動解壓縮,然後在安裝,但這些步驟需要用批次檔執行完成!
我有指令,是否可用如下指令修改!
@echo off
setlocal ENABLEEXTENSIONS
set CurrDir=%~d0%~p0
set CurrDir=%CurrDir:~0,-1%
set path=%CurrDir%;%windir%\system32;%path%
pushd %DOWNLOAD_FOLDER%
set MSG=下載『PPS』時,發生錯誤
START Wbusy "下載中…" "AppRemover" /count
wget -cN http://www.appremover.com/download -O AppRemover.exe
START Wbusy "下載中…" "下載結束" /stop /timeout=5
if errorlevel 1 (
echo %MSG%
Wprompt 錯誤 "%MSG%" Ok x
goto error
)
Set MSG=執行『AppRemover』時,發生錯誤
AppRemover.exe
if errorlevel 1 (
echo %MSG%
Wprompt 錯誤 "%MSG%" Ok x
goto error
)
goto ok
:error
set MSG=由於發生錯誤,程式結束!!!
Wprompt 訊息 "%MSG%" Ok i
goto end
:ok
Wprompt 訊息 全部正常結束。 Ok i
:end
if exist *.htm del /f /q *.htm
if exist *.html del /f /q *.html
if exist *.txt del /f /q *.txt
popd
endlocal