Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The objectGUID in AD will in a base64 format when issued from an AD attribute store. To get the actual GUID value, you must decode and convert it. You can use the StringPrcoessing custom attribute store and extend it using something like:
static private string ConvertBase64ToGuid(string myData)
{
byte[] encodeAsBytes = System.Convert.FromBase64String(myData);
string returnValue = new Guid(encodeAsBytes).ToString();
return returnValue;
}