how to make a new file in window using powershell code example
Example: powershell new file
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."