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

VB script setting user exchange protocols

 Hello all

a long time ago we setup a VB Script in ARS, which checks group memberships and sets the OWA Protocol Setting on/off for users.

Now we want to set all the other possible protocols with this script.

 

This is the piece that sets the current OWA Flag.

 

     End If
                        Next
                        ' Set field "protocolsettings"
                        If strIsMember = "1" Then
                             objUser.Put "protocolSettings", "HTTP§1§1§§§§§§"
                             objUser.SetInfo
                        Else
                             objUser.Put "protocolSettings", "HTTP§0§1§§§§§§"
                             objUser.SetInfo
                        End If
                  Next

 

I have no idea where to find the information for all the other protocols how they are named to set them.

I did not create this original script back then.

Parents Reply Children
No Data