Basics of Input and Output in Windows PowerShell
Windows PowerShell is a command-line and scripting language designed for system administration. It helps IT professionals, to control and automate the administration of the Windows Operating System and Windows Server Environment. There are cmdlet for console input and output using PowerShell.
Example 1: Showing the Output to console
Function to print a string. Input : 'Geeks for Geeks' Output : Hello Geeks for Geeks Input : 'PowerShell Beginner' Output : Hello PowerShell Beginner
# show function definition function show { param ( $str2 ) #parameter string Write-Host "Hello $str2" # output on console } $str = "Geeks for Geeks" # string declaration show ( $str ) #function call with string |
In Windows Powershell, the input and output are given through the Host. It uses ‘Write-Host’ to print and ‘Read-Host’ to get input from console.
Example 2: Taking the User input through console
Function to get user input. Input : 'Geeks for Geeks' Output : Hello Geeks for Geeks Input : 'PowerShell Beginner' Output : Hello PowerShell Beginner
# show function definition function show { param ( $str2 ) #parameter string Write-Host "Hello $str2" #output on console } #user input with prompt $str = Read-Host -Prompt 'Enter a String' #function call with string show ( $str ) |
Note: If your script show error “script is Disabled” while running program then try to change the execution policy with administrative privilege by using the command ‘set-executionpolicy remotesigned‘
Recommended Posts:
- Basics of management
- Floating Point Representation - Basics
- Output of C programs | Set 55
- Output of Java Programs | Set 54 (Vectors)
- Quantum Computing - pros and cons
- Monitoring cluster in Cassandra
- Difference between LED and LCD
- Difference between Function and Procedure
- JBIG2 compression
- Difference between Information and Knowledge
- Raster-Scan Displays
- Difference between Optical Character Recognition (OCR) and Magnetic Ink Character Reader (MICR)
- Difference between Microeconomics and Macroeconomics
- Basics of management
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



