June 15th, 2015

PowerTip: Read Text File in Raw Mode with PowerShell

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to read a text file in raw mode.

Hey, Scripting Guy! Question How can I use Windows PowerShell to read a text file as a single line of text, not as an array of strings created by
           end-of-line returns?

Hey, Scripting Guy! Answer Use the –Raw parameter with Get-Content. This forces Windows PowerShell to ignore new line characters and
           end-of-line returns, and instead, return the contents of the file as one string. Here is an example:

Get-Content C:\fso\AnEmptyFile.txt -Raw

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.