make file using powershell code example
Example 1: powershell new file
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."
Example 2: how to make file in powershell
echo $null >> filename.type
Example 3: powershell create file content
Set-Content D:\temp\test\test.txt 'Welcome to TutorialsPoint'