windows常用维护bat存档

admin 发布时间:2024-11-25 09:49

去除小箭头.bat

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
del "%userprofile%\AppData\Local\iconcache.db" /f /q
start explorer
pause

重置网络.bat

netsh int ip reset
netsh winsock reset
ipconfig /flushdns

网络优化用户最大端口

@echo off
echo 修改注册表以优化网络设置...

REM 设置最大用户端口 (MaxUserPort) 为 65535
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v MaxUserPort /t REG_DWORD /d 65535 /f

REM 设置 TCP 连接的等待时间 (TcpTimedWaitDelay) 为 30 秒
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v TcpTimedWaitDelay /t REG_DWORD /d 30 /f

echo 网络设置已优化,建议重启计算机使更改生效。
pause

锁屏.bat

%windir%\\system32\\rundll32.exe user32.dll,LockWorkStation