Home > Common Problem > body text

How to remove the small arrows on the computer desktop

藏色散人
Release: 2020-09-05 16:24:13
Original
149637 people have browsed it

How to remove the small arrow on the computer desktop: First press the [win R] key combination to open the run window; then enter [cmd /k reg delete "explorer.exe & start explorer"]; finally click [OK] 】That’s it.

How to remove the small arrows on the computer desktop

How to remove the small arrows on the computer desktop?

The first method:

1. Remove the application by entering it in "Run". First, use the win R key to bring up the run window.

How to remove the small arrows on the computer desktop

2. Enter in the run window:

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

Then click OK. We will find that the small arrow on the desktop has been removed.

How to remove the small arrows on the computer desktop

The second method:

1. To remove through batch command, first create a text document and enter:

@echo off
color 2
reg delete HKCR\lnkfile /v IsShortcut /f
reg delete HKCR\piffile /v IsShortcut /f
reg delete HKCR\InternetShortcut /v IsShortcut /f
taskkill /f /im explorer.exe && explorer
Copy after login

How to remove the small arrows on the computer desktop

2. Modify the extension of the new text to bat, so that it will become a system batch command, double-click to run. We found that the desktop icon was gone.

How to remove the small arrows on the computer desktop

The third method:

Use security software. Most of the current security software comes with manual computer clinics. We open and select "Remove Shortcut" Way small arrow”

How to remove the small arrows on the computer desktop

The above is the detailed content of How to remove the small arrows on the computer desktop. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!