powershell make command code example
Example 1: powershell make file
New-Item <filename.filetype>
Example 2: powershell create symlink
new-item -itemtype symboliclink -path <path to location> -name <the name> -value <path to target>
New-Item <filename.filetype>
new-item -itemtype symboliclink -path <path to location> -name <the name> -value <path to target>