win7 ipv6关闭,superfetch等一些快捷命令,解决win7或win10电脑内存占用较高,或者磁盘占用较高问题。有兴趣的朋友可以测试一下。
请复制横线下内容,放入一个txt文件,保存关闭,修改文件txt后缀为bat。
-----------------------------------
@echo off
echo 关闭IPV6 teredo,6to4,isatap隧道,加快win7系统远程速度......
netsh interface IPV6 set global randomizeidentifier=disabled
netsh interface IPV6 set privacy state=disable
echo 已关闭IPV6 !
netsh interface teredo set state disable
echo 已关闭teredo隧道!
netsh interface 6to4 set state disable
echo 已关闭6TO4隧道!
netsh interface isatap set state disable
echo 已关闭isatap隧道!
netsh interface tcp set global autotuninglevel=disabled
echo 已加快win7系统远程速度!
net stop wuausery
echo关闭系统更新服务
sc config wuausery start= disabled
echo 禁用系统更新服务
net stop SysMain
sc config SysMain start= disabled
echo 禁用系统superfetch服务
net stop WSearch
sc config WSearch start= disabled
echo 禁用系统windows search 服务
net stop defragsvc
sc config defragsvc start= disabled
echo 禁用系统磁盘整理 服务
powercfg /h off
echo 关闭系统休眠!
echo 已设置完成!按任意键退出。。。
echo. & pause