File Not found in Windows 8

Car4David

Honorable
Aug 27, 2012
37
0
10,530
Hello,
I am currently using Windows 8 release preview and been making a lot of changes. I made a folder in my desktop and later decided that it was useless. When I try to delete it, it says "could not find this item" and no matter how many times I try it, it doesn't delete. Refreshing doesn't help either. When I add a folder to it, it makes a new folder on my desktop with nothing inside it with the same name for some reason. I can delete it but it's weird.
 
I think you are talking about a desktop shortcut that is a "stubborn icon", not a metro block?

Might initially right click on it, make sure on the General Tab the "read only" checkbox is not checked.
Otherwise, go to Accessories, use the CMD command line interface, go to your UserName folder, then CD change directories to get to the Desktop folder. Then type Dir to see all the items listed there, including the "stubborn item". Then type delete "stubborn item" without the quotes. Hopefully that will delete it from the desktop.
 
I think what you are describing is a file or folder shortcut on your desktop, that you deleted the target file or folder that it pointed to.

Go to your Documents, and in My Documents, create a folder, call it StubbornTarget.
Now go to your desktop folder, and right click on it. and on the Shortcut Tab, there is a Target textbox.

Type the full address of this "StubbornTarget" Folder in it. Like "C:\Users\UserName\Documents\StubbornTarget"

Now it is connected to a target, and you should now be able to delete the desktop icon shortcut, since it has a valid target.
When done, and successful, just delete the "StubbornTarget" folder in My Documents.
 
Solar's idea is a good one to try.

Other than that, there aren't other options. As a consolation, the Win-8 comsumer preview will expire in two weeks and won't function.
Am using the same version, but have to remember it is a beta version, not the final one.
 

how do you get into safe mode via the command prompt....or in general? :)
 

I'm using the release preview so mine expires on January 15, 2013
 
Safe mode is in a completely different location in Win-8.

In Metro, settings, the PC settings screen

Click on General, then Troubleshoot, then Advanced Options, then StartUp settings, then SafeMode with command prompt.

You will need to know basic Cmd line scripting, to "CD" to get to the Desktop, then Del "StubbornIcon"
 
In Win-8, unless there is an error during the startup process, you can't get to the Win-RE by clicking F8 for Advanced Boot Options, during startup. It's not an option anymore! That's why I presented the steps to get to safe mode through the Metro shell.
 



Thanks for the info John.
 
Obviously John's answer is the far easier method, but for future usage in other situations:
I did find that if you press the Shift and F8 key, it will give you options such as Safe Mode.
"See Advanced Repair Options"
Then the "Troubleshoot" to refresh or use advanced tools
Then select "Advanced Options"
Now choose the "Windows Startup Settings" option
Finally hit the Restart button.

http://www.howtogeek.com/107511/how-to-boot-into-safe-mode-on-windows-8-the-easy-way/
 

I have already tried that and with no luck, I was not able to delete it as it says that there is no such folder.
 
Couple more things to try:

check this website for instructions to hide unusued desktop icons, or using the cleanup wizard for desktop icons.

http://www.ehow.com/how_6613641_create-folder-unused-desktop-icons.html

Another idea is to create a new icon on the desktop, give it a name. Then drag your stubborn icon into that folder. Then see if you can delete the new folder and stubborn one inside.

Finally, click on Windows Explorer, click Computer, then C: Drive, then User, then Username, then Desktop. Right click on the "Stubborn Icon" on the General Tab, and make sure there is no checkbox checked for ReadOnly or Hidden near the bottom. Click OK. Click again on the "Stubborn Icon" right click on it and click delete.
 


The system won't allow me to drag the folder into my new folder. It shows the "Folder not found" message.

My folder properties doesn't have readonly or hidden checked and when I do try to make it readonly, it gives me the message that the system cannot find the path specified.
 


Last thing I can think of to try - on the desktop right click to the context menu. One choice is "refresh". click on refresh to see if possibly it won't be refreshed since the system thinks it's not there!
 

That was the first thing I tried, actually, since I have had times where refreashing solved the problem, but sadly this wasn't one of those times
 
One more method to try to clear that icon.

Click on Windows explorer, C: drive, Users, Username, AppData, Local. In the list of files on the right, you will find IconCache.db, which holds all the collected icons used.

Rename it IconCacheOLD.db click OK, the back to the desktop.

On the Metro Start screen click on your photo or user picture, and log out.
Then reboot, back up to the desktop. May have to put your password in if you are using one.

Now the system will go out and get the required icons and place them in the IconCache.db which it rebuilds. It will be a lot smaller in size because it retrieves just the icons used, and add more to the cache as you use them.

Possibly that will clear that "stubborn icon" from the cache and it won't show up anymore.

You can check in the Local folder to see there is a new IconCache.db, and you can now delete the IconCacheOLD.db which is useless.
 

It, unfortuately, did not work. This does not seem to working. I now can't even make it hidden 🙁
 
1. Open up a command prompt (run cmd.exe from the Start Menu).
2. Navigate to the folder that the object resides in.
3. Run "dir /a /x /p" to display the contents of the folder, including hidden files (/a) and 8.3 filenames (/x).
4. Find the 8.3 filename of the object to the left of the regular, long filename.
5. Run "ren <8.3 name>" to rename the object, "del <8.3 name>" to delete it if it's a file and "rd /s <8.3 name>" to delete it if it's a folder.
Note: If renaming to a long filename, make sure to enclose the long filename in quotations. If that fails, temporarily rename it to an 8.3 name and then rename it to what you want outside of the command prompt.

I know this is old but I ran into this issue today and this is google's #1 result, might help other people