This repository was archived by the owner on Nov 10, 2017. It is now read-only.
This repository was archived by the owner on Nov 10, 2017. It is now read-only.
In the Get-SitecoreAzureSqlServerStatus cmdlet, the Progress Bar might appears twice. #5
Open
Description
In the Get-SitecoreAzureSqlServerStatus
cmdlet, the Progress Bar might appears twice for the same task, when two or more tasks are in active and then one succeeded.
The reason is due to not unique value for the Write-Progress -Id
cmdlet after one task reach out to the succeeded state.
If convert the $importStatus.RequestId
from GUID
to UINT
, it can be used for the -Id
parameter.