win7怎麼去除快捷方式的小箭頭

2022-01-14 11:29:40 字數 1310 閱讀 7961

新建乙個txt文件把以下內容複製進去 在重新命名001.bat 開啟就行了但要重啟之後才有效
@echo

off:menu

echo.

echo. =-=-=-=-=請選擇您要執行的專案=-=-=-=-=

echo.

echo. 1: 去除應用程式快捷方式圖示箭頭

echo.

echo. 2: 去除批處理快捷方式圖示箭頭

echo.

echo. 3: 恢復應用程式快捷方式圖示箭頭

echo.

echo. 4: 恢復批處理快捷方式圖示箭頭

echo.

echo.請輸入您要執行專案的序號:

set /p id=

if "%id%"=="1" goto

cmd1

if "%id%"=="2" goto

cmd2

if "%id%"=="3" goto

cmd3

if "%id%"=="4" goto

cmd4

pause

exit

:cmd1

clsecho.去除應用程式快捷方式圖示箭頭

reg delete "hkey_classes_root\lnkfile" /v "isshortcut" /f

exit

:cmd2

clsecho.去除批處理快捷方式圖示箭頭

reg delete "hkey_classes_root\piffile" /v "isshortcut" /f

exit

:cmd3

clsecho.恢復應用程式快捷方式圖示箭頭

reg add "hkey_classes_root\lnkfile" /v "isshortcut" /f

exit

:cmd4

clsecho.恢復批處理快捷方式圖示箭頭

reg add "hkey_classes_root\piffile" /v "isshortcut" /f

exit

執行

cmd /k reg delete "hkey_classes_root\lnkfile" /v isshortcut /f & taskkill /f /im explorer.exe & start explorer.exe

去除win7快捷方式小箭頭

reg add hkey local machine software microsoft windows currentversion explorer shell icons v 29 d systemroot system32 imageres.dll,196 t reg sz f taskk...

win7 快捷方式

一 windows鍵 空格鍵 space 作用 透明化所有視窗,快速檢視桌面 並不切換 快捷鍵 win 空格 小結 當你開啟了很多程式視窗的時候,這招非常有用,而且桌面還會有華麗的光影效果哦。沒用過的趕緊試試先 二 windows鍵 d 作用 最小化所有視窗,並切換到桌面,再次按又重新開啟剛才的所有...

去掉Win7快捷方式小箭頭

去掉win7快捷方式小箭頭的 如下 pause 投票給2和3的仔細看下面1 3步驟,尤其是第2步,看看截圖上 的格式,然後按照截圖的格式一模一樣的調整自己貼上的 這樣執行就不會出錯了 操作步驟如下 1 桌面右鍵新建乙個文字檔案 2 貼上上面的 到記事本中,按照下圖的格式貼上,注意格式不要錯誤,否則執...