Hashcat is command line
http://hashcat.net/hashcat/If you want something short and sweet you can use python and py2exe it. Just add a for loop to this:
import hashlib,binascii
hash = hashlib.new('md4', "thisismyhashvalue".encode('utf-16le')).digest()
print binascii.hexlify(hash)
Many thanks. If say you had to audit a number of domain users, and you no account lockout is in operation, what password rules/values would you try? Password=Username is an obvious one, but what would your strategy be?