create a new file in 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: how to make file in powershell
echo $null >> filename.type
Example 4: powershell create new file and open
ni $file | psedit