Jump to content

Recommended Posts

Posted

 请添加以下新功能:PC应用锁、文件应用锁、软件卸载功能、网络修复以及删除快捷方式箭头。

https://www.dropbox.com/scl/fo/znj227ngbx6fjj4sjdig8/AChfnDBy1_HnP20GCUV7lZg?rlkey=g32sdfh581bozo1j9md9qnnzz&st=j5fgsxny&dl=0

 

 

请添加以下新功能:PC应用锁、文件应用锁、软件卸载功能、网络修复以及删除快捷方式箭头。

屏幕截图 2026-03-27 082242.png

Many thanks to the developers for their hard work

They are very practical tools or functions that users frequently need.

Posted

you may try another vendor

sincerely

  • Like 1
Wesly.Zhang
Posted

What actually means about “PC应用锁、文件应用锁”?

PC应用锁, Do you need to unlock with a password when launching a certain application?

文件应用锁, Is a password required to open a certain file?

软件卸载功能,I personally recommend you use the open-source Geek Uninstaller.

网络修复, Solve it with a single command,

netsh winsock reset 

Restart the computer.

删除快捷方式箭头, It can be completed with just one batch file. run it as administrator.

@echo off
:: =========================================================
::  Hide Windows Desktop Shortcut Arrow (Hide Arrow)
::  Version: 1.0
::  Date: 2026-03-30
:: =========================================================

:: ---------------------------------------
:: 1. 检测系统位数(32位或64位)
::    注:64位系统需要在64位注册表视图中操作
:: ---------------------------------------
reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\NT" /v "SystemSetupInProgress" >nul 2>&1
if %errorlevel% equ 0 (
    set "REG_ROOT=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons"
) else (
    :: 兼容32位系统
    set "REG_ROOT=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons"
)

:: ---------------------------------------
:: 2. 添加/修改注册表键值 "29"
::    将其指向一个空的图标资源
::    注意:如果系统已经有此键值,请确保备份后再修改
:: ---------------------------------------
reg add "%REG_ROOT%" /v "29" /t REG_SZ /d "%SystemRoot%\system32\shell32.dll,-1" /f

:: ---------------------------------------
:: 3. 提示用户操作结果
:: ---------------------------------------
echo.
echo [Info] 已成功写入注册表键值。
echo [Info] 现在需要重启资源管理器或计算机才能生效。
echo.

:: ---------------------------------------
:: 4. 询问是否立即重启资源管理器
:: ---------------------------------------
set /p RESTART="是否立即重启资源管理器以应用更改? (Y/N): "
if /I "%RESTART%"=="Y" (
    echo 正在尝试重启资源管理器...
    taskkill /f /im explorer.exe >nul 2>&1
    start explorer.exe
    echo [Info] 资源管理器已重启。请检查桌面图标是否已隐藏箭头。
) else (
    echo 请手动重启计算机或资源管理器以应用更改。
)

pause

 

  • Thanks 1

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...