-
Notifications
You must be signed in to change notification settings - Fork 5
Run cmdlet with debugging options
Jonathan Colon edited this page Nov 30, 2024
·
1 revision
$global:VerbosePreference = 'Continue'
$global:DebugPreference = 'Continue'
Start-Transcript -Path .\Output.log
New-VeeamDiagram -Target backupserver -Username "domain\username" -Password password -Format png -Direction top-to-bottom -OutputFolderPath C:\Users\username\ -DiagramType Diagram-Type -EnableErrorDebug <-- your command here
Stop-Transcript-EnableErrorDebug
$global:VerbosePreference = 'SilentlyContinue'
$global:DebugPreference = 'SilentlyContinue'