This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Change/replace SIP address from the edsvaOffice365-UserID field

Ill start off by saying I am a complete novice

I would like to change user SIP address with the field edsvaOffice365-UserID

Id also like to be able to update this by OU if possible

I am using Quest Commandlet to pull this information. Get-QADUser -SearchRoot "OU=Path” -SizeLimit 0 -IncludedProperties edsvaOffice365-UserID

How would I script this to take the information in edsvaOffice365-UserID and update the SIP with it?

 

Thanks,

Manny

Parents
  • Yep.

    Just before the last }, add:

    Set-QADUser -identity $_ -objectattributes @{'msRTCSIP-PrimaryUserAddress'=$($_.'edsvaOffice365-UserID')}

    If you already ran the original, you can just remove the Remove.. and Add... lines I suppose.

    Question: Does the new SIP entry in the proxy addresses have the SIP prefix? If you look above in the thread you will note that I edited my original reply after and modified the "$NewSIP = ..." line to include this.
Reply
  • Yep.

    Just before the last }, add:

    Set-QADUser -identity $_ -objectattributes @{'msRTCSIP-PrimaryUserAddress'=$($_.'edsvaOffice365-UserID')}

    If you already ran the original, you can just remove the Remove.. and Add... lines I suppose.

    Question: Does the new SIP entry in the proxy addresses have the SIP prefix? If you look above in the thread you will note that I edited my original reply after and modified the "$NewSIP = ..." line to include this.
Children
No Data