I've tried searching around for this, and I can't find an answer, partially because it's difficult to search for the ">" character and also because the prompt in PowerShell uses that character.
I've got an example that works well, but I don't know what this line is doing exactly:
New-Item $tempCmd -Force -Type file > $null
I get the New-Item call and its parameters, but what is "> $null" doing exactly? And specifically what role does ">" play in this statement?