1
0
mirror of synced 2024-12-02 17:57:18 +01:00
CriTools/win_decrypt_hca.bat

8 lines
238 B
Batchfile
Raw Normal View History

2019-11-14 04:40:43 +01:00
@echo off
set /P key=Please input key and press Enter:
if "%key%"=="" set key=0
set /P awbKey=Please input awbKey and press Enter:
if "%awbKey%"=="" set awbKey=0
node.exe "%~dp0index.js" decrypt_hca -k %key% -w %awbKey% %*
pause