Saving Data to a Text File
The primary use of Set-Content is to write data to a text file. For example, this command writes the text «This is a test» to the text file C:\Scripts\Test.txt:
[crayon-6a61b4ec1fd75941643374/]
Note that this replaces the existing contents of Test.txt with the new text specified in the command. To append text to a file, use the Add-Content cmdlet.