create file windows 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 file content
Set-Content D:\temp\test\test.txt 'Welcome to TutorialsPoint'