Add files via upload

This commit is contained in:
Namhyeon Go 2020-07-04 16:34:50 +09:00 committed by GitHub
parent 122d0e4862
commit 9f9716011a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

5
start.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
start app.hta &
echo done

10
unlock.bat Normal file
View File

@ -0,0 +1,10 @@
@echo off
:: https://stackoverflow.com/questions/12322308/batch-file-to-check-64bit-or-32bit-os
:: https://support.microsoft.com/ko-kr/help/556009
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set OS=32BIT || set OS=64BIT
if %OS%==32BIT bin\streams.exe -d app.hta
if %OS%==64BIT bin\streams64.exe -d app.hta
echo done