After upgrading my system from windows 10 to windows 11, I noticed that the renaming over UNC path doesn't work any more.
If I copy over the folder locally to C: everything works as expected. Renaming files manually in the UNC path works as well so I'm a bit puzzled as this seems to be an application thing.
This is my directory_rename.arb
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<AntRenamer Version="2.12.0" Date="03/08/2023">
<Batch>
<ChangeCase Option="3" AfterChars="(" UseLocale="0" IncludeExt="0" OnlyExt="0"/>
<StrRepl Search="." Repl=" " AllOccurences="-1" CaseSensitive="0" IncludeExt="0" OnlyExt="0"/>
<ChangeCase Option="1" AfterChars="(" UseLocale="0" IncludeExt="0" OnlyExt="0"/>
<Regexp Expr="(.+)((19|20)[0-9]{2}).(.*)" Repl="$1[$2]"/>
<ChangeCase Option="0" AfterChars="(" UseLocale="-1" IncludeExt="0" OnlyExt="0"/>
<StrRepl Search="[[" Repl="[" AllOccurences="-1" CaseSensitive="-1" IncludeExt="0" OnlyExt="0"/>
<StrRepl Search="([" Repl="[" AllOccurences="-1" CaseSensitive="-1" IncludeExt="0" OnlyExt="0"/>
</Batch>
</AntRenamer>
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Folder\shell\AntRename]
@="Ant rename me~"
[HKEY_CLASSES_ROOT\Folder\shell\AntRename\command]
@="C:\\Program Files (x86)\\Ant Renamer\\renamer.exe -b c:\\directory_rename.arb -aF %1 -g -x"
Thanks