how to create a file in powershell code example
Example 1: powershell make file
New-Item <filename.filetype>
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'
Example 4: powershell make directory
mkdir <directory name>