Quantcast
Channel: Exchange Server Development forum
Viewing all 7132 articles
Browse latest View live

Message tracking logs

$
0
0

Good day everyone. I am looking for some assistance. I am not a great scripter by any means. So let me describe what I am looking to do.

I am looking to get message statistics based on a domain. *@superstats.com. (8 domains total)

I need it to search for send from my org to the destination org and sent from the other org to my org. I do not need server info, sender or receiver info JUST the numbers

I have 8 server to search.

The servers are under powered and I will be running it from a management server at night.

This is what I think I need but from my understanding I can do way better and use a foreach loop so it does not put such a load on the servers.

Get-Exchange Server | where {$-.isHubTransportServer -eq $true} | Get MessageTrackingLog -Resultsize 10MB |  -Start "1st day range" -End"30th day" -Eventid "Send,Receive" | where{$.source -eq "SMTP" -and $_.recepients -like " *@all 8 domains" | Export-CSV c:\msgstats.csv

Any help would be great and I thank you in advance.


Embedding inline images

$
0
0
I have developed a desktop application to create an email with embedded inline images. This is accomplished using Exchange Service (OWA). When I send the email dependent on the to email address I will see the embedded image (no attachment visible) or no image (attachment image visible). Has anyone else experenced this issue and if so shed some light on the solution.

Craig Wiley

ActiveSync Redirect 301

$
0
0

Hi All,

just a question, i´m working on testing Exchange Client mobile apps (activesync). and one of the apps do not support the reponse redirect  http 301 -  and the team of the apps said that they will expect a redirect 451 ? this is correct?

Redirect 301 is supported on ActiveSync - the enviroment is Exchange 2010 sp2  with IIS ARR as reverse proxy  !

Thanks for your help !


Gustavo Gurmandi - http://www.grupoitpro.com.ar

Exchange Server 2007 with 2012 R2 DC

$
0
0

At current 

Exchange 2007 SP3 with all the latest updates

x 3 domain controllers 2008 R2 

domain and forest function level 2008 R2

i know its not supported and i know that its a very risk move however i would like to know why if i introduce a windows 2012 r2 domain controller and changed the domain level 2012 R2 my setup is not supported, what is the reasoning behind this and what will break and why

however if i introduced a windows 2012 domain controller and changed the domain level to 2012 it is supported, for me to understand this i would like to know the ins and out if anyone could explain this please

as i cant seem to find an answer 

thank you


kev

Syncornaization Of Calander with EWS

$
0
0

Hello,

I have binded resource(Room) calander with my account. In order to get details of meeting, when ever someone books this resource. I have been successfull in gaining the required information by doing this.

But the thing is i have to run my code everytime to get the details.

What i want was i will run it once and with some kind of active sync it should get me information when ever a new meeting was booked on this resource. So at the same time i can save this data into data base

I was new to EWS so please give me some advice regarding this Problem.

Thanks in advance.

Public Folder

$
0
0

Hi,<o:p></o:p>

I had upgraded
from Exchange 2003 to 2010 few months ago so I have moved the Public
folder database to exchange 2010 and decommissioned exchange 2003. I am
using outlook 2010 client so I don't need the public folder. <o:p></o:p>

I have
check through the EMC in exchange 2010, I can see two sub folder within Public Folder.<o:p></o:p>

Public
folder<o:p></o:p>

1. Default
public folder<o:p></o:p>

2. System
Public folder<o:p></o:p>

Within the
system public folder there are few subfolder i.e. event root, store events etc.<o:p></o:p>

How do I
delete all these folder from exchange 2010?<o:p></o:p>

Cheers!<o:p></o:p>


Project Server 2016 and SharePoint 2016

$
0
0

I would like to know if Project Server 2016 and SharePoint 2016 the same product? see "officeserver.img" when downloading

Exchange EWS Managed Api Streaming Connection Error: ErrorNoApplicableProxyCASServersAvailable - Exchange Web Services are not currently available for this request because there are no available Client Access Services Servers in the target AD Site.

$
0
0

Hello,

I'm using EWS Managed Api 2 to develop client mail application. For sync operation, I tried to use streaming notification technique however, an error occured when I tried to open connection. Error is that ErrorNoApplicableProxyCASServersAvailable - Exchange Web Services are not currently available for this request because there are no available Client Access Services Servers in the target AD Site.

I could not find any solution to solve this issue. Coding part can be seen below. Could you help about my problem?

var service = new ExchangeService(ExchangeVersion.Exchange2010_SP2, TimeZoneInfo.FindSystemTimeZoneById("UTC"));

service.Credentials = new WebCredentials(Username, MailPassword, Domain);

service.TraceEnabled = false;
service.Url = new Uri(ExchangeURL);

StreamingSubscription ss = _exchangeMail.service.SubscribeToStreamingNotifications(                                             new FolderId[] { WellKnownFolderName.Inbox },

                                              EventType.NewMail,                                              EventType.Created,                                              EventType.Deleted,                                              EventType.Modified,                                              EventType.Moved,                                              EventType.Copied,                                              EventType.FreeBusyChanged);                      StreamingSubscriptionConnection connection = new StreamingSubscriptionConnection(_exchangeMail.service,new StreamingSubscription[] { ss }, 30);                      //connection.AddSubscription(ss);                      connection.OnSubscriptionError += OnSubscriptionError;                      connection.OnNotificationEvent += OnNotificationEvent;                      connection.OnDisconnect += OnDisconnect;                      connection.Open();


Finding Unique Id or email address by using Display names in EWS

$
0
0

Hello,

Here i have display names and by using them i want retrive email ids or Unique ID of the user if possible both of them. By using EWS

Please give suggestions on it.

Thank in advance.


Getting notification from Resource calendar in EWS

$
0
0

Here i am using resource calendar to findout when a meeting is booked on that resource.

  string MailboxToAccess = "Room@exchange.com";        // resource mail address
   FolderId CalendarFolderId = new FolderId(WellKnownFolderName.Calendar, MailboxToAccess);

like above.

So when i wants to use streaming i have to give user credentials and i am only able to access this particular users calendar. But what i really looking is to access the resource calendar like above.

So how can i do streaming on a resourse calender?

Thanks in advance for suggestions

Set appointment/task RTF/HTML body to display correctly in Outlook web and desktop

$
0
0

Hi,

I'm using EWS API 2.0. I'm trying to set an EWS appointment/task body with formatting. I have HTML or RTF that contains fully formatted text with embedded images. I tried 2 methods:

1. Setting appointment/task Body = new MessageBody(BodyType.HTML, htmlText). The images do not come over when I view this item in Outlook.

2. I tried setting the RTF of the appointment/task. The item looks good in Outlook web, but not desktop. Here's my code:

            

I'm using DevEx RichEdit control to obtain the RTF text - 

byte[] rtfValue;
            using (RichEditControl richEditControl = new RichEditControl())
            {
                richEditControl.HtmlText = htmlText;
                rtfValue=Encoding.ASCII.GetBytes(richEditControl.RtfText);
            }

        ExtendedPropertyDefinition rtfPropertyDefinition = new ExtendedPropertyDefinition(0x1009,MapiPropertyType.Binary);
        _exchangeAppointment.SetExtendedProperty(rtfPropertyDefinition, rtfValue);

How do I convert to RTF in the correct compressed format for EWS? (is that the issue here?)

And How can I correctly set the format?


Thanks.



[E2016][TA][C#]Transport Service Stops When Loading Custom Transport Agent

$
0
0
Hello All,

We have a transport agent that was originally written to run on an Exchange 2007 server, and was built with .NET 3.5.   (The agent itself relies on two additional .NET 3.5 DLL's for logging functions)  The agent looks for messages with a token in the subject, and then will copy the new message text to an external DB.

We're in the process of migrating to Exchange 2016.   Fortunately we have the source code for the agent.

First we migrated to an Exchange 2013 system, and we were able to get our TA working by rebuilding it with .NET 4.52, and referencing the E2013 versions of  Microsoft.Exchange.Data.Common.dll and Microgosft.Exchange.Data.Transport.dll.   We have not been able to get the logging to file functions working, however, which is handled by the two other DLL's that we don't have the sources for.  But the TA itself was processing messages just fine.

Now we're moving over to Exchange 2016, and we haven't been able to get our TA working at all with it.  There are two events in the Application Log when the Transport service appears to load our TA:

Failed to create agent factory for the agent 'MyAgentTransportAgent' with error 'Failed to create type 'MyAgent.MyAgentAgentFactory' from assembly 'C:\MyAgent\MyAgent.dll' due to error 'Invalid agent assembly path.'.'. Please verify the corresponding transport agent assembly and dependencies with correct version are installed.


Microsoft Exchange couldn't start transport agents. The Microsoft Exchange Transport service will be stopped. Exception details: Failed to create type 'MyAgent.MyAgentAgentFactory' from assembly 'C:\MyAgent\MyAgent.dll' due to error 'Invalid agent assembly path.'. : Microsoft.Exchange.Data.ExchangeConfigurationException: Failed to create type 'MyAgent.MyAgentFactory' from assembly 'C:\MyAgent\MyAgent.dll' due to error 'Invalid agent assembly path.'. ---> System.ArgumentException: Invalid agent assembly path.

   --- End of inner exception stack trace ---
   at Microsoft.Exchange.Data.Transport.Internal.MExRuntime.FactoryTable.CreateAgentFactory(AgentInfo agentInfo)
   at Microsoft.Exchange.Data.Transport.Internal.MExRuntime.FactoryTable..ctor(IEnumerable agents, FactoryInitializer factoryInitializer)
   at Microsoft.Exchange.Data.Transport.Internal.MExRuntime.RuntimeSettings..ctor(MExConfiguration config, String agentGroup, FactoryInitializer factoryInitializer)
   at Microsoft.Exchange.Data.Transport.Internal.MExRuntime.MExRuntime.Initialize(String configFile, String agentGroup, ProcessTransportRole processTransportRole, String installPath, FactoryInitializer factoryInitializer)
   at Microsoft.Exchange.Transport.Categorizer.MExEvents.Initialize(String configFilePath)
   at Microsoft.Exchange.Transport.Components.CategorizerMExRuntimeLoader.Load()


I've verified that we are referencing the Exchange 2016 versions of Microsoft.Exchange.Data.Common.dll and Microgosft.Exchange.Data.Transport.dll, but, just can't get the agent to load without the transport service stopping.  Does anyone have any ideas on the culprit with this?

Thank You



Maurice

EWS create mailbox

$
0
0

Hi,

Can I use EWS to remotely create mailbox? 

thanks,

EWS reports SendItem as succeeding but message is still in Drafts folder

$
0
0

I'm using the EWS Managed API to send emails via exchange. When sending an item with attachments I first do aCreateItem and then a SendItem. Mostly this works fine but sometimes items are left in the Drafts folder, even though EWS reports theSendItem succeeds. How can I tell what's going on here?

The EWS messages I see from tracing are first CreateItem:

<?xml version="1.0" encoding="utf-8"?><soap:Envelopexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><t:RequestServerVersionVersion="Exchange2013"/></soap:Header><soap:Body><m:CreateItemMessageDisposition="SaveOnly"><m:SavedItemFolderId><t:DistinguishedFolderIdId="drafts"><t:Mailbox><t:EmailAddress>amailbox@thedomain.com</t:EmailAddress></t:Mailbox></t:DistinguishedFolderId></m:SavedItemFolderId>

        ...

      </m:CreateItem></soap:Body></soap:Envelope></Trace>

I get a Success response:

<?xml version="1.0" encoding="utf-8"?><s:Envelopexmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfoMajorVersion="15"MinorVersion="0"MajorBuildNumber="1104"MinorBuildNumber="3"Version="V2_22"xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"xmlns="http://schemas.microsoft.com/exchange/services/2006/types"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Bodyxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:CreateItemResponsexmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:CreateItemResponseMessageResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Items><t:Message><t:ItemIdId="AAMkADExMmY0MTgzLWJmZmUtNDcxNi1iOTk0LWMzZTU3M2I3NjBkMwBGAAAAAABL/dBAdDByRbztYn12Cy/4BwCJZGY3HQ5zQpbF9WoRXD0sAAAAAAEPAACJZGY3HQ5zQpbF9WoRXD0sAAA6HNVuAAA="ChangeKey="CQAAABYAAACJZGY3HQ5zQpbF9WoRXD0sAAA6JC4z"/><t:Attachments><t:FileAttachment><t:AttachmentIdId="AAMkADExMmY0MTgzLWJmZmUtNDcxNi1iOTk0LWMzZTU3M2I3NjBkMwBGAAAAAABL/dBAdDByRbztYn12Cy/4BwCJZGY3HQ5zQpbF9WoRXD0sAAAAAAEPAACJZGY3HQ5zQpbF9WoRXD0sAAA6HNVuAAABEgAQAGiKX5lgtuFLgfIBgyg4IwM="/></t:FileAttachment><t:FileAttachment><t:AttachmentIdId="AAMkADExMmY0MTgzLWJmZmUtNDcxNi1iOTk0LWMzZTU3M2I3NjBkMwBGAAAAAABL/dBAdDByRbztYn12Cy/4BwCJZGY3HQ5zQpbF9WoRXD0sAAAAAAEPAACJZGY3HQ5zQpbF9WoRXD0sAAA6HNVuAAABEgAQADkNd4D6H0NAgxCM7uH6MGo="/></t:FileAttachment><t:FileAttachment><t:AttachmentIdId="AAMkADExMmY0MTgzLWJmZmUtNDcxNi1iOTk0LWMzZTU3M2I3NjBkMwBGAAAAAABL/dBAdDByRbztYn12Cy/4BwCJZGY3HQ5zQpbF9WoRXD0sAAAAAAEPAACJZGY3HQ5zQpbF9WoRXD0sAAA6HNVuAAABEgAQAKu2RdYFlBVIiLyPxshNCZQ="/></t:FileAttachment><t:FileAttachment><t:AttachmentIdId="AAMkADExMmY0MTgzLWJmZmUtNDcxNi1iOTk0LWMzZTU3M2I3NjBkMwBGAAAAAABL/dBAdDByRbztYn12Cy/4BwCJZGY3HQ5zQpbF9WoRXD0sAAAAAAEPAACJZGY3HQ5zQpbF9WoRXD0sAAA6HNVuAAABEgAQAJ2C2tyz2iJHm8XC9LmSkcA="/></t:FileAttachment></t:Attachments></t:Message></m:Items></m:CreateItemResponseMessage></m:ResponseMessages></m:CreateItemResponse></s:Body></s:Envelope></Trace>

I then ask to send it and move to SentItems:

<?xml version="1.0" encoding="utf-8"?><soap:Envelopexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><t:RequestServerVersionVersion="Exchange2013"/></soap:Header><soap:Body><m:SendItemSaveItemToFolder="true"><m:ItemIds><t:ItemIdId="AAMkADExMmY0MTgzLWJmZmUtNDcxNi1iOTk0LWMzZTU3M2I3NjBkMwBGAAAAAABL/dBAdDByRbztYn12Cy/4BwCJZGY3HQ5zQpbF9WoRXD0sAAAAAAEPAACJZGY3HQ5zQpbF9WoRXD0sAAA6HNVuAAA="ChangeKey="CQAAABYAAACJZGY3HQ5zQpbF9WoRXD0sAAA6JC4z"/></m:ItemIds><m:SavedItemFolderId><t:DistinguishedFolderIdId="sentitems"><t:Mailbox><t:EmailAddress>amailbox@thedomain.com</t:EmailAddress></t:Mailbox></t:DistinguishedFolderId></m:SavedItemFolderId></m:SendItem></soap:Body></soap:Envelope></Trace>

And I get a Success NoError response:

<?xml version="1.0" encoding="utf-8"?><s:Envelopexmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfoMajorVersion="15"MinorVersion="0"MajorBuildNumber="1104"MinorBuildNumber="3"Version="V2_22"xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"xmlns="http://schemas.microsoft.com/exchange/services/2006/types"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Bodyxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:SendItemResponsexmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:SendItemResponseMessageResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode></m:SendItemResponseMessage></m:ResponseMessages></m:SendItemResponse></s:Body></s:Envelope></Trace>

These are all traced by the same managed ThreadId so I'm pretty sure they all correspond to the same item.

EDIT: I'm not using exchange impersonation. I'm authenticating with username & password auth with credentials for the mailbox that is sending the items.

Also asked on StackOverflow


With streaming how to get cancelled meetings ids in EWS

$
0
0

Here i impersonated resource calendar with user and already gave impersonate rights to that user.

Everything is working, when ever a meeting is created i get notification with ItemID of the meeting.

Actually below code was example for streaming inbox, where he uses WellKnowFolderName.Inbox i just changed it to WellKnowFolderName.Calendar and rest of the code was unchanged.

In "EventType.Created" is working fine when ever i creats a meeting i am getting the update but "EventType.Delete" is not working. So what should i use to get notifications about meeting cancellation


class Notifications
  {
        static ExchangeService service = Service.ConnectToService(UserDataFromConsole.GetUserData(), new TraceListener());
      private static AutoResetEvent Signal;


       static void Main(string[] args)
        {
            string MailboxToAccess = "Room@exchange.com";
            ImpersonatedUserId impersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SmtpAddress, MailboxToAccess);
            service.ImpersonatedUserId = impersonatedUserId;

            SetStreamingNotifications(service);

            // Wait for the application to exit
            Signal = new AutoResetEvent(false);
            Signal.WaitOne();

        }
        static void SetStreamingNotifications(ExchangeService service)
        {
           // Subscribe to streaming notifications on the Inbox folder, and listen
            // for "NewMail", "Created", and "Deleted" events.
           StreamingSubscription streamingsubscription = service.SubscribeToStreamingNotifications(
                new FolderId[] { WellKnownFolderName.Calendar },

                EventType.Created,
              EventType.Deleted);

Thanks in advance for suggestions.



Cannot load Appointment object, which is just created now; Error: The specified object was not found in the store.

$
0
0

Hi,

I'm creating a new meeting request "Appointment". As soon as I create that I try to load its properties, so that I can show that in my UI. But, it randomly throws an exception,

Error: The specified object was not found in the store., at Microsoft.Exchange.WebServices.Data.ServiceResponse.InternalThrowIfNecessary () [0x00000] in <filename unknown>:0 at Microsoft.Exchange.WebServices.Data.ServiceResponse.ThrowIfNecessary () [0x00000] in <filename unknown>:0 at Microsoft.Exchange.WebServices.Data.MultiResponseServiceRequest`1[Microsoft.Exchange.WebServices.Data.ServiceResponse].Execute () [0x00000] in <filename unknown>:0 at Microsoft.Exchange.WebServices.Data.ExchangeService.InternalLoadPropertiesForItems (IEnumerable`1 items, Microsoft.Exchange.WebServices.Data.PropertySet propertySet, ServiceErrorHandling errorHandling) [0x00000] in <filename unknown>:0 at Microsoft.Exchange.WebServices.Data.Item.InternalLoad (Microsoft.Exchange.WebServices.Data.PropertySet propertySet) [0x00000] in <filename unknown>:0 at Microsoft.Exchange.WebServices.Data.ServiceObject.Load () [0x00000] in <filename unknown>:0

...

My code is pretty simple,

Appointment meeting1 = new Appointment(service);
meeting1.Subject = subject;               
meeting1.Body =message;
......
meeting1.Save(SendInvitationsMode.SendToAllAndSaveCopy);

meeting1.Load(); //This line randomly throws above exception 

Please suggest.


vin14976@hotmail.com TechCenter Forums

My Third-Party Transport Agent Cannot be Triggered.

$
0
0
I created a third-party transport agent, and installed it on my exchange server, but only when I logon MSExchangeTransport service by local system account can the transport agent be triggered. Who can help me, and tell me what's the minimum privilege should be to run my transport agent normally. The transport agent just realize the function of getting the mail object and serializing it.

Save contacts in specific folder

$
0
0

Hi

I have couple of contact folder and I want to save contact in specific folder. I am using EWS Managed API to save contacts.

Based on documentation, it has option to save data in specific folder but it is not working. 


Satyam MCITP, MCPD

identifying target folder for Outlook365 “Archive” action

$
0
0

The Outlook365 web app has an E keyboard shortcut (and an Archive menu item). The first time you use it with a selected message, Outlook lets the user create an "Archive" folder or pick an existing folder for quick message archiving. After that, pressing the E key will automatically move the selected message(s) to the archive folder they'd initially created or selected.

How can an EWS client programmatically determine which folder has been selected as the E archive target?

Cannot find the user object in new Options page with Exchange Server 2016

$
0
0

Hello,

I just finished configuring Exchange Server 2016 CU1 for my organization, the domain's topology is

Master domain: orgName.com (DC01.orgName.com)

  • Installed Exchange Server 2016 in a VM.

Child domain: child.orgName.com (DC02.child.orgName.com)

  • Domain Account: CHILD\Test1 (mailbox enabled.)

Problem:

When I logged CHILD\Test1(UPN: Test1@child.orgName.com) into owa, mail feature worked fine, but I switch to "Options" feature, and click "General -> My account", the right-pane would show the message "There was a problem loading your options. Please try again." Then I click "Mail -> Automatic processing -> Automatic replies",  the right-pane would show the message "The operation couldn't be performed because object 'child.orgName.com/TechnicalDepart/Test1' couldn't be found on 'DC01.orgName.com'".

Environment:

The command Get-ExchangeServer -Status | fl returned:

RunspaceId                      : 4b31c7b2-382a-4045-a115-98239ff69843
Name                            : EXCHG-DB01
DataPath                        : C:\Program Files\Microsoft\Exchange Server\V15\Mailbox
Domain                          : orgName.com
Edition                         : Enterprise
ExchangeLegacyDN                : /o=OrgName/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=EXCHG-DB01
ExchangeLegacyServerRole        : 0
Fqdn                            : EXCHG-DB01.orgName.com
CustomerFeedbackEnabled         :
InternetWebProxy                :
IsHubTransportServer            : True
IsClientAccessServer            : True
IsExchange2007OrLater           : True
IsEdgeServer                    : False
IsMailboxServer                 : True
IsE14OrLater                    : True
IsE15OrLater                    : True
IsProvisionedServer             : False
IsUnifiedMessagingServer        : True
IsFrontendTransportServer       : True
NetworkAddress                  : {ncacn_vns_spp:EXCHG-DB01, netbios:EXCHG-DB01, ncacn_np:EXCHG-DB01, ncacn_spx:EXCHG-DB01, ncacn_ip_tcp:EXCHG-DB01.orgName.com, ncalrpc:EXCHG-DB01}
OrganizationalUnit              : orgName.com/EXCHG-DB01
AdminDisplayVersion             : Version 15.1 (Build 396.30)
Site                            : orgName.com/Configuration/Sites/Default-First-Site-Name
ServerRole                      : Mailbox, ClientAccess
ErrorReportingEnabled           : False
StaticDomainControllers         : {}
StaticGlobalCatalogs            : {}
StaticConfigDomainController    :
StaticExcludedDomainControllers : {}
MonitoringGroup                 :
CurrentDomainControllers        : {DC01.orgName.com, DC02.child.orgName.com}
CurrentGlobalCatalogs           : {DC01.orgName.com, DC02.child.orgName.com}
CurrentConfigDomainController   : DC01.orgName.com
ProductID                       : 0000-0000-0000-0000
IsExchangeTrialEdition          : False
IsExpiredExchangeTrialEdition   : False
MailboxProvisioningAttributes   :
RemainingTrialPeriod            : 00:00:00
Identity                        : EXCHG-DB01
IsValid                         : True
ExchangeVersion                 : 0.1 (8.0.535.0)
DistinguishedName               : CN=EXCHG-DB01,CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=OrgName,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=OrgName,DC=com
Guid                            : 4782acb8-4287-49df-8b1a-11b23f18ae69
ObjectCategory                  : orgName.com/Configuration/Schema/ms-Exch-Exchange-Server
ObjectClass                     : {top, server, msExchExchangeServer}
WhenChanged                     : 2016/5/23 01:02:49
WhenCreated                     : 2016/5/3 12:08:35
WhenChangedUTC                  : 2016/5/22 05:02:49
WhenCreatedUTC                  : 2016/5/3 04:08:35
OrganizationId                  :
Id                              : EXCHG-DB01
OriginatingServer               : DC01.orgName.com
ObjectState                     : Unchanged

Can any expert help?

Viewing all 7132 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>