I have an ISO file name lfs-ms.iso located at the following directory:
F:\MS\lfs-ms.iso
This ISO file contains an executable called lfs-inst.exe. I use this file many a times so I have to mount the ISO file manually every time and then open this executable. I wish to automate this process by using a command line script (.cmd). So I am building a script that first navigates to this directory, mounts the ISO file there and then opens the executable as mentioned above.
@echo off
cd F:\MS\
mount lfs-ms.iso
lfs-inst.exe
I have tried this but that's not working. Can someone help me how to do it.