Can't get the icon completely removed after uninstallation.

This is to delete non existing files, but should work for you too.

  • Step 1

At first we get the correct file name.

Replace the "path to file folder" with the path on your PC. Keep the " in.

cmd.exe /c dir /a "C:\path_to_file_folder" > %UserProfile%\Desktop\List.txt"

Copy the modified code. Press [win] key. Then [Ctrl] + [V]. And press [enter].

This will create a text file on your desktop in which you find the exact name of the file.

  • Step 2

Now we delete the file

Replace "Your_path" with the same path you used in step 1. Make sure to keep the \?\ in front. Now replace "your_filename" with the filename you found in the text file. Keep the \ and "

cmd.exe /c del "\?\Your_path\your_filename" & pause

The only thing left to do is to copy the modified code and do the same as above.

If something didn't work or any questions come up let me know.

/r/techsupport Thread