Sep 11 2019 11:34 PM - last edited on Nov 29 2021 09:18 AM by Allen
Sep 11 2019 11:34 PM - last edited on Nov 29 2021 09:18 AM by Allen
Hello there,
Is it possible to force a refresh on the Security Policy or a single recommendation once changes have been made to correct the security alert?
Sep 16 2019 03:21 PM
SolutionSep 16 2019 11:45 PM
@Miri_Landau Thank you for the update. 30 min is really good. I assumed the cycle was something about 24 hours.
Feb 05 2020 03:55 AM
Are you sure about this? It appears to be taking much, much longer on our dashboard; more like 12+ hours.
Feb 24 2022 10:47 PM
This is definitely not true. I don't know how long it actually takes and when Defender for Cloud is willing to update its information, but it's definitely closer to 24+ hours than to anything else. It would be a great enhancement if Microsoft enabled a Refresh button on this....
Mar 02 2022 08:19 AM
Mar 23 2022 02:57 AM
Microsoft has recently-ish added a "Freshness interval" item on each recommendation, showing how often recommendations are updated for each policy.
for example:
Unfortunately there doesn't seem to be a way to see when the interval last occurred, but at least it gives an idea on how long you have to wait.
Jun 13 2022 09:05 AM
@TheSizeOfACow The interval shown is not reality. I have six-item that shows as "30 minutes" but it's been 6 hours and they are still here. Microsoft time is not real-world time.
Jul 22 2022 07:27 AM
@Gunter Danzeisen I had the same issue and found a powershell command that forces an Azure Policy Compliance Scan.
There are two options
Whole Subscription:
$job = Start-AzPolicyComplianceScan -AsJob
$job | Wait-Job
Single Resource Group:
$ResourceGroup = '%yourresourcegroup%'
$job = Start-AzPolicyComplianceScan -ResourceGroupName $ResourceGroup -AsJob
$job | Wait-Job
Hope this helps!
Sep 16 2019 03:21 PM
Solution