Open your profile file:
notepad $profile
Add the following line:
function touch {New-Item "$args" -ItemType File}
Save it and reload your $profile in order to use it straight away. (No need to close and open powershell)
. $profile
To add a new file in the current directory type:
touch testfile.txt
To add a new file inside 'myfolder' directory type:
touch myfolder\testfile.txt
If a file with the same name already exists, it won't be overidden. Instead you'll get an error.
I hope it helps
Bonus tip:
You can make the equivalent of 'mkdir' adding the following line:
function mkdir {New-Item "$args" -ItemType Directory}
Same use:
mkdir testfolder
mkdir testfolder\testsubfolder