Jump to content


  • 0
Peter33

Bug in SCEP 2012 Client 4.10.205

Question

Hi guys,

 

be aware of a bug in the SCEP 2012 Client 4.10.205.

A race condition during the update my result in broken SCEP Client, which will not load any signature updates or report back to Config Manager after that. 10% of our Clients and Servers are affected by this.

The Workaround is to block the 4.10. update in the ADR/Update Group and to install SCEP 4.9 (use a regular package with the SCEPinstall /forceclean Switch).

 

There will be a new 4.10. update. Unfortunately MS Support was not able to tell when.

 

btw. Reports are useless to identify affected clients. Rather use a collection view in the console and opt in 'Endpoint Protection Last Update Time'.

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

The command line is "SCEPInstall.exe /forceclean /s /q". The switch is not documented.

 

No news on the topic itself. Just implemented a fallback update by a tasksequnce installing the full updates, which i am using for OS Deployment, on clients with definition files older than 2 days. For detection i am using compliance rules checking the creation date of the definition file on the file system. I also implemented it for the Windows Defender, to be on te safe side.

$sigfile = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Microsoft Antimalware\Signature Updates").SignatureLocation + "\mpavdlta.vdm"
$sigdate = (Get-ItemProperty -Path $sigfile).CreationTime
$now = Get-Date
$sigdiff = (NEW-TIMESPAN –Start $sigdate –End $now).Days
return($sigdiff)
$sigfile = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows Defender\Signature Updates").SignatureLocation + "\mpavdlta.vdm"
$sigdate = (Get-ItemProperty -Path $sigfile).CreationTime
$now = Get-Date
$sigdiff = (NEW-TIMESPAN –Start $sigdate –End $now).Days
return($sigdiff)

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.