powershell comand to create file code example
Example 1: powershell new file
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."
Example 2: powershell make directory
mkdir <directory name>
New-Item -Path . -Name "testfile1.txt" -ItemType "file" -Value "This is a text string."
mkdir <directory name>