PowerShell Quick Tips: In Linux/Unix, touching a file means to create, change or modify the timestamp of a file. Windows via cmd.exe nor PowerShell.exe does not have this tool by default. To create a file do the following in PowerShell
PS C:\> echo $null > filename.txt
Comments