Files
eNSPchICOscript/一键装逼.txt
2025-03-31 16:05:17 +08:00

27 lines
728 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
@chcp 65001 >nul
echo ---------------------------------------
echo 1.使用新版图标
echo 2.恢复旧版图标
echo ---------------------------------------
echo 请输入选项再按Enter回车键
set /p choice=
set "current_path=%~dp0"
set "new_icons=%current_path%CCIELUO_New_ensp\*"
set "old_icons=%current_path%CCIELUO_Old_ensp\*"
set "dest_path=C:\Program Files\Huawei\eNSP\res\DeviceType"
if "%choice%"=="1" (
xcopy /Y /E "%new_icons%" "%dest_path%" >nul
echo 恭喜装逼成功现在打开ensp看看吧
) else if "%choice%"=="2" (
xcopy /Y /E "%old_icons%" "%dest_path%" >nul
echo 恢复图标成功!
) else (
echo 无效的选项。
)
echo 按任意键退出
pause >nul