If you have been looking out for a simple way to open multiple files, then you can create a batch file and specify the files to open. This example assumes that there are 2 text and 1 pdf file in a folder. Follow these steps to open all of them at once:
Open Notepad and copy and paste the lines below:
@echo off
start Copy1.txt
start Copy2.txt
start Copy3.pdf
Save the notepad file with the .bat extension in the same folder where the .txt and .pdf files are kept. Now to open all these files at once, just execute the .bat file by double clicking it
Tweet
1 comment:
Doesn't seem to work.
It just opens multiple cmd windows
Post a Comment