Making an NSlookup Batch file for Windows Command prompt video
Batch files are like shortcut files which make working in the command-prompt a lot faster since batch files automate most of the typing. All you have to do is click the file and it execute a bunch of commands in CMD automatically.
Batch file code for notepad.exe
@echo off
c:\windows\system32\nslookup.exe
@pause
Save the file as NSlookup.bat and pick “All files” [...]


