modules/Utilities/private/Set-TraceOutputFile.ps1
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. function Set-TraceOutputFile { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [System.IO.FileInfo]$Path ) $global:SdnDiagnostics.TraceFilePath = $Path.FullName } |