Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Get-Content -Path "C:\Users\PC\Desktop\pws.txt" | ForEach-Object { Unlock-BitLocker -Mountpoint "D:" -Password (ConvertTo-SecureString $_ -AsPlainText -Force) -ErrorAction SilentlyContinue ; if(!$Error){ "Valid Password: $_" ; }else{ "Not Valid Password: $_"; Start-Sleep -Seconds 900 ; } ; } ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement