【PowerShell 】【インプット】コンソール入力例

Write-Host "Welcome to demo of powershell prompt input" -ForegroundColor DarkYellow
$name= Read-Host -Prompt "Enter your name"
$age= Read-Host -Prompt "Enter your age"
$city= Read-Host -Prompt "Enter your city"
Write-Host "The entered name is" $name -ForegroundColor Green
Write-Host "The entered age is" $age -ForegroundColor DarkRed
Write-Host "The entered city is" $city -ForegroundColor DarkCyan


ライセンス:本記事のテキスト/コードは特記なき限り CC BY 4.0 です。引用の際は出典URL(本ページ)を明記してください。
利用ポリシー もご参照ください。

コメント

タイトルとURLをコピーしました