d
Thanks so Very Very Much for the suggestions to try. I started changing the wording for my issue to search for duplicate file on desktop and have been doing a lot of ...option one showed that all drives are working properly.
Will run option 4 - check drive for errors using "repair-volume" in powershell now
The File not found errors remind me of problems many experienced when Controlled Folder Access first came on the scene. You might try disabling that while trying to rid yourself of this problem.
- Open the
Start Menu
& begin typing "Controlled
". Controlled Folder Access should be offered as a result. - Open & turn off Controlled Folder Access.

--- Other thoughts ---
Do you still have these seemingly identically named files in the Desktop folder?:
04/14/2021 07:47 PM 290,082 all labs to march 2021.pdf
04/14/2021 06:00 PM 297,980 all labs to march 2021.pdf
If so, could you open PowerShell to the folder location and Copy & paste the following commands one-at-a-time and copy hte results to your reply:
( Move other PDFs out of the folder )
gci *.pdf
- The above should list both files. Curious if Mode (Attrubutes) are the same on both files.
If the above command returns both files, please continue with the folloiwing. If only one or none are returned, please post back with detail.
gci *.pdf | %{ ( [UInt16[]][Char[]]$_.Name ).ForEach({ '{0:x4}' -f $_ }) -join '|' }
- Checking for non-printing characters and non-stndard spaces
- If you want to try another deletion method that might work with non-standard characters, try:
gci *.pdf | Remove-Item -LiteralPath { $_.FullName }
Final Thought
A brute-force method that might work would be to:
- From the Location tab in its Properties dialog, Re-direct the Desktop folder under This PC to a newly-created folder (of any name) in the same folder as the original Desktop folder. But when prompted, don't move the files. Once you do this, you'll have two folders both displaying the name Desktop. The original, with the files from your Desktop, will no longer have the Location tab in its Properties.
- Copy all files except the problematic ones from the old folder to the new one.
- In the old folder with the problem files, Shift + Rt-Click in the folder background & select Open PowerShell window here
- Copy & paste these two commands into the window & press Enter.
ri desktop.ini -force
(gi .).Attributes -= 'ReadOnly'
- If there are no errors, type
sl ..
to move up one level. - TYpe gci -ad to list folders. You should see hte Desktop folder we just left and your newly-created folder displaying its true name.
- Now, you can try to delete the old Desktop folder with the bad files inside it with this command:
ri Desktop -Recurse -Force
Good Luck!!!