有一个Windows命令,将允许我validation一个域帐户/密码?
你可以使用命令RUNAS ,它在技术上不是一个命令行来验证凭据,但它可以用于此。
runas /noprofile /user:mycomputer\administrator "notepad"
如果失败,则返回:
RUNAS ERROR: Unable to run - notepad 1326: Logon failure: unknown user name or bad password.
RUNAS在本地系统上运行良好。
要验证远程计算机上的凭据,我使用SysInternals中的PSExec工具。 我指定用户名,然后提示我输入密码。 下面是我的命令的例子:
psexec \\RemoteComputer -u DOMAIN\USER cmd.exe
如果我输入正确的密码,我将会看到一个命令提示符。 如果我输入了错误的密码,我得到这个:
PsExec could not start cmd.exe on RemoteComputer: The user name or password is incorrect.