Using excel to rename all files within this folder
Open Excel.
In A1, type in Folder Path.
In B1, type in C:\Users\username\Desktop\foldername\.
Press ALT + F11.
Click Insert > Module.
Type in the code.
pRESS f5.
Sub Rename_all_files_in_a_folder()
Folder_Name = Range("B1").Value
File_Name = Dir(Folder_Name)
Do Until File Name = ""
Name Folder_Name & File_Name As Folder_Name & " - " & File_Nme
File_Name = Dir
Loop
End Sub