0
変数の設定中に構文エラーが発生します。私が間違っているところを教えてください。バッチファイル:変数の設定中に構文が正しくない
@echo off
setlocal EnableDelayedExpansion
cd C:\data
for %%i in (*.pgp)
do
(
set encrypted=%%i
set decrypted=!encrypted:.gpg=!
gpg --batch --yes --passphrase "xyz" -o !decrypted! --decrypt !encrypted!
)
endlocal
私はそれが
ありがとうございました。 – sagarika