Link to home
Start Free TrialLog in
Avatar of aucklandnz
aucklandnzFlag for New Zealand

asked on

OAB Problems

Hi All,

Im trying too troubleshot my OAB

im trying to run:
Update-GLobalAddressList "Default Glogal Address List"

but im getting this eror.

SNZSC1.ta.local is my DC
[PS] C:\Windows\system32>Update-GLobalAddressList "Default Glogal Address List"
The operation couldn't be performed because object 'Default Glogal Address List' couldn't be found on 'SNZSC1.ta.local'.
    + CategoryInfo          : NotSpecified: (0:Int32) [Update-GlobalAddressList], ManagementObjectNotFoundException
    + FullyQualifiedErrorId : F4F3E02F,Microsoft.Exchange.Management.SystemConfigurationTasks.UpdateGlobalAddressList

Any ideas why ?

thanks
ASKER CERTIFIED SOLUTION
Avatar of Saoi
Saoi
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
Hit submit a little early there, sorry -

To list the Default Global Address List use:

Get-GlobalAddressList

From that, you can pipe the output or use the correct spelling into the command:

Get-GlobalAddressList | Update-GlobalAddressList

or

Update-GlobalAddressList "Default Global Address List"
Avatar of aucklandnz

ASKER

nice one

Thanks