Try sending the full def update via regular sccm package to the devices with 
old defs

If you don’t already have it, this can be run as a powershell script to 
download the defs

$x64S1 = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x64";
$x64D1 = "\\server\share\x64\mpam-fe.exe"
$x64S2 = "http://go.microsoft.com/fwlink/?LinkId=211054";
$x64D2 = "\\server\share\x64\mpam-d.exe"
$x64S3 = "http://go.microsoft.com/fwlink/?LinkId=197094";
$x64D3 = "\\server\share\x64\nis_full.exe"
$x86S1 = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x86";
$x86D1 = "\\server\share\x86\mpam-fe.exe"
$x86S2 = "http://go.microsoft.com/fwlink/?LinkId=211053";
$x86D2 = "\\server\share\x86\mpam-d.exe"
$x86S3 = "http://go.microsoft.com/fwlink/?LinkId=197095";
$x86D3 = "\\server\share\x86\nis_full.exe"
$wc = New-Object System.Net.WebClient



$wc= new-object System.Net.WebClient
#If you have a proxy configured for your environment, you need to enable and 
confiure
#   the next three lines
$proxy = new-object System.Net.WebProxy "your proxy:port"
$proxy.UseDefaultCredentials = $true
$wc.proxy=$proxy

$wc.DownloadFile($x86S1, $x86D1)
$wc.DownloadFile($x86S2, $x86D2)
$wc.DownloadFile($x86S3, $x86D3)
$wc.DownloadFile($x64S1, $x64D1)
$wc.DownloadFile($x64S2, $x64D2)
$wc.DownloadFile($x64S3, $x64D3)



 Jimmy Martin
 (901) 227-8209


-----Original Message-----
From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Stuart Watret
Sent: Friday, October 28, 2016 5:17 AM
To: <mssms@lists.myitforum.com> <mssms@lists.myitforum.com>
Subject: [mssms] scep updates not working

Since last Friday my clients haven’t ben picking up scep updates from WSUS.

A manual update results in a 8004002e error.

Only solution I’ve found is to remove scep and reinstall.

I’ll do this, but thought I’d run it all past you in case of any bright ideas.

Cheers

Stuart



This message and any files transmitted with it may contain legally privileged, 
confidential, or proprietary information. If you are not the intended recipient 
of this message, you are not permitted to use, copy, or forward it, in whole or 
in part without the express consent of the sender. Please notify the sender of 
the error by reply email, disregard the foregoing messages, and delete it 
immediately.

P Please consider the environment before printing this email...


Reply via email to