
Simple PowerShell Logging Function
This is a simple PowerShell logging function to write a specified message to a log file in the user’s %temp% folder. The file in this example is called Filename.log, but can be renamed as appropriate. function Write-Log { [CmdletBinding()] param(...








