Add prompt to exit the script
Prevent the script to be closed automatically if you run it by right clicking the file and choose *Run with PowerShell*
This commit is contained in:
parent
8efd8ffedd
commit
ddbf8d33ef
@ -1,4 +1,4 @@
|
|||||||
$string = Read-Host -Prompt 'Password to check'
|
$string = Read-Host -Prompt 'Password to check'
|
||||||
$bytes = [System.Text.Encoding]::UTF8.GetBytes($string)
|
$bytes = [System.Text.Encoding]::UTF8.GetBytes($string)
|
||||||
$sha1 = New-Object System.Security.Cryptography.SHA1CryptoServiceProvider
|
$sha1 = New-Object System.Security.Cryptography.SHA1CryptoServiceProvider
|
||||||
$data = $sha1.ComputeHash($bytes)
|
$data = $sha1.ComputeHash($bytes)
|
||||||
@ -20,3 +20,5 @@ while (($line = $reader.ReadLine()) -ne $null) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($found -eq 0) { Write-Host "That password was not found." }
|
if ($found -eq 0) { Write-Host "That password was not found." }
|
||||||
|
|
||||||
|
Read-Host -Prompt "Press Enter to exit"
|
||||||
|
Loading…
Reference in New Issue
Block a user