I want to make a Batch File (.bat
) to install an .inf
file that is located in the base directory of the .bat
file. I managed to install the .inf
, but only if I specify the full directory. How can I install the .inf
file without specifying the full directory?
Here's what I have so far:
%SystemRoot%\System32\InfDefaultInstall.exe "DroidInstaller.inf"
Any help would be greatly appreciated.