Open the folder containing all the files to be renamed in Windows File Explorer, please be sure you are in the correct folder.
In the Address bar, type powershell and press Enter !
That should open PowerShell in that folder, check in the PowerShell window that you are in that folder !
Paste this into PowerShell and press Enter:
get-childitem . | foreach { rename-item $_ $_.Name.Replace("__", " ") }
That command will replace all underscores with a space in all file names in that folder.
Inside the first quote replace the underscore “_” with anything you want to replace and in the second quote inside the bracket put the text you want to replace it with. like with space in current scenario.