All the steps I took to complete the move:
cd “C:\Program Files (x86)\Notepad++\plugins”
dir .dll
for %a in (.dll) do @echo %a
for %a in (.dll) do @echo %~na
for %a in (.dll) do @if not exist %~na echo %~na
for %a in (.dll) do @if not exist %~na echo %~na & mkdir %~na
dir
for %a in (.dll) do @move %a %~na
dir
Steps that actually did the work:
cd “C:\Program Files (x86)\Notepad++\plugins”
for %a in (.dll) do @if not exist %~na echo %~na & mkdir %~na
for %a in (.dll) do @move %a %~na
Opening NPP again listed the missing addons (all were missing).
One was outdated, I don’t use it anyway.