up vote 6 down vote favorite
1
share [g+] share [fb]

Does anyone know if it's possible to change a setting so that the full file name is selected when you rename a file in Windows 7? (i.e. to match the behavior in Windows XP).

Currently it doesn't select the extension, so I have to do it manually.

link|improve this question
1  
Why do you need this? How many times do you want to change the extension when renaming? – ChrisF Mar 1 '10 at 14:02
1  
I was wondering how long it would take for someone to ask for this. – ChrisF Mar 1 '10 at 14:03
4  
I actually rename extensions all the time at work (i.e. working with multiple copies of a file, .bak, .bakorig, .bakphase2, etc) so I can work with multiple file versions with automated processes and have the process pick up only the version I'm currently testing. – BBlake Mar 1 '10 at 14:36
1  
I'm a developer and basically spend a lot of my time renaming files-in particular changing the extension or copying the filename (by pressing F2 then Ctrl-C). I agree it is a good feature for most users, but in my case more of a hindrance. – John Sibly Mar 1 '10 at 14:37
1  
I wanted to do the opposite, which is to rename files in WinXP like Win7, and the answers may be useful for you: superuser.com/questions/102104/… – Mehper C. Palavuzlar Mar 1 '10 at 14:44
show 4 more comments
feedback

protected by Community Jun 3 '11 at 18:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

2 Answers

up vote 5 down vote accepted

Well, sure, if you're willing to go third-party.

#IfWinActive, ahk_class CabinetWClass
F2::Send {F2}^a
#IfWinActive

In the AutoHotKey scripting language. If you, for whatever reason, don't want to/can't install autohotkey, give me a shout in the comments and I'll compile a script containing that so it can run on it's own (and should not have any requirements such as .net)

link|improve this answer
Thanks for the advice-this does the trick. I'm sure AutoHotKey could be useful solving a number of other issues as well! – John Sibly Mar 2 '10 at 14:53
1  
@John; Autohotkey is something I adore unreservedly. I'm fairly sure there's very little it can't do. – Phoshi Mar 2 '10 at 15:36
feedback

If you are not positive that you will want to rename the whole thing more often than not (or even if you just don't want to mess with anything, can remember, and can do it fast enough), just type Ctrl + a after you start editing and before you start typing the filename. It's barely any work at all since you're going to type in a new filename anyway.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.