It looks like you're new here. Sign in or register to get started.
$s = Get-NAVDataUpgrade -ServerInstance <InstanceName>
$s
# filter for job with Error or InProgress $s.executionDetails | Where {$_.State -ne "Pending" -and $_.State -ne "Completed"} # export to tab-separated file $s.executionDetails | export-csv -delimiter "`t" -path theOutFile.txt -notype # export to csv $s.executionDetails | export-csv -path 'DataUpgrade_executionDetails.csv' -NoType -Encoding default
Answers
Run the upgrade from PowerShell. Then after the upgrade is finished (or even, while it is still in progress) you can query the reslut. Save it to a variable. Then you can inspect it. The following gives you the usual output of the command but there's more. Some ideas