コンソールから入力を受け取る
以下のスクリプトで、プロンプトにRead-Hostに渡した引数の文字列が表示され、入力された値が$inputに格納されます。
$input= Read-Host "プロンプト表示文字列"
入力値を伏字にする
-AsSecureStringを付与すると、入力値が伏字で表示されるようになり、戻り値もStringではなくSecureStringになります。
$input= Read-Host "プロンプト表示文字列" -AsSecureString
リンク
Read-Host (Microsoft.PowerShell.Utility) – PowerShell | Microsoft Docs
https://docs.microsoft.com/ja-jp/powershell/module/microsoft.powershell.utility/read-host?view=powershell-7