zoukankan      html  css  js  c++  java
  • 删除win7快捷方式小箭头

    删除win7快捷方式小箭头

    reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,196" /t reg_sz /f
    taskkill /f /im explorer.exe
    attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
    del "%userprofile%AppDataLocaliconcache.db" /f /q
    start explorer

     XP去掉小箭头

    reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32shell32.dll,49" /t reg_sz /f
    taskkill /f /im explorer.exe
    attrib -s -r -h "%userprofile%Local SettingsApplication Dataiconcache.db"
    del "%userprofile%Local SettingsApplication Dataiconcache.db" /f /q
    start explorer
    pause

    恢复Win7快捷方式箭头

    reg delete "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /f
    taskkill /f /im explorer.exe
    attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
    del "%userprofile%AppDataLocaliconcache.db" /f /q
    start explorer
    pause

    恢复XP快捷方式箭头

    reg delete "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /f
    taskkill /f /im explorer.exe
    attrib -s -r -h "%userprofile%Local SettingsApplication Dataiconcache.db"
    del "%userprofile%Local SettingsApplication Dataiconcache.db" /f /q
    start explorer
    pause
  • 相关阅读:
    创建Graphics对象与Pen对象
    GDI+图形图像处理技术——GDIPlus绘图基础
    WPF的组成架构
    文件监控只FileSystemWatcher控件
    文件夹选择之FolderBrowserDialog控件
    SaveFileDialog控件
    文件选择之OpenFileDialog控件
    编码与解码
    写一个翻译小工具
    【转】字符集与字符编码简介
  • 原文地址:https://www.cnblogs.com/lovelp/p/4069340.html
Copyright © 2011-2022 走看看