I’ve been working quite a bit with SharePoint 2010 lately and have written a number of PowerShell scripts that I think will be useful to folks. This is the first of these.

This script connects to the User Profile managed service application and iterates through all of the properties that have been configured dumping the result to XML. The script additionally pulls in any mappings to active directory.

I’m currently working on a script that will import this XML and update the properties accordingly. I hope to post that soon as well.

#Define our configuration. This is the name you gave the import connection to AD
$url = "http://sharepoint.vallery.net/";
$connectionName = "Profile Sync";

#Setup our SharePoint objects $site = Get-SPSite $url; $serviceContext = Get-SPServiceContext($site); $upManager = new-object Microsoft.Office.Server.UserProfiles.UserProfileConfigManager($serviceContext); $syncConnection = $upManager.ConnectionManager[$connectionName];

#This is a collection of mappings to AD that we will use later $pmc = $syncConnection.PropertyMapping;

#This is a collection of all of the properties which we will iterate $properties = $upManager.GetProperties();

# Create a new XML writer settings object $settings = New-Object system.Xml.XmlWriterSettings; $settings.Indent = $true; $settings.OmitXmlDeclaration = $false; $settings.NewLineOnAttributes = $true;

# Create a new string writer to capture the output $sw = new-object System.IO.StringWriter;

# Create a new XmlWriter $writer = [system.xml.XmlWriter]::Create($sw, $settings);

#Start the document and add the root node $writer.WriteStartDocument(); $writer.WriteStartElement(properties);

#Iterate through the properties foreach ($item in $properties); {

</span><span>#</span><span>Create the property element</span><span>

$writer.WriteStartElement(property);

</span><span>#</span><span>Add in the fields as attributes</span><span>

$writer.WriteAttributeString(Name, $item.Name); $writer.WriteAttributeString(DisplayName,$item.DisplayName); $writer.WriteAttributeString(ManagedPropertyName,$item.ManagedPropertyName); $writer.WriteAttributeString(Type,$item.Type); $writer.WriteAttributeString(ChoiceList,$item.ChoiceList); $writer.WriteAttributeString(Description,$item.Description); $writer.WriteAttributeString(URI,$item.URI); $writer.WriteAttributeString(IsSystem,$item.IsSystem); $writer.WriteAttributeString(AllowPolicyOverride,$item.AllowPolicyOverride); $writer.WriteAttributeString(IsUserEditable,$item.IsUserEditable); $writer.WriteAttributeString(IsAdminEditable,$item.IsAdminEditable); $writer.WriteAttributeString(IsImported,$item.IsImported); $writer.WriteAttributeString(Length,$item.Length); $writer.WriteAttributeString(IsMultivalued,$item.IsMultivalued); $writer.WriteAttributeString(ChoiceType,$item.ChoiceType); $writer.WriteAttributeString(DefaultPrivacy,$item.DefaultPrivacy); $writer.WriteAttributeString(UserOverridePrivacy,$item.UserOverridePrivacy); $writer.WriteAttributeString(IsReplicable,$item.IsReplicable); $writer.WriteAttributeString(PrivacyPolicy,$item.PrivacyPolicy); $writer.WriteAttributeString(DisplayOrder,$item.DisplayOrder); $writer.WriteAttributeString(IsColleagueEventLog,$item.IsColleagueEventLog); $writer.WriteAttributeString(IsAlias,$item.IsAlias); $writer.WriteAttributeString(IsSearchable,$item.IsSearchable); $writer.WriteAttributeString(IsUpgrade,$item.IsUpgrade); $writer.WriteAttributeString(IsUpgradePrivate,$item.IsUpgradePrivate); $writer.WriteAttributeString(IsVisibleOnEditor,$item.IsVisibleOnEditor); $writer.WriteAttributeString(IsVisibleOnViewer,$item.IsVisibleOnViewer); $writer.WriteAttributeString(IsTaxonomic,$item.IsTaxonomic); $writer.WriteAttributeString(Separator,$item.Separator); $writer.WriteAttributeString(MaximumShown,$item.MaximumShown); $writer.WriteAttributeString(IsSection,$item.IsSection); $writer.WriteAttributeString(IsRequired,$item.IsRequired); $writer.WriteAttributeString(SubtypeName,$item.SubtypeName);

</span><span>#</span><span>Look up any AD mappings in the PropertyManagerCollection and include them</span><span>

$writer.WriteAttributeString(IsImport,$pmc.Item($item.Name).IsImport); $writer.WriteAttributeString(IsExport,$pmc.Item($item.Name).IsExport); $writer.WriteAttributeString(DataSourcePropertyName,$pmc.Item($item.Name).DataSourcePropertyName); $writer.WriteAttributeString(OriginalDataSourcePropertyName,$pmc.Item($item.Name).OriginalDataSourcePropertyName); $writer.WriteAttributeString(AssociationName,$pmc.Item($item.Name).AssociationName); $writer.WriteAttributeString(Connection,$pmc.Item($item.Name).Connection.DisplayName); $writer.WriteEndElement();

}

#Finish up $writer.WriteEndElement(); $writer.WriteEndDocument(); $writer.Flush(); $writer.Close();

#Capture the output into a string $result = $sw.ToString();

# Write the XML out Write-Output $result;

And here is an example of the XML output:

<xml version="1.0" encoding="utf-16" ?>
<properties>
<property Name="UserProfile_GUID" DisplayName="Id" ManagedPropertyName="" Type="unique identifier" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:UserProfile_GUID" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="1" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SID" DisplayName="SID" ManagedPropertyName="" Type="binary" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SID" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="512" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="2" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="objectSid" OriginalDataSourcePropertyName="objectSid" AssociationName="" Connection="Profile Sync" />
<property Name="ADGuid" DisplayName="Active Directory Id" ManagedPropertyName="" Type="binary" ChoiceList="" Description="" URI="ADGuid" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="128" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="3" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="AccountName" DisplayName="Account name" ManagedPropertyName="" Type="Person" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:AccountName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="4" IsColleagueEventLog="False" IsAlias="True" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="FirstName" DisplayName="First name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:FirstName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="5" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="givenName" OriginalDataSourcePropertyName="givenName" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-PhoneticFirstName" DisplayName="Phonetic First Name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-PhoneticFirstName" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="64" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="6" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="msDS-PhoneticFirstName" OriginalDataSourcePropertyName="msDS-PhoneticFirstName" AssociationName="" Connection="Profile Sync" />
<property Name="LastName" DisplayName="Last name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:LastName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="7" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="sn" OriginalDataSourcePropertyName="sn" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-PhoneticLastName" DisplayName="Phonetic Last Name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-PhoneticLastName" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="64" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="8" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="msDS-PhoneticLastName" OriginalDataSourcePropertyName="msDS-PhoneticLastName" AssociationName="" Connection="Profile Sync" />
<property Name="PreferredName" DisplayName="Name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:PreferredName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="Mandatory" DisplayOrder="9" IsColleagueEventLog="True" IsAlias="True" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="displayName" OriginalDataSourcePropertyName="displayName" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-PhoneticDisplayName" DisplayName="Phonetic Display Name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-PhoneticDisplayName" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="10" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="msDS-PhoneticDisplayName" OriginalDataSourcePropertyName="msDS-PhoneticDisplayName" AssociationName="" Connection="Profile Sync" />
<property Name="WorkPhone" DisplayName="Work phone" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:WorkPhone" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="100" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="Mandatory" DisplayOrder="11" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="telephoneNumber" OriginalDataSourcePropertyName="telephoneNumber" AssociationName="" Connection="Profile Sync" />
<property Name="Department" DisplayName="Department" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:Department" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="Mandatory" DisplayOrder="12" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="department" OriginalDataSourcePropertyName="department" AssociationName="" Connection="Profile Sync" />
<property Name="Title" DisplayName="Title" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:Title" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="150" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="Mandatory" DisplayOrder="13" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-JobTitle" DisplayName="Job Title" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-JobTitle" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="False" Length="150" IsMultivalued="False" ChoiceType="Open" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="14" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="True" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="title" OriginalDataSourcePropertyName="title" AssociationName="" Connection="Profile Sync" />
<property Name="Manager" DisplayName="Manager" ManagedPropertyName="" Type="Person" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:Manager" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="15" IsColleagueEventLog="True" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="manager" OriginalDataSourcePropertyName="manager" AssociationName="" Connection="Profile Sync" />
<property Name="AboutMe" DisplayName="About me" ManagedPropertyName="" Type="HTML" ChoiceList="" Description="Provide a personal description expressing what you would like others to know about you." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:AboutMe" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="3600" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="16" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="PersonalSpace" DisplayName="Personal site" ManagedPropertyName="" Type="URL" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:PersonalSpace" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="False" Length="1024" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="17" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="PictureURL" DisplayName="Picture" ManagedPropertyName="" Type="URL" ChoiceList="" Description="Upload a picture to help others easily recognize you at meetings and events." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:PictureURL" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="2048" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="18" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="UserName" DisplayName="User name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:UserName" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="19" IsColleagueEventLog="False" IsAlias="True" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="sAMAccountName" OriginalDataSourcePropertyName="sAMAccountName" AssociationName="" Connection="Profile Sync" />
<property Name="QuickLinks" DisplayName="Quick links" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:QuickLinks" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="False" IsImported="False" Length="3000" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="20" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="WebSite" DisplayName="Web site" ManagedPropertyName="" Type="URL" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:WebSite" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="1024" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="21" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="PublicSiteRedirect" DisplayName="Public site redirect" ManagedPropertyName="" Type="URL" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:PublicSiteRedirect" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="1024" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="27" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="wWWHomePage" OriginalDataSourcePropertyName="wWWHomePage" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-DataSource" DisplayName="Data source" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-DataSource" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="155" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Private" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Disabled" DisplayOrder="5001" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-MemberOf" DisplayName="MemberOf" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-MemberOf" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="2048" IsMultivalued="True" ChoiceType="Open" DefaultPrivacy="Private" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Disabled" DisplayOrder="5002" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="True" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-Dotted-line" DisplayName="Dotted-line Manager" ManagedPropertyName="" Type="Person" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-Dotted-line" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="False" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5003" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-Peers" DisplayName="Peers" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-Peers" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="False" IsImported="False" Length="3000" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5004" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-Responsibility" DisplayName="Ask Me About" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="Update your "Ask Me About" with topics you can help people with, such as your responsibilities or areas of expertise." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-Responsibility" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="True" ChoiceType="Open" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="5005" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="True" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-SipAddress" DisplayName="SIP Address" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-SipAddress" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="5010" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="proxyAddresses" OriginalDataSourcePropertyName="proxyAddresses" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-MySiteUpgrade" DisplayName="My Site Upgrade" ManagedPropertyName="" Type="boolean" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-MySiteUpgrade" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5012" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-DontSuggestList" DisplayName="Don't Suggest List" ManagedPropertyName="" Type="Person" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-DontSuggestList" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="250" IsMultivalued="True" ChoiceType="Off" DefaultPrivacy="Private" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5013" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-ProxyAddresses" DisplayName="Proxy addresses" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-ProxyAddresses" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="0" IsMultivalued="True" ChoiceType="Open" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5014" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="True" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-HireDate" DisplayName="Hire date" ManagedPropertyName="" Type="date" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-HireDate" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5015" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-DisplayOrder" DisplayName="Display Order" ManagedPropertyName="" Type="integer" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-DisplayOrder" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5016" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-ClaimID" DisplayName="Claim User Identifier" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-ClaimID" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5017" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-ClaimProviderID" DisplayName="Claim Provider Identifier" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-ClaimProviderID" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5018" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="Windows" OriginalDataSourcePropertyName="Windows" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-ClaimProviderType" DisplayName="Claim Provider Type" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-ClaimProviderType" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5019" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="Windows" OriginalDataSourcePropertyName="Windows" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-LastColleagueAdded" DisplayName="Last Colleague Added" ManagedPropertyName="" Type="date" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-LastColleagueAdded" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Private" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5019" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-OWAUrl" DisplayName="Outlook Web Access URL" ManagedPropertyName="" Type="URL" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-OWAUrl" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="2048" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Private" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5020" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-SavedAccountName" DisplayName="Saved Account Name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-SavedAccountName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="False" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5020" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-SavedSID" DisplayName="Saved SID" ManagedPropertyName="" Type="binary" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-SavedSID" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="False" Length="512" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5021" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-ResourceSID" DisplayName="Resource Forest SID" ManagedPropertyName="" Type="binary" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-ResourceSID" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="512" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5021" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-ResourceAccountName" DisplayName="Resource Forest Account Name" ManagedPropertyName="" Type="Person" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-ResourceAccountName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="5022" IsColleagueEventLog="False" IsAlias="True" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-ObjectExists" DisplayName="Object Exists" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-ObjectExists" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5023" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-MasterAccountName" DisplayName="Master Account Name" ManagedPropertyName="" Type="Person" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-MasterAccountName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="False" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="5028" IsColleagueEventLog="False" IsAlias="True" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-DistinguishedName" DisplayName="Distinguished Name" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-DistinguishedName" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="2048" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5029" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="dn" OriginalDataSourcePropertyName="dn" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-SourceObjectDN" DisplayName="Source Object Distinguished Name" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-SourceObjectDN" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="2048" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="5041" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="msDS-SourceObjectDN" OriginalDataSourcePropertyName="msDS-SourceObjectDN" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-LastKeywordAdded" DisplayName="Last Keyword Added" ManagedPropertyName="" Type="date" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-LastKeywordAdded" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Private" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5100" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="False" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="WorkEmail" DisplayName="Work e-mail" ManagedPropertyName="" Type="Email" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:WorkEmail" IsSystem="True" AllowPolicyOverride="False" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="256" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="Mandatory" DisplayOrder="5103" IsColleagueEventLog="True" IsAlias="True" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="mail" OriginalDataSourcePropertyName="mail" AssociationName="" Connection="Profile Sync" />
<property Name="CellPhone" DisplayName="Mobile phone" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="This number will be shown on your profile. Also, it will be used for text message (SMS) alerts." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:CellPhone" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="100" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="OptIn" DisplayOrder="5104" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="Fax" DisplayName="Fax" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:Fax" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="100" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5105" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="HomePhone" DisplayName="Home phone" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:HomePhone" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="100" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Contacts" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5107" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="Office" DisplayName="Office" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:Office" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="True" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="Mandatory" DisplayOrder="5108" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="physicalDeliveryOfficeName" OriginalDataSourcePropertyName="physicalDeliveryOfficeName" AssociationName="" Connection="Profile Sync" />
<property Name="SPS-Location" DisplayName="Office Location" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="Enter your current location.<br />(e.g. China, Tokyo, West Campus)” URI=”urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-Location” IsSystem=”False” AllowPolicyOverride=”True” IsUserEditable=”True” IsAdminEditable=”True” IsImported=”False” Length=”0″ IsMultivalued=”False” ChoiceType=”Open” DefaultPrivacy=”Public” UserOverridePrivacy=”True” IsReplicable=”False” PrivacyPolicy=”OptIn” DisplayOrder=”5109″ IsColleagueEventLog=”False” IsAlias=”False” IsSearchable=”True” IsUpgrade=”False” IsUpgradePrivate=”False” IsVisibleOnEditor=”True” IsVisibleOnViewer=”False” IsTaxonomic=”True” Separator=”Unknown” MaximumShown=”10″ IsSection=”False” IsRequired=”False” SubtypeName=”UserProfile” IsImport=”" IsExport=”" DataSourcePropertyName=”" OriginalDataSourcePropertyName=”" AssociationName=”" Connection=”" /> </p>
<property Name="SPS-TimeZone" DisplayName="Time Zone" ManagedPropertyName="" Type="timezone" ChoiceList="" Description="Select the time zone for your current location. We will use this information to show the local time on your profile page." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-TimeZone" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5110" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="Assistant" DisplayName="Assistant" ManagedPropertyName="" Type="Person" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:Assistant" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="250" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5200" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-PastProjects" DisplayName="Past projects" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="Provide information on previous projects, teams or groups." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-PastProjects" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="True" ChoiceType="Open" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5202" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="True" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-Skills" DisplayName="Skills" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="Include skills used to perform your job or previous projects.<br />(e.g. C++, Public Speaking, Design)” URI=”urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-Skills” IsSystem=”True” AllowPolicyOverride=”True” IsUserEditable=”True” IsAdminEditable=”True” IsImported=”False” Length=”0″ IsMultivalued=”True” ChoiceType=”Open” DefaultPrivacy=”Public” UserOverridePrivacy=”True” IsReplicable=”False” PrivacyPolicy=”OptIn” DisplayOrder=”5203″ IsColleagueEventLog=”True” IsAlias=”False” IsSearchable=”True” IsUpgrade=”False” IsUpgradePrivate=”False” IsVisibleOnEditor=”True” IsVisibleOnViewer=”True” IsTaxonomic=”True” Separator=”Comma” MaximumShown=”10″ IsSection=”False” IsRequired=”False” SubtypeName=”UserProfile” IsImport=”" IsExport=”" DataSourcePropertyName=”" OriginalDataSourcePropertyName=”" AssociationName=”" Connection=”" /> </p>
<property Name="SPS-School" DisplayName="Schools" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="List the schools you have attended." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-School" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="True" ChoiceType="Open" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5204" IsColleagueEventLog="False" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="True" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-Birthday" DisplayName="Birthday" ManagedPropertyName="" Type="datenoyear" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-Birthday" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5205" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-StatusNotes" DisplayName="Status Message" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-StatusNotes" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="512" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5300" IsColleagueEventLog="True" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-Interests" DisplayName="Interests" ManagedPropertyName="" Type="string (Multi Value)" ChoiceList="Microsoft.Office.Server.UserProfiles.ChoiceList" Description="Share personal and business related interests. We will help you keep in touch with activities related to these interests through events in your newsfeed." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-Interests" IsSystem="True" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="True" ChoiceType="Open" DefaultPrivacy="Public" UserOverridePrivacy="True" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5402" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="True" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="SPS-EmailOptin" DisplayName="Email Notifications" ManagedPropertyName="" Type="integer" ChoiceList="" Description="" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:SPS-EmailOptin" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="OptIn" DisplayOrder="5500" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Unknown" MaximumShown="10" IsSection="False" IsRequired="False" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="Company" DisplayName="Company" ManagedPropertyName="" Type="string (Single Value)" ChoiceList="" Description="Company" URI="urn:schemas-microsoft-com:sharepoint:portal:profile:Company" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="False" IsAdminEditable="True" IsImported="False" Length="25" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="True" PrivacyPolicy="Mandatory" DisplayOrder="5601" IsColleagueEventLog="True" IsAlias="False" IsSearchable="True" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="True" IsTaxonomic="False" Separator="Comma" MaximumShown="1" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="True" IsExport="False" DataSourcePropertyName="company" OriginalDataSourcePropertyName="company" AssociationName="" Connection="Profile Sync" />
<property Name="NGAllowMetaEmail" DisplayName="Receive Instant Notification Emails" ManagedPropertyName="" Type="boolean" ChoiceList="" Description="Receive email notifications when someone responds to one of your activities." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:NGAllowMetaEmail" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="5603" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="NGReceiveDigestEmail" DisplayName="Receive 24-hour Digest Email" ManagedPropertyName="" Type="boolean" ChoiceList="" Description="Receive digest email of community and colleague activities for the last 24 hours." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:NGReceiveDigestEmail" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="5604" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" />
<property Name="NGAllowRssEmail" DisplayName="Receive News Stream Notification Emails" ManagedPropertyName="" Type="boolean" ChoiceList="" Description="Receive email notifications when new News Stream items match one of your keywords." URI="urn:schemas-microsoft-com:sharepoint:portal:profile:NGAllowRssEmail" IsSystem="False" AllowPolicyOverride="True" IsUserEditable="True" IsAdminEditable="True" IsImported="False" Length="0" IsMultivalued="False" ChoiceType="Off" DefaultPrivacy="Public" UserOverridePrivacy="False" IsReplicable="False" PrivacyPolicy="Mandatory" DisplayOrder="5605" IsColleagueEventLog="False" IsAlias="False" IsSearchable="False" IsUpgrade="False" IsUpgradePrivate="False" IsVisibleOnEditor="True" IsVisibleOnViewer="False" IsTaxonomic="False" Separator="Comma" MaximumShown="10" IsSection="False" IsRequired="True" SubtypeName="UserProfile" IsImport="" IsExport="" DataSourcePropertyName="" OriginalDataSourcePropertyName="" AssociationName="" Connection="" /></properties></xml>