first commit

This commit is contained in:
2025-03-31 16:05:17 +08:00
commit 1c097d8320
33 changed files with 28 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 818 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 696 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

+2
View File
@@ -0,0 +1,2 @@
在 一键装逼 文本中修改eNSP软件目录,然后重命名为bat拓展文件双击启动,然后选择对应项确认即可
修改图标后需要重启软件
+26
View File
@@ -0,0 +1,26 @@
@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