美文网首页
Windows Tips

Windows Tips

作者: 水陌轻寒 | 来源:发表于2018-01-25 21:23 被阅读0次

    · 解决任务栏程序图标显示白色

    解决任务栏程序图标显示白色

    · 去除小箭头.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 (右键管理员运行)

    reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /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
    

    · 查看端口占用

    netstat -ano | findstr 0.0.0.0:80
    # 知道PID,任务管理器杀进程
    

    相关文章

      网友评论

          本文标题:Windows Tips

          本文链接:https://www.haomeiwen.com/subject/kgebaxtx.html