1 2 3 4 5 6 7 |
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 |
コメント