You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
663 B
32 lines
663 B
@echo off
|
|
cls
|
|
call %kernel%\line.bat
|
|
echo Phenom Package Kit Helper
|
|
echo Basic Useage:make ppk [Command] [Option]
|
|
call %kernel%\line.bat
|
|
|
|
if "%1"=="creat_ppk" goto create
|
|
if "%1"=="remove_ppk" goto remove
|
|
if "%1"=="list_exist" goto list_exists
|
|
|
|
goto __help
|
|
|
|
:creat_ppk
|
|
if "%%2"=="" goto help
|
|
if exist %appdir%\%2 echo The Package Has Exist! && goto end
|
|
mkdir %appdir%\%2
|
|
mkdir %appdir%\%2\data
|
|
mkdir %appdir%\%2\support
|
|
echo ELAv3>%appdir%\%2\support\ELAv3
|
|
|
|
|
|
|
|
:help
|
|
echo Command:
|
|
echo creat "name" --copyfrom [origin_ppk]
|
|
echo creat "name" --copydata [data_origin_ppk]
|
|
echo remove "name"
|
|
echo list_exist "name"
|
|
goto end
|
|
|
|
:end |