This works!
- Right click Desktop and select Personalize from Windows11 Settings menu
- Select [Start]
- Turn off [Show recently opened items in Start, Jump List and File Explorer.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
A few months ago I switched to a new laptop, then immediately downloaded windows upgrade on it, so I don't know which factor causes this. But ever since, every time I rename a file on the desktop, windows immediately moves the file to the upper left corner of the screen, or the nearest open space to this point. This is confusing when I'm trying to keep track of and arrange my desktop files in some other way, and I have to keep moving the file back to where I want it.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
This works!
That does not work in WIN11. The tab remains unchecked and still, DOES NOT allow icon to stay where I put it. It jumps to top left of screen.
Hi, I figured it out and maybe you all did already by now.
The solution is simple:
Voila!
I just did some quick testing...
Set Windows to ONLY show on display 1 (total display size: 1920x1080).
Copied a file onto the desktop, and renamed it. IT STAYED IN POSITION!
Set Windows to ONLY show on display 2 (total display size: 1920x1080).
Renamed the file again. IT STAYED IN POSITION!
Set Windows to show on BOTH displays (extended) (total display size: 3840x1080).
Renamed the file again. IT STAYED IN POSITION!
Restart the PC.
Rename the file again. IT STAYED IN POSITION!
For some ODD reason, that seems to fix my issue, FOR NOW(!)
I found if I rename a file using the command line (ren file1.txt newname.txt) the file is permanently fixed and won't move when I rename it normally. I can copy the file and that file will be fixed as well.
A work-around (and not a very good one) is to rename in an Explorer window, which can be opened with ctrl-n.
different window operation
I'm not sure what the command line rename is doing different than right click rename, but hoping someone smarter than figures it out soon
same window operation
try
right click properties, change name
or
add context menu
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Classes\AllFilesystemObjects\Shell\Rename]
@="Rename"
[HKEY_CURRENT_USER\SOFTWARE\Classes\AllFilesystemObjects\Shell\Rename\command]
@="wscript.exe "C:\Users\someone\somewhere\rename.vbs" "%1""
rename.vbs
Set fso=CreateObject("Scripting.FileSystemObject")
For Each path In WScript.Arguments
If fso.FileExists(path) Then
Set file=fso.GetFile(path)
Else
Set file=fso.GetFolder(path)
End If
name=InputBox(file.Path,"Rename ?",file.Name)
If name<>"" Then file.Name=name
Next