Summary: Use Windows PowerShell to generate a random file name.
How can I use Windows PowerShell to generate a random file name so I can ensure that
a file I create does not have a naming conflict?
Use the GetRandomFileName static method from the System.IO.Path .NET Framework
class, for example:
[System.IO.Path]::GetRandomFileName()