File size: 570 Bytes
899fbd2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
@echo off
pushd %~dp0
set SEVEN_ZIP=7zr.exe
if not exist %SEVEN_ZIP% ( curl -LO https://www.7-zip.org/a/7zr.exe )
set DST=RinneVoiceSet
xcopy /QY README.md %DST%\
xcopy /QY README.png %DST%\
xcopy /QY Setup.bat %DST%\
xcopy /QY Sing.md %DST%\
xcopy /QY Sing0.png %DST%\
xcopy /QY Sing1.png %DST%\
xcopy /QY Sing2.png %DST%\
xcopy /QY Speech.md %DST%\
xcopy /QY Speech.png %DST%\
xcopy /QY VoiceChange.md %DST%\
xcopy /QY VoiceChange.png %DST%\
7zr a %DST%\DoNotExtract.7z^
Sing.bat^
Speech.bat^
SpeechCPU.bat^
VoiceChange.bat
popd
|