Preview NTFS auto ensure in diagnostics
This commit is contained in:
@@ -562,7 +562,8 @@ namespace LiamWorkflowDiagnostics
|
||||
_session.Provider,
|
||||
!string.IsNullOrWhiteSpace(_session.ProviderConfigObjectId)
|
||||
? _session.ProviderConfigObjectId
|
||||
: (_session.ProviderConfigId ?? string.Empty));
|
||||
: (_session.ProviderConfigId ?? string.Empty),
|
||||
IsWhatIfEnabled);
|
||||
ResultTextBox.Text = JsonConvert.SerializeObject(result, Formatting.Indented);
|
||||
|
||||
if (!result.Success)
|
||||
@@ -577,6 +578,11 @@ namespace LiamWorkflowDiagnostics
|
||||
return;
|
||||
}
|
||||
|
||||
if (IsWhatIfEnabled && result.AutomaticEnsurePreview != null && result.AutomaticEnsurePreview.Count > 0)
|
||||
{
|
||||
AppendLog($"EnsureNtfsPermissionGroups wurde nur simuliert fuer {result.AutomaticEnsurePreview.Count} Ordner. Details stehen im Result-JSON.", LogLevels.Warning);
|
||||
}
|
||||
|
||||
AppendLog($"DataAreas erhalten: {result.DataAreas.Count}");
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
Reference in New Issue
Block a user