A feature much needed in File Explorer:
Batch rename multiple files (adding a string at the beginning):
for /F "delims=" %%x in ('dir /b *.txt') do ( ren "%%x" "somethingnew%%~nx.txt" )