Type cmd in the search bar in the start menu. Cmd (actually cmd.exe)
will appear in the pane above that. Right click on that and choose Run
as administrator.
In the resulting command window, navigate to where the batch file is
and run it from the command line. I.e., type its name and press enter.
If you're unfamiliar with the command window:
To navigate in the command window, type cd "folder name". The quotes
are needed around any path name that contains blanks. You might be
happier starting with "cd \" (no quotes) which will get you to the
root.
Then you can cd one layer at a time to get to the desired directory.
Any time you're confused, type cd by itself, which will display the
current folder.
One layer at a time:
to get to C:\a\b\c
do this:
cd \
cd a
cd b
cd c
If you're not on the correct drive (such as X
, first type x:
followed by Enter.