powershell command to create new file code example
Example 1: powershell new file
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."
Example 2: powershell create new file and open
ni $file | psedit
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."
ni $file | psedit