###password input
user feedback will be stars instead of password
$secret = Read-Host 'Enter a secret: ' -AsSecureString
$notSoSecret = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($secret))
Write-Host $notSoSecret