It is quite easy to rename files recursively in lower and upper case using the Explorer address bar under Windows Desktop 11, 10, ... etc. and Server OS!
Example in the Quad Explorer from the address bar with additional recurse to include all subfolders!
Renaming files from lowercase to uppercase letters or from uppercase to lowercase letters can be so easy and can also be implemented by Windows beginners!
Content:
1.) ... Easy Rename to Upper or Lower Case via Address bar
2.) ... Easy add to the Run Menu in The Quad-Explore Upper and Lower Case!
1.) Easy Rename to Upper or Lower Case via Address bar
powershell Dir -Recurse | Rename-Item -NewName {$_.BaseName.ToUpper() + $_.Extension.ToUpper()}without subfolder omit the command -recurse
powershell Dir | Rename-Item -NewName {$_.BaseName.ToUpper() + $_.Extension.ToUpper()}
(... see Image-1 Point 1)
PS: You can also use the address bar in MS Windows Explorer!
See also:
►► How to change the path in the address bar or copy it!
►► Use the directory tree in the Explorer address line!
►► Delete data without file extension in all sub-folders!
(Image-1) Stacks of files in upper and lower case over the address line! |
![]() |
Is it possible to change file names from lower case to upper case in bulk?

2.) Easy add to the Run Menu in The Quad-Explore Upper and Lower Case!
1. Easy Click on Run Menu
2. Select Add
3. Enter The New Commands:
To Uper=%windir%/System32/WindowsPowerShell\v1.0\powershell.exe=Dir | Rename-Item -NewName {$_.BaseName.ToUpper() + $_.Extension.ToUpper()}
To Lower=%windir%/System32/WindowsPowerShell\v1.0\powershell.exe=Dir | Rename-Item -NewName {$_.BaseName.ToLower()+ $_.Extension.ToLower()}
PowerShell=%windir%/System32/WindowsPowerShell\v1.0\powershell.exe
4. And use new Rename Commands
(... see Image-2 Point 1 to 5)
2. Select Add
3. Enter The New Commands:
To Uper=%windir%/System32/WindowsPowerShell\v1.0\powershell.exe=Dir | Rename-Item -NewName {$_.BaseName.ToUpper() + $_.Extension.ToUpper()}
To Lower=%windir%/System32/WindowsPowerShell\v1.0\powershell.exe=Dir | Rename-Item -NewName {$_.BaseName.ToLower()+ $_.Extension.ToLower()}
PowerShell=%windir%/System32/WindowsPowerShell\v1.0\powershell.exe
4. And use new Rename Commands
(... see Image-2 Point 1 to 5)
(Image-2) Rename files recursively in lower and upper case via Run-Command! |
![]() |
