Trying to find out if there is a policy or way that I can lockout an account, if the account being used, is under a password guessing attack - using Net Use Drive mapping.
Example: $net = new-object -ComObject WScript.Network $net.MapNetworkDrive("u:", "\server\share", $false, "domain\user", "password")
So if the password is wrong, say 10-15 times, will it lockout, such as like a Ctrl + Alt + Del windows login would lockout? (With a Lockout Policy enabled)
Thanks for any help!