create text file powershell code example
Example 1: powershell make file
New-Item <filename.filetype>
Example 2: powershell new file
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."
Example 3: powershell create file content
Set-Content D:\temp\test\test.txt 'Welcome to TutorialsPoint'
Example 4: powershell parse text file
Get-Content -Path C:\text.txt