Here you will find a VBS script that will allow you to issue the NsLookUp command against a remote machine.
NsLookUp Script:
strComputer = InputBox("Enter Machine Name")
Set objShell = CreateObject("Wscript.Shell")
strCommand = "%Comspec% /k NsLookUp " & strComputer
objShell.Run strCommand
No Comments