Link to home
Start Free TrialLog in
Avatar of Prashant Girennavar
Prashant GirennavarFlag for India

asked on

WSUS Replica Server , Listing all computer objects

Hello All,

 I am in a situation where I need to find all the computers which are getting listed out Global WSUS Server. We have around 3 WSUS server , where the Global WSUS server is a Master server and other 2 servers are replica of the Global Server.

I am using below script to check all the WSUS entries in our Global Server , but it is only listing the server which are getting reported to this Global WSUS server , and it is omitting the servers which are reporting to the 2 Replica server

[void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration")
$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::getUpdateServer($WSUSserver,$false)
$wsus.GetComputerTargets()

Open in new window


when checked some computer objects which reports to other wsus server ,they are appearing it the console.

what is the issue here?

Do I need to modify the script to get all the computer listed?

Thanks,

-Prashant Girennavar.
Avatar of arnold
arnold
Flag of United States of America image

You have to make sure your replica settings include the configuration to report their connected systems to the master.
On the master, check the reporting rollup settings to make sure roll up statu from replica downstream servers is selected.

If you are on the master and look at the downstream servers, do you see the other replicas listed?
Avatar of Prashant Girennavar

ASKER

ok , I think , I did not explian it better.

@Arnold , The WSUS servers are in sync and I can see wsus clients in wsus console .

But , When I use above script it is not listing the servers which are not reporting back to Global WSUS server.

Only servers which are getting reported to Global Servers are getting reported.

What I need to put in script in order to have list all the computers which exists in Global WSUS

Thanks,

-Prashant Girennavar.
ASKER CERTIFIED SOLUTION
Avatar of arnold
arnold
Flag of United States of America 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