The Accelerator HTML files are stored in:
E:\McNair\Projects\Accelerators\F6S Accelerator HTMLs\Accelerator_HTML_files
FUN FACT (MASS-RENAME FILES USING WINDOWS POWER SHELL):
The following command allowed me to append ".txt" to all files in a folder once in the proper directory:
Get-ChildItem * | Rename-Item -NewName { $_.name + '.txt'}
To change file formats, Microsoft suggests:
Get-ChildItem *.txt | Rename-Item -NewName { $_.name -Replace '\.txt', '.log'}