Link to home
Start Free TrialLog in
Avatar of yo_bee
yo_beeFlag for United States of America

asked on

I have one client machine which is not receiving advertisement

I have one client that is not receiving advertisements from both publish applications or windows updates.

I tried:
Repairing client locally
Re-pushing the client from SCCM 2007 server

I am not sure which log would shed light on this issue.  

Thanks
Mike
ASKER CERTIFIED SOLUTION
Avatar of MarkieS
MarkieS
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
... sorry for short answer - Am on Holiday and wife forbids computer access.  Wants undivided attention - Have to sneak these in where I can... ;-)
Avatar of Nagendra Pratap Singh
Avatar of yo_bee

ASKER

Thanks for the replies.  I will try this when I get in to the office.
Avatar of yo_bee

ASKER

Thanks for the idea.
I needed to do some digging, but your suggestion pointed me in the right direction.
I ended up
1: Stopped SMS Service
2: Stopped WMI Service
3: Purged the WBEM repository
4: Started WMI
5: Started SMS

All works now.
Sorry - it was a short answer...  As I said we were on Holiday - We were getting ready to go to Chessington World of Advetures!!!


For a full WMI repair try running this as a Command Batch file

net stop winmgmt /Y
c:
net stop winmgmt /Y
cd %systemroot%\system32\wbem
rd /S /Q repository
 regsvr32 /s %systemroot%\system32\scecli.dll
regsvr32 /s %systemroot%\system32\userenv.dll
 mofcomp cimwin32.mof
mofcomp cimwin32.mfl
mofcomp rsop.mof
mofcomp rsop.mfl
for /f %%s in ('dir /b /s *.dll') do regsvr32 /s %%s
for /f %%s in ('dir /b *.mof') do mofcomp %%s
for /f %%s in ('dir /b *.mfl') do mofcomp %%s
net stop winmgmt

net stop cryptsvc
cd %systemroot%\system32
rd /S /Q catroot2
net start cryptsvc
regsvr32 /s %systemroot%\system32\wintrust.dll
regsvr32 /s %systemroot%\system32\softpub.dll
regsvr32 /s %systemroot%\system32\initpki.dll
regsvr32 /s %systemroot%\system32\dssenh.dll
regsvr32 /s %systemroot%\system32\rsaenh.dll
regsvr32 /s %systemroot%\system32\gpkcsp.dll
regsvr32 /s %systemroot%\system32\sccbase.dll
regsvr32 /s %systemroot%\system32\slbcsp.dll
regsvr32 /s %systemroot%\system32\cryptdlg.dll

net start winmgmt
net start sharedAccess
net start ccmexec
Avatar of yo_bee

ASKER

Thanks for the feedback and I hope you enjoyed your vacation and did not anger the Lady to much.