Quantcast
Viewing all articles
Browse latest Browse all 13

Answer by pulsejet for Open With on multiple files?

This will open all jpg files in the folder in Chrome in separate tabs

1) Copy all the JPG files you want to open to a folder.

2) Open notepad. Paste the code below inside. Click save. Go to the folder mentioned above. Give the name as "open.bat" and select "All Files" below. Save.

3) Go to the folder and open "open.bat"!

Code:

set PATH=%PATH%;C:\Program Files (x86)\Google\Chrome\ApplicationSET names=for /r %%i in (*.jpg) do call SET names= %%names%% "%%i"echo %names%start chrome.exe %names%

I've assumed the default installation directory of chrome. You may need to change it if you have done a custom installation.


Viewing all articles
Browse latest Browse all 13

Trending Articles