Thursday 23 December 2010

IE6: Dark corner of the hidden web

I was reviewing some trends on the web last week with regards to the utilization of Microsoft Internet Explorer (IE). The focus of the analysis was on how Internet Explorer 8 was be taken up  against previous versions such as IE7 and IE6. Note: I could not find any tracking data on IE5, which in itself is probably the answer to any trending questions.

From an application monitoring stand-point, IE is a rare example of "single use" or "single track" upgrade cycle. When I have performed application utilization tracking in the past, the primary difficulty was not in determining if an application had been used, but exactly what version. We used all sorted of tricks (EXE header capture as good example of what did not work) to determine the exact version of an application a user was actually using on a particular day/time/place/machine/environment.

Note: the "EXE header capture" process looked like a great idea at the time, unfortunately, a lot of application minor and sub-version information was NOT contained in the primary executable (sometimes it was just a stub) but rather in supporting DLL's and other binary resources.

With Internet Explorer, due to the integration with the OS, you can only use one version of Internet Explorer on a machine. Once you have upgraded to IE8, that's it. You can't use IE6 again - Unless you rebuild your machine. "There is no turning back - The only way is up!"

Or, you can always try Chrome.  Oops.

What did I say about a simple story? Now, we have to worry about multiple browsers.  Specifically, Firefox, Chrome, Safari and to a much lesser degree Opera.

Here is a sample of the two reports that I was shown;



These results were captured from the Global Stats site found here: http://www.w3counter.com/globalstats.php

And most interestingly for Internet Explorer 8 application compatibility story, here is a comparison of the different versions of Internet Explorer



Version 6 of Internet Explorer is definitely on the decline, with a month-on-month decline for the past three years. And, you will see (highlighted by the red circle) , as soon as IE8 was released, the biggest loser was IE6, with some  loses on IE7.

And, here is where I start to get into trouble. If you look at the source of these (much talked about) results, you will see that a lot of reporting tools are "self-enforced". Meaning, that you website administrators have to place a counter on each page to get an accurate account of what is going and what version of IE was used.

And now for the big problem for these results: It completely ignores the vast majority of the corporate world for the following reasons;

  1. Large commercial organizations are simply not going to have "counter scripts" on their pages
  2. Most web traffic coming OUT from an organization will have been filtered/blocked by a proxy server
  3. Again, for large organizations, there is preferred (sometimes mandatory) browser - namely Internet Explorer. 

Taking these points together, I feel that Internet Explorer's browser share is significantly under represented by these types of analysis and stats. And, in particular my belief (from my daily experiences) is that more organizations than are reported in these types of metrics are using IE6.

Feeling courageous, I would hazard to add another 10% to the reported figures for Internet Explorer and  a similar increase for Internet Explorer 6.

Monday 20 December 2010

Avecto: Filling in the UAC gaps

As I had to put on my "Security Cap" on for last week's Patch Tuesday update,  which was the largest (but not necessarily the scariest) series of updates from Microsoft to date. As part of my briefing for that report, I reviewed a Zero-day flaw that bypassed the Microsoft User Account Control (UAC) security mechanism.


As the author (Chester) outlines in his blog entry;

"The exploit takes advantage of a bug in win32k.sys, which is part of the Windows kernel. The flaw is related to the way in which a certain registry key is interpreted and enables an attacker to impersonate the system account, which has nearly unlimited access to all components of the Windows system. The registry key in question is under the full control of non-privileged users."

On it's own this bug does not allow for remote code execution, but it does allow users to execute code as if they were an administrator.

As it happens, I was also speaking with Tony Bolland from Avecto about their security product Privilege Guard. Tony is a real veteran of the industry  and it looks like their company is doing great things. Avecto's Privilege Guard effectively delivers a super-set of the security and control functionality   offered by Microsoft's built-in UAC functionality. 

Drawing, from the Avecto website, Privilege Guard delivers the following benefits;
  • Enables users to logon with standard user rights without compromising their ability to perform their job function
  • Enables users to run legacy applications or any other applications that require admin rights
  • Enables users to perform approved computer configuration tasks, such as adding local printers and changing the time
  • Restricts users to installing and running only trusted applications
  • Enables server administrators to work under least privilege, with an audit trail of privileged operations
  • Works seamlessly with User Account Control (UAC) and eliminates or replaces inappropriate UAC prompts

From what I understand about the product, Privilege Guard would have prevented any further impact/damage to the user or workstation environment  by managing the restricted access to all system level components. It looks like we will see an increasing need for these security "add-ons" to the basic UAC security model in the future as these Zero-day security exploits continue to proliferate.

I plan to have more of a play with the Avecto product in the new year, and I will keep you posted.

You can find out more about the Avecto Privilege Guard product here: http://www.avecto.com/product/index.html

The AOK December Patch Tuesday Impact Analysis Report is located here: http://changebase.com/NewsPage.aspx?page=News/20101214-01_PatchTuesday.xml&style=~/Style/PatchTuesday.xsl


Wednesday 15 December 2010

CWD should be the next DEP

Ok, we are going to go a little deep techy here today.

I was trying to resolve an application compatibility issue for a client a little while ago  - this of course is an occupational hazard ...

The problem was legacy (and poorly written) applications were trying to load DLL's using the "Current Working Directory" or CWD. This meant that core DLL's such as MSVCRT.DLL and MFC40.DLL were loaded from the application directory - rather than a protected and managed directory like SYSTEM32.

Normally, my approach would be to simply remove the files - thus solving the compatibility issue by forcing the application to use the later versions of these core DLL's contained in the SYSTEM32 directory.

Unfortunately, both Side-by-Side (SxS) isolation and my standard approaches (delete first, cover your tracks later) did not work.

So, I went hunting for ways to stop applications from loading DLL's from the current directory. And, funnily enough, it looks like enough people have been experiencing the same issue as Microsoft has included the CWDIllegalInDllSearch feature in Windows 7.

You can read more about this approach to control the Load Search order of DLL's in the references included at the bottom of this post, but here is a brief description of the update and registry setting;

This update introduces a new registry entry CWDIllegalInDllSearch that allows users to control the DLL search path algorithm. The DLL search path algorithm is used by the LoadLibrary API and the LoadLibraryEx API when DLLs are loaded without specifying a fully qualified path.  
The update allows the administrator to define the following on a system-wide or a per-application basis: 

  • Remove the current working directory from the library search path. 
  • Prevent an application from loading a library from a WebDAV location. 
  • Prevent an application from loading a library from both a WebDAV, as well as a remote UNC location. 


How cool is this?

There are a number of scenarios supported by this new feature including;

  1. The application is started from a local folder, such as C:\Program Files
  2. The application is started from a remote folder, such as \\remote\shareremote\share)
  3. The application is started from a WebDav folder, such as http://remote/share)


Through a combination of registry settings you can control how applications search for their DLL's and supporting files. That said, I noticed that you cannot prevent loading libraries from USB sticks and other like devices.

So, by updating the following registry settings for;

A single workstation, set the following registry keys

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager

A  specific application on a computer:

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\

With the following settings, you have pretty good control over how your application will look for DLL's on the machine, with the added bonus that you can configure this settings for particular applications.

Here are some suggested settings;
0xFFFFFFFF:  Removes the current working directory from the default DLL search order 
0 : Uses the default DLL search path that was mentioned earlier 
1 : Blocks a DLL Load from the current working directory if the current working directory is set to a WebDAV folder 
2 : Blocks a DLL Load from the current working directory if the current working directory is set to a remote folder (such as a WebDAV or UNC location) 

Note: No key or other values Uses the default DLL search path that was mentioned earlier

So, following my instincts (an owing to a slight personality disorder) I set my application specific settings to 0xFFFFFFFF. And, the application behaved much better. Unfortunately, we hit another compatibility issue, but that will be dealt with in another post.

Ohh, and why the title?

If you look at how CWD really works, we should be implementing CWD lock-downs as a matter of security for each workstation. This should operate in the same manner that the security mechanism Data Execution Prevention (DEP) was implemented in Vista and Windows 7.

Maybe we will see CWD in Windows 8? I can't wait.

For more information, see the following links and references.

A new CWDIllegalInDllSearch registry entry is available to control the DLL search path algorithm
http://support.microsoft.com/kb/2264107

And some information on the LoadLibrary function here:
http://msdn.microsoft.com/library/ms684179(v=VS.85).aspx

A detailed description of the Data Execution Prevention (DEP) feature in Windows XP Service Pack 2, Windows XP Tablet PC Edition 2005, and Windows Server 2003
http://support.microsoft.com/kb/875352

Microsoft Patch Tuesday Report - 14 December 2010

Application Compatibility Update - and it's a big one!

With this final Microsoft Patch Tuesday update of 2010, we see the largest collection of updates ever delivered by Microsoft in a single Patch Tuesday release, with 17 updates having the following rating; 2 Critical, 14 Important and 1 Moderate. Aside from the significant number of Security and Application updates with this Patch Tuesday release cycle, we see a moderate number of issues affecting a small number of applications. The ChangeBase team recommends a particular focus on the Microsoft Security Update MS10-106 as it raised a significant number of issues on the AOK sample server platform portfolio.

Here is a sample of the results for one application and a summary of the Patch Tuesday results for one of our AOK Sample databases.

MS10-105 Vulnerabilities in Microsoft Office Graphics Filters Could Allow for Remote Code Execution





And here is a sample AOK Summary report for a sample database where the AOK Patch Impact team has run the latest Microsoft Updates against a small application portfolio.




AOK Patch Impact Testing Summary

MS10-090 Cumulative Security Update for Internet Explorer (2416400)

MS10-091 Vulnerabilities in the OpenType Font (OTF) Driver Could Allow Remote Code Execution (2296199)

MS10-092 Vulnerability in Task Scheduler Could Allow Elevation of Privilege (2305420)

MS10-093 Vulnerability in Windows Movie Maker Could Allow Remote Code Execution (2424434)

MS10-094 Vulnerability in Windows Media Encoder Could Allow Remote Code Execution (2447961)

MS10-095 Vulnerability in Microsoft Windows Could Allow Remote Code Execution (2385678)

MS10-096 Vulnerability in Windows Address Book Could Allow Remote Code Execution (2423089)

MS10-097 Insecure Library Loading in Internet Connection Signup Wizard Could Allow Remote Code Execution (2443105)

MS10-098 Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2436673)

MS10-099 Vulnerability in Routing and Remote Access Could Allow Elevation of Privilege (2440591)

MS10-100 Vulnerability in Consent User Interface Could Allow Elevation of Privilege (2442962)

MS10-101 Vulnerability in Windows Netlogon Service Could Allow Denial of Service (2207559)

MS10-102 Vulnerability in Hyper-V Could Allow Denial of Service (2345316)

MS10-103 Vulnerabilities in Microsoft Publisher Could Allow Remote Code Execution (2292970)

MS10-104 Vulnerability in Microsoft SharePoint Could Allow Remote Code Execution (2455005)

MS10-105 Vulnerabilities in Microsoft Office Graphics Filters Could Allow for Remote Code Execution (968095)

MS10-106 Vulnerability in Microsoft Exchange Server Could Allow Denial of Service (2407132)


Security Update Detailed Summary



MS10-090 Cumulative Security Update for Internet Explorer (2416400)

Description This security update resolves four privately reported vulnerabilities and three publicly disclosed vulnerabilities in Internet Explorer. The most severe vulnerabilities could allow remote code execution if a user views a specially crafted Web page using Internet Explorer. Users whose accounts are configured to have fewer user rights on the system could be less impacted than users who operate with administrative user rights.

Payload Browseui.dll, Html.iec, Ieencode.dll, Iepeers.dll, Mshtml.dll, Mshtmled.dll, Mstime.dll, Shdocvw.dll, Tdc.ocx, Urlmon.dll, Wininet.dll

Impact Critical - Remote Code Execution



MS10-091 Vulnerabilities in the OpenType Font (OTF) Driver Could Allow Remote Code Execution (2296199)

Description This security update resolves several privately reported vulnerabilities in the Windows Open Type Font (OTF) driver that could allow remote code execution. An attacker could host a specially crafted OpenType font on a network share. The affected control path is then triggered when the user navigates to the share in Windows Explorer, allowing the specially crafted font to take complete control over an affected system. An attacker could then install programs; view, change, or delete data; or create new accounts with full user rights.

Payload Atmfd.dll

Impact Critical - Remote Code Execution



MS10-092 Vulnerability in Task Scheduler Could Allow Elevation of Privilege (2305420)

Description This security update resolves a publicly disclosed vulnerability in Windows Task Scheduler. The vulnerability could allow elevation of privilege if an attacker logged on to an affected system and ran a specially crafted application. An attacker must have valid logon credentials and be able to log on locally to exploit this vulnerability. The vulnerability could not be exploited remotely or by anonymous users.

Payload Tmm.dll, Hashcleanup.exe, Taskcomp.dll, Taskschd.dll, Taskeng.exe, Taskeng.mof, Schedsvc.dll, Schedsvc.mof, Wmicmiplugin.dll

Impact Important - Elevation of Privilege



MS10-093 Vulnerability in Windows Movie Maker Could Allow Remote Code Execution (2424434)

Description This security update resolves a publicly disclosed vulnerability in Windows Movie Maker. The vulnerability could allow remote code execution if an attacker convinces a user to open a legitimate Windows Movie Maker file that is located in the same network directory as a specially crafted library file. For an attack to be successful, a user must visit an untrusted remote file system location or WebDAV share and open a document from this location that is then loaded by a vulnerable application.

Payload Moviemk.exe

Impact Important - Remote Code Execution



MS10-094 Vulnerability in Windows Media Encoder Could Allow Remote Code Execution (2447961)

Description This security update resolves a publicly disclosed vulnerability in Windows Media Encoder. The vulnerability could allow remote code execution if an attacker convinces a user to open a legitimate Windows Media Profile (.prx) file that is located in the same network directory as a specially crafted library file. For an attack to be successful, a user must visit an untrusted remote file system location or WebDAV share and open a document from this location that is then loaded by a vulnerable application.

Payload Custdll.dll, Wmdevctl.dll, Wmenc.exe, Wmencagt.exe, Wmenceng.dll, Wmex.dll

Impact Important - Remote Code Execution



MS10-095 Vulnerability in Microsoft Windows Could Allow Remote Code Execution (2385678)

Description This security update resolves a privately reported vulnerability in Microsoft Windows. The vulnerability could allow remote code execution if a user opens a file type such as .eml and .rss (Windows Live Mail) or .wpost (Microsoft Live Writer) located in the same network folder as a specially crafted library file. For an attack to be successful, a user must visit an untrusted remote file system location or WebDAV share and open a document from this location that is then loaded by a vulnerable application.

Payload Webio.dll

Impact Important - Remote Code Execution



MS10-096 Vulnerability in Windows Address Book Could Allow Remote Code Execution (2423089)

Description This security update resolves a publicly disclosed vulnerability in Windows Address Book. The vulnerability could allow remote code execution if a user opens a Windows Address Book file located in the same network folder as a specially crafted library file. For an attack to be successful, a user must visit an untrusted remote file system location or WebDAV share and open a document from this location that is then loaded by a vulnerable application.

Payload Wab.exe

Impact Important - Remote Code Execution



MS10-097 Insecure Library Loading in Internet Connection Signup Wizard Could Allow Remote Code Execution (2443105)

Description This security update resolves a publicly disclosed vulnerability in the Internet Connection Signup Wizard of Microsoft Windows. This security update is rated Important for all supported editions of Windows XP and Windows Server 2003. All supported editions of Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2 are not affected by the vulnerability.

Payload Isign32.dll

Impact Important - Remote Code Execution



MS10-098 Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2436673)

Description This security update resolves one publicly disclosed vulnerability and several privately reported vulnerabilities in Microsoft Windows. The vulnerabilities could allow elevation of privilege if an attacker logged on locally and ran a specially crafted application. An attacker must have valid logon credentials and be able to log on locally to exploit these vulnerabilities. The vulnerabilities could not be exploited remotely or by anonymous users.

Payload Win32k.sys, W32ksign.dll

Impact Important - Elevation of Privilege



MS10-099 Vulnerability in Routing and Remote Access Could Allow Elevation of Privilege (2440591)

Description This security update addresses a privately reported vulnerability in the Routing and Remote Access NDProxy component of Microsoft Windows. This security update is rated Important for all supported editions of Windows XP and Windows Server 2003. All supported editions of Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2 are not affected by the vulnerability.

Payload Ndproxy.sys

Impact Important - Elevation of Privilege



MS10-100 Vulnerability in Consent User Interface Could Allow Elevation of Privilege (2442962)

Description This security update resolves a privately reported vulnerability in the Consent User Interface (UI). The vulnerability could allow elevation of privilege if an attacker runs a specially crafted application on an affected system. An attacker must have valid logon credentials and the SeImpersonatePrivilege and be able to log on locally to exploit this vulnerability. The vulnerability could not be exploited remotely or by anonymous users.

Payload Appinfo.dll, Consent.exe

Impact Important - Elevation of Privilege



MS10-101 Vulnerability in Windows Netlogon Service Could Allow Denial of Service (2207559)

Description This security update resolves a privately reported vulnerability in the Netlogon RPC Service on affected versions of Windows Server that are configured to serve as domain controllers. The vulnerability could allow denial of service if an attacker sends a specially crafted RPC packet to the Netlogon RPC Service interface on an affected system. An attacker requires administrator privileges on a machine that is joined to the same domain as the affected domain controller in order to exploit this vulnerability.

Payload Netlogon.dll

Impact Important - Denial of Service



MS10-102 Vulnerability in Hyper-V Could Allow Denial of Service (2345316)

Description This security update resolves a privately reported vulnerability in Windows Server 2008 Hyper-V and Windows Server 2008 R2 Hyper-V. The vulnerability could allow denial of service if a specially crafted packet is sent to the VMBus by an authenticated user in one of the guest virtual machines hosted by the Hyper-V server. An attacker must have valid logon credentials and be able to send specially crafted content from a guest virtual machine to exploit this vulnerability. The vulnerability could not be exploited remotely or by anonymous users.

Payload Hvax64.exe, Hvboot.sys, Hvix64.exe, Virtualization.events.xml, Blank.vfd, Vid.dll, Vmbuspipe.dll, Vmbusvdev.dll, Vmguest.iso, Vmprox.dll, Vmwpctrl.dll, Windowsvirtualization.mof, Windowsvirtualizationuninstall.mof, Isoparser.sys, Passthruparser.sys, Storvsp.sys, Vhdparser.sys, S3cap.sys, Storflt.sys, Vmbus.sys, Vmbuscoinstaller.dll, Winhv.sys, Vmsntfy.dll, Vmswitch.sys

Impact Important - Denial of Service



MS10-103 Vulnerabilities in Microsoft Publisher Could Allow Remote Code Execution (2292970)

Description This security update resolves five privately reported vulnerabilities in Microsoft Publisher that could allow remote code execution if a user opens a specially crafted Publisher file. An attacker who successfully exploited any of these vulnerabilities could take complete control of an affected system. An attacker could then install programs; view, change, or delete data; or create new accounts with full user rights. Users whose accounts are configured to have fewer user rights on the system could be less impacted than users who operate with administrative user rights.

Payload

Impact Important - Remote Code Execution



MS10-104 Vulnerability in Microsoft SharePoint Could Allow Remote Code Execution (2455005)

Description This security update resolves a privately reported vulnerability in Microsoft SharePoint. The vulnerability could allow remote code execution in the security context of a guest user if an attacker sent a specially crafted SOAP request to the Document Conversions Launcher Service in a SharePoint server environment that is using the Document Conversions Load Balancer Service. By default, the Document Conversions Load Balancer Service and Document Conversions Launcher Service are not enabled in Microsoft Office SharePoint Server 2007.

Payload Microsoft_office_server_conversions_launcher_exe

Impact Important - Remote Code Execution



MS10-105 Vulnerabilities in Microsoft Office Graphics Filters Could Allow for Remote Code Execution (968095)

Description This security update resolves seven privately reported vulnerabilities in Microsoft Office. The vulnerabilities could allow remote code execution if a user viewed a specially crafted image file using Microsoft Office. An attacker who successfully exploited any of these vulnerabilities could gain the same user rights as the local user. Users whose accounts are configured to have fewer user rights on the system could be less impacted than users who operate with administrative user rights.

Payload Bmpimp32.flt, Cgmimp32.flt, Epsimp32.flt, Gifimp32.flt, Jpegim32.flt, Pictim32.flt, Png32.flt, Wpgimp32.flt

Impact Important - Remote Code Execution



MS10-106 Vulnerability in Microsoft Exchange Server Could Allow Denial of Service (2407132)

Description This security update resolves a privately reported vulnerability in Microsoft Exchange Server. The vulnerability could allow denial of service if an authenticated attacker sent a specially crafted network message to a computer running the Exchange service. Firewall best practices and standard default firewall configurations can help protect networks from attacks that originate outside the enterprise perimeter. Best practices recommend that systems that are connected to the Internet have a minimal number of ports exposed.

Payload A0f3ffdbf8214013896d610faef973b0_premium.css, A3a7e6484968455b9d8814ea06b7933c_basiccalendaritemschedulingtab.aspx, A700f4b987624496aa25a3a57d40a5a6_readpost.aspx, Abv_dg.dll1, Airfilter.dll, Asrautoattendant.fsm, Asrsearch.fsm, B46d176c88e34354b41acf87993248f4_smimeoptions.aspx, B4aae2bddc0f4c6aa22a9a56f44be5f9_premium.css, Bpa.common.dll, Bpa.common.resources.dll_de, Bpa.common.resources.dll_en, Bpa.common.resources.dll_es, Bpa.common.resources.dll_fr, Bpa.common.resources.dll_it, Bpa.common.resources.dll_ja, Bpa.common.resources.dll_ko, Bpa.common.resources.dll_pt, Bpa.common.resources.dll_ru, Bpa.common.resources.dll_zh_chs, Bpa.common.resources.dll_zh_cht, Bpa.configcollector.dll, Bpa.configcollector.resources.dll_de, Bpa.configcollector.resources.dll_en, Bpa.configcollector.resources.dll_es, Bpa.configcollector.resources.dll_fr, Bpa.configcollector.resources.dll_it, Bpa.configcollector.resources.dll_ja, Bpa.configcollector.resources.dll_ko, Bpa.configcollector.resources.dll_pt, Bpa.configcollector.resources.dll_ru, Bpa.configcollector.resources.dll_zh_chs, Bpa.configcollector.resources.dll_zh_cht, Bpa.networkcollector.dll, Bpa.networkcollector.resources.dll_de, Bpa.networkcollector.resources.dll_en, Bpa.networkcollector.resources.dll_es, Bpa.networkcollector.resources.dll_fr, Bpa.networkcollector.resources.dll_it, Bpa.networkcollector.resources.dll_ja, Bpa.networkcollector.resources.dll_ko, Bpa.networkcollector.resources.dll_pt, Bpa.networkcollector.resources.dll_ru, Bpa.networkcollector.resources.dll_zh_chs, Bpa.networkcollector.resources.dll_zh_cht, Bpa.userinterface.dll, Bpa.userinterface.resources.dll_de, Bpa.userinterface.resources.dll_en, Bpa.userinterface.resources.dll_es, Bpa.userinterface.resources.dll_fr, Bpa.userinterface.resources.dll_it, Bpa.userinterface.resources.dll_ja, Bpa.userinterface.resources.dll_ko, Bpa.userinterface.resources.dll_pt, Bpa.userinterface.resources.dll_ru, Bpa.userinterface.resources.dll_zh_chs, Bpa.userinterface.resources.dll_zh_cht, Bpa.wizardengine.dll, Bsres.dll, C49c97a18933407997b5aacf5aecaee0_basicautosaveinfo.aspx, C89f3f5d_8048_4b59_be9b_d4dacfca85b6_aboutoptions.aspx, Casredirect.aspx_20c2d9d3d6f84473ae3f8e7e48ddf98f, Cdoex.dll, Chksgfiles.dll, Clusmsg.dll, Common_bin_microsoft.exchange.infoworker.calendarsettings.dll, Cts_exsmime.dll, Cts_microsoft.exchange.data.common.dll, Customerscripts.ps1, D4b194385da24a0389c87e06a5502da9_edittask.aspx, Da9504990cf84f1298c414b3b309b982_premium.css, Davex.dll, Davexpc.dll, Diagnosticcmdletcontroller.dll, Dsaccess.dll, Dsaccessperf.dll, Dscperf.dll, Dsproxy.dll1, Dtmfautoattendant.fsm, Dup_cts_microsoft.exchange.data.common.dll, Dup_ext_microsoft.exchange.data.transport.dll, E1d3004d_0b1e_440f_8653_20003de2e654_editcalendaritem.aspx, E5b4897a_c5f7_46f4_ac9b_40e91c1fc8d3_logon.aspx, Edgecredentialsvc.exe, Edgetransport.exe, Edgetransport.resources.dll_de, Edgetransport.resources.dll_en, Edgetransport.resources.dll_es, Edgetransport.resources.dll_fr, Edgetransport.resources.dll_it, Edgetransport.resources.dll_ja, Edgetransport.resources.dll_ko, Edgetransport.resources.dll_pt, Edgetransport.resources.dll_ru, Edgetransport.resources.dll_zh_chs, Edgetransport.resources.dll_zh_cht, Edge_microsoft.exchange.messagesecurity.dll, Endtoend.xml, Endtoend.xml_localized_de, Endtoend.xml_localized_en, Endtoend.xml_localized_es, Endtoend.xml_localized_fr, Endtoend.xml_localized_it, Endtoend.xml_localized_ja, Endtoend.xml_localized_ko, Endtoend.xml_localized_pt, Endtoend.xml_localized_ru, Endtoend.xml_localized_zh_chs, Endtoend.xml_localized_zh_cht, Epoxy.dll, Escprint.dll, Ese.dll, Eseback2.dll, Esebcli2.dll, Eseperf.dll, Eseutil.exe, Eshmts.vbs, Exabp.dll1, Exatq.dll, Exbpa.config.xml_loc_de, Exbpa.config.xml_loc_en, Exbpa.config.xml_loc_es, Exbpa.config.xml_loc_fr, Exbpa.config.xml_loc_it, Exbpa.config.xml_loc_ja, Exbpa.config.xml_loc_ko, Exbpa.config.xml_loc_pt, Exbpa.config.xml_loc_ru, Exbpa.config.xml_loc_zh_chs, Exbpa.config.xml_loc_zh_cht, Exbpa.e12.clientaccess.xml_loc_de, Exbpa.e12.clientaccess.xml_loc_en, Exbpa.e12.clientaccess.xml_loc_es, Exbpa.e12.clientaccess.xml_loc_fr, Exbpa.e12.clientaccess.xml_loc_it, Exbpa.e12.clientaccess.xml_loc_ja, Exbpa.e12.clientaccess.xml_loc_ko, Exbpa.e12.clientaccess.xml_loc_pt, Exbpa.e12.clientaccess.xml_loc_ru, Exbpa.e12.clientaccess.xml_loc_zh_chs, Exbpa.e12.clientaccess.xml_loc_zh_cht, Exbpa.e12.global.xml_loc_de, Exbpa.e12.global.xml_loc_en, Exbpa.e12.global.xml_loc_es, Exbpa.e12.global.xml_loc_fr, Exbpa.e12.global.xml_loc_it, Exbpa.e12.global.xml_loc_ja, Exbpa.e12.global.xml_loc_ko, Exbpa.e12.global.xml_loc_pt, Exbpa.e12.global.xml_loc_ru, Exbpa.e12.global.xml_loc_zh_chs, Exbpa.e12.global.xml_loc_zh_cht, Exbpa.e12.mailbox.xml_loc_de, Exbpa.e12.mailbox.xml_loc_en, Exbpa.e12.mailbox.xml_loc_es, Exbpa.e12.mailbox.xml_loc_fr, Exbpa.e12.mailbox.xml_loc_it, Exbpa.e12.mailbox.xml_loc_ja, Exbpa.e12.mailbox.xml_loc_ko, Exbpa.e12.mailbox.xml_loc_pt, Exbpa.e12.mailbox.xml_loc_ru, Exbpa.e12.mailbox.xml_loc_zh_chs, Exbpa.e12.mailbox.xml_loc_zh_cht, Exbpa.e12.transport.xml_loc_de, Exbpa.e12.transport.xml_loc_en, Exbpa.e12.transport.xml_loc_es, Exbpa.e12.transport.xml_loc_fr, Exbpa.e12.transport.xml_loc_it, Exbpa.e12.transport.xml_loc_ja, Exbpa.e12.transport.xml_loc_ko, Exbpa.e12.transport.xml_loc_pt, Exbpa.e12.transport.xml_loc_ru, Exbpa.e12.transport.xml_loc_zh_chs, Exbpa.e12.transport.xml_loc_zh_cht, Exbpa.e12.unifiedmessaging.xml_loc_de, Exbpa.e12.unifiedmessaging.xml_loc_en, Exbpa.e12.unifiedmessaging.xml_loc_es, Exbpa.e12.unifiedmessaging.xml_loc_fr, Exbpa.e12.unifiedmessaging.xml_loc_it, Exbpa.e12.unifiedmessaging.xml_loc_ja, Exbpa.e12.unifiedmessaging.xml_loc_ko, Exbpa.e12.unifiedmessaging.xml_loc_pt, Exbpa.e12.unifiedmessaging.xml_loc_ru, Exbpa.e12.unifiedmessaging.xml_loc_zh_chs, Exbpa.e12.unifiedmessaging.xml_loc_zh_cht, Exbpa.e12.xml_loc_de, Exbpa.e12.xml_loc_en, Exbpa.e12.xml_loc_es, Exbpa.e12.xml_loc_fr, Exbpa.e12.xml_loc_it, Exbpa.e12.xml_loc_ja, Exbpa.e12.xml_loc_ko, Exbpa.e12.xml_loc_pt, Exbpa.e12.xml_loc_ru, Exbpa.e12.xml_loc_zh_chs, Exbpa.e12.xml_loc_zh_cht, Exbpa.esecollector.dll, Exbpa.exchangecollector.dll, Exbpa.exe, Exbpa.permissions.xml_loc_de, Exbpa.permissions.xml_loc_en, Exbpa.permissions.xml_loc_es, Exbpa.permissions.xml_loc_fr, Exbpa.permissions.xml_loc_it, Exbpa.permissions.xml_loc_ja, Exbpa.permissions.xml_loc_ko, Exbpa.permissions.xml_loc_pt, Exbpa.permissions.xml_loc_ru, Exbpa.permissions.xml_loc_zh_chs, Exbpa.permissions.xml_loc_zh_cht, Exbpa.prereqs.xml_loc_de, Exbpa.prereqs.xml_loc_en, Exbpa.prereqs.xml_loc_es, Exbpa.prereqs.xml_loc_fr, Exbpa.prereqs.xml_loc_it, Exbpa.prereqs.xml_loc_ja, Exbpa.prereqs.xml_loc_ko, Exbpa.prereqs.xml_loc_pt, Exbpa.prereqs.xml_loc_ru, Exbpa.prereqs.xml_loc_zh_chs, Exbpa.prereqs.xml_loc_zh_cht, Exbpa.readiness.xml_loc_de, Exbpa.readiness.xml_loc_en, Exbpa.readiness.xml_loc_es, Exbpa.readiness.xml_loc_fr, Exbpa.readiness.xml_loc_it, Exbpa.readiness.xml_loc_ja, Exbpa.readiness.xml_loc_ko, Exbpa.readiness.xml_loc_pt, Exbpa.readiness.xml_loc_ru, Exbpa.readiness.xml_loc_zh_chs, Exbpa.readiness.xml_loc_zh_cht, Exbpa.shared.dll, Exbpa.transport.xml_loc_de, Exbpa.transport.xml_loc_en, Exbpa.transport.xml_loc_es, Exbpa.transport.xml_loc_fr, Exbpa.transport.xml_loc_it, Exbpa.transport.xml_loc_ja, Exbpa.transport.xml_loc_ko, Exbpa.transport.xml_loc_pt, Exbpa.transport.xml_loc_ru, Exbpa.transport.xml_loc_zh_chs, Exbpa.transport.xml_loc_zh_cht, Exbpacmd.exe, Exbpamdb.dll, Excdo.dll, Exchange.format.ps1xml, Exchangeumtestphone.exe, Exchmem.dll, Exchsetupmsg.dll, Exdra.config.xml_loc_de, Exdra.config.xml_loc_en, Exdra.config.xml_loc_es, Exdra.config.xml_loc_fr, Exdra.config.xml_loc_it, Exdra.config.xml_loc_ja, Exdra.config.xml_loc_ko, Exdra.config.xml_loc_pt, Exdra.config.xml_loc_ru, Exdra.config.xml_loc_zh_chs, Exdra.config.xml_loc_zh_cht, Exfcache.dll, Exisrtl.dll, Exmfa.config.xml_loc_de, Exmfa.config.xml_loc_en, Exmfa.config.xml_loc_es, Exmfa.config.xml_loc_fr, Exmfa.config.xml_loc_it, Exmfa.config.xml_loc_ja, Exmfa.config.xml_loc_ko, Exmfa.config.xml_loc_pt, Exmfa.config.xml_loc_ru, Exmfa.config.xml_loc_zh_chs, Exmfa.config.xml_loc_zh_cht, Exmime.dll, Exodbesh.dll, Exodbpc.dll, Exodbprx.dll, Exoledb.dll, Exprfdll.dll, Exprox.dll, Expta.config.xml_loc_de, Expta.config.xml_loc_en, Expta.config.xml_loc_es, Expta.config.xml_loc_fr, Expta.config.xml_loc_it, Expta.config.xml_loc_ja, Expta.config.xml_loc_ko, Expta.config.xml_loc_pt, Expta.config.xml_loc_ru, Expta.config.xml_loc_zh_chs, Expta.config.xml_loc_zh_cht, Expta.e12.collection.xml_loc_de, Expta.e12.collection.xml_loc_en, Expta.e12.collection.xml_loc_es, Expta.e12.collection.xml_loc_fr, Expta.e12.collection.xml_loc_it, Expta.e12.collection.xml_loc_ja, Expta.e12.collection.xml_loc_ko, Expta.e12.collection.xml_loc_pt, Expta.e12.collection.xml_loc_ru, Expta.e12.collection.xml_loc_zh_chs, Expta.e12.collection.xml_loc_zh_cht, Exres.dll, Exrw.dll, Exschema.exe, Exsetdata.dll, Exsetup.exe, Exsetup.resources.dll_de, Exsetup.resources.dll_en, Exsetup.resources.dll_es, Exsetup.resources.dll_fr, Exsetup.resources.dll_it, Exsetup.resources.dll_ja, Exsetup.resources.dll_ko, Exsetup.resources.dll_pt, Exsetup.resources.dll_ru, Exsetup.resources.dll_zh_chs, Exsetup.resources.dll_zh_cht, Exsetupui.exe, Exsetupui.resources.dll_de, Exsetupui.resources.dll_en, Exsetupui.resources.dll_es, Exsetupui.resources.dll_fr, Exsetupui.resources.dll_it, Exsetupui.resources.dll_ja, Exsetupui.resources.dll_ko, Exsetupui.resources.dll_pt, Exsetupui.resources.dll_ru, Exsetupui.resources.dll_zh_chs, Exsetupui.resources.dll_zh_cht, Extra.config.xml_loc_de, Extra.config.xml_loc_en, Extra.config.xml_loc_es, Extra.config.xml_loc_fr, Extra.config.xml_loc_it, Extra.config.xml_loc_ja, Extra.config.xml_loc_ko, Extra.config.xml_loc_pt, Extra.config.xml_loc_ru, Extra.config.xml_loc_zh_chs, Extra.config.xml_loc_zh_cht, Extra.exe, Extrace.dll, Extraceman.config.xml_loc_de, Extraceman.config.xml_loc_en, Extraceman.config.xml_loc_es, Extraceman.config.xml_loc_fr, Extraceman.config.xml_loc_it, Extraceman.config.xml_loc_ja, Extraceman.config.xml_loc_ko, Extraceman.config.xml_loc_pt, Extraceman.config.xml_loc_ru, Extraceman.config.xml_loc_zh_chs, Extraceman.config.xml_loc_zh_cht, Extraceman.dll, Ext_microsoft.exchange.data.transport.dll, Exwriter.dll, F4ecace47fbb491a96f1f13f635d7b6a_basicmessageview.aspx, Finalizedeployment.xml, Finalizedeployment.xml_localized_de, Finalizedeployment.xml_localized_en, Finalizedeployment.xml_localized_es, Finalizedeployment.xml_localized_fr, Finalizedeployment.xml_localized_it, Finalizedeployment.xml_localized_ja, Finalizedeployment.xml_localized_ko, Finalizedeployment.xml_localized_pt, Finalizedeployment.xml_localized_ru, Finalizedeployment.xml_localized_zh_chs, Finalizedeployment.xml_localized_zh_cht, Fxst38.dll, Galgrammargenerator.exe, Importedgeconfig.ps1, Info.aspx_4f2aeda70c5f4bbb9599032b30223b58, Inproxy.dll, Interop.activeds.dll.4b7767dc_2e20_4d95_861a_4629cbc0cabc, Interop.adsiis.dll.4b7767dc_2e20_4d95_861a_4629cbc0cabc, Interop.cdoex.dll.134627a0_6a6e_4c3a_b46d_53e26a3dfcc6, Interop.certenroll.dll, Interop.migbase.dll, Interop.msado28.dll.9a26bf9b_6ac4_4e68_88f9_6af0edf4b1a3, Interop.msclusterlib.dll.4b7767dc_2e20_4d95_861a_4629cbc0cabc, Interop.stdole2.dll.4b7767dc_2e20_4d95_861a_4629cbc0cabc, Interop.wuapilib.dll, Interop.xenroll.dll0, Isinteg.exe, Jcb.dll, Languageselection.aspx_11f40297348e408db2da327cb746e0af, M.e.infoworker.assistantsclientresources.resources.dll_ar, M.e.infoworker.assistantsclientresources.resources.dll_bg, M.e.infoworker.assistantsclientresources.resources.dll_ca, M.e.infoworker.assistantsclientresources.resources.dll_cs, M.e.infoworker.assistantsclientresources.resources.dll_da, M.e.infoworker.assistantsclientresources.resources.dll_de, M.e.infoworker.assistantsclientresources.resources.dll_el, M.e.infoworker.assistantsclientresources.resources.dll_en, M.e.infoworker.assistantsclientresources.resources.dll_es, M.e.infoworker.assistantsclientresources.resources.dll_et, M.e.infoworker.assistantsclientresources.resources.dll_eu, M.e.infoworker.assistantsclientresources.resources.dll_fa, M.e.infoworker.assistantsclientresources.resources.dll_fi, M.e.infoworker.assistantsclientresources.resources.dll_fil, M.e.infoworker.assistantsclientresources.resources.dll_fr, M.e.infoworker.assistantsclientresources.resources.dll_gl, M.e.infoworker.assistantsclientresources.resources.dll_he, M.e.infoworker.assistantsclientresources.resources.dll_hi, M.e.infoworker.assistantsclientresources.resources.dll_hr, M.e.infoworker.assistantsclientresources.resources.dll_hu, M.e.infoworker.assistantsclientresources.resources.dll_id, M.e.infoworker.assistantsclientresources.resources.dll_is, M.e.infoworker.assistantsclientresources.resources.dll_it, M.e.infoworker.assistantsclientresources.resources.dll_ja, M.e.infoworker.assistantsclientresources.resources.dll_kk, M.e.infoworker.assistantsclientresources.resources.dll_ko, M.e.infoworker.assistantsclientresources.resources.dll_lt, M.e.infoworker.assistantsclientresources.resources.dll_lv, M.e.infoworker.assistantsclientresources.resources.dll_ms, M.e.infoworker.assistantsclientresources.resources.dll_nl, M.e.infoworker.assistantsclientresources.resources.dll_no, M.e.infoworker.assistantsclientresources.resources.dll_pl, M.e.infoworker.assistantsclientresources.resources.dll_pt, M.e.infoworker.assistantsclientresources.resources.dll_pt_pt, M.e.infoworker.assistantsclientresources.resources.dll_ro, M.e.infoworker.assistantsclientresources.resources.dll_ru, M.e.infoworker.assistantsclientresources.resources.dll_sk, M.e.infoworker.assistantsclientresources.resources.dll_sl, M.e.infoworker.assistantsclientresources.resources.dll_sr, M.e.infoworker.assistantsclientresources.resources.dll_sr_latn_cs, M.e.infoworker.assistantsclientresources.resources.dll_sv, M.e.infoworker.assistantsclientresources.resources.dll_th, M.e.infoworker.assistantsclientresources.resources.dll_tr, M.e.infoworker.assistantsclientresources.resources.dll_uk, M.e.infoworker.assistantsclientresources.resources.dll_ur, M.e.infoworker.assistantsclientresources.resources.dll_vi, M.e.infoworker.assistantsclientresources.resources.dll_zh_chs, M.e.infoworker.assistantsclientresources.resources.dll_zh_cht, M.e.infoworker.assistantsclientresources.resources.dll_zh_hk, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_de, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_en, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_es, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_fr, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_it, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_ja, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_ko, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_pt, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_ru, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_zh_chs, M.e.transport.agent.protocolanalysis.dbaccess.resources.dll_zh_cht, Mad.exe, Madfb.dll, Madmsg.dll, Mapiprotocolhandlerstub.dll, Mdbevent.dll, Mdbmsg.dll, Mdbperf.dll, Mdbperf.ini, Mdbperfx.dll, Mdbrest.dll, Mdbrole.dll, Mdbsz.dll, Mdbtask.dll, Microsoft.exchange.airsync.dll1, Microsoft.exchange.airsync.resources.dll_ar, Microsoft.exchange.airsync.resources.dll_bg, Microsoft.exchange.airsync.resources.dll_ca, Microsoft.exchange.airsync.resources.dll_cs, Microsoft.exchange.airsync.resources.dll_da, Microsoft.exchange.airsync.resources.dll_de, Microsoft.exchange.airsync.resources.dll_el, Microsoft.exchange.airsync.resources.dll_en, Microsoft.exchange.airsync.resources.dll_es, Microsoft.exchange.airsync.resources.dll_et, Microsoft.exchange.airsync.resources.dll_eu, Microsoft.exchange.airsync.resources.dll_fa, Microsoft.exchange.airsync.resources.dll_fi, Microsoft.exchange.airsync.resources.dll_fr, Microsoft.exchange.airsync.resources.dll_he, Microsoft.exchange.airsync.resources.dll_hi, Microsoft.exchange.airsync.resources.dll_hr, Microsoft.exchange.airsync.resources.dll_hu, Microsoft.exchange.airsync.resources.dll_id, Microsoft.exchange.airsync.resources.dll_is, Microsoft.exchange.airsync.resources.dll_it, Microsoft.exchange.airsync.resources.dll_ja, Microsoft.exchange.airsync.resources.dll_kk, Microsoft.exchange.airsync.resources.dll_ko, Microsoft.exchange.airsync.resources.dll_lt, Microsoft.exchange.airsync.resources.dll_lv, Microsoft.exchange.airsync.resources.dll_ms, Microsoft.exchange.airsync.resources.dll_nl, Microsoft.exchange.airsync.resources.dll_no, Microsoft.exchange.airsync.resources.dll_pl, Microsoft.exchange.airsync.resources.dll_pt, Microsoft.exchange.airsync.resources.dll_pt_pt, Microsoft.exchange.airsync.resources.dll_ro, Microsoft.exchange.airsync.resources.dll_ru, Microsoft.exchange.airsync.resources.dll_sk, Microsoft.exchange.airsync.resources.dll_sl, Microsoft.exchange.airsync.resources.dll_sr, Microsoft.exchange.airsync.resources.dll_sr_latn_cs, Microsoft.exchange.airsync.resources.dll_sv, Microsoft.exchange.airsync.resources.dll_th, Microsoft.exchange.airsync.resources.dll_tr, Microsoft.exchange.airsync.resources.dll_uk, Microsoft.exchange.airsync.resources.dll_ur, Microsoft.exchange.airsync.resources.dll_vi, Microsoft.exchange.airsync.resources.dll_zh_chs, Microsoft.exchange.airsync.resources.dll_zh_cht, Microsoft.exchange.airsync.resources.dll_zh_hk, Microsoft.exchange.airsync.syncstateconverter.dll, Microsoft.exchange.airsynchandler.dll, Microsoft.exchange.antispamupdatesvc.exe, Microsoft.exchange.assistants.dll, Microsoft.exchange.assistants.resources.dll_de, Microsoft.exchange.assistants.resources.dll_en, Microsoft.exchange.assistants.resources.dll_es, Microsoft.exchange.assistants.resources.dll_fr, Microsoft.exchange.assistants.resources.dll_it, Microsoft.exchange.assistants.resources.dll_ja, Microsoft.exchange.assistants.resources.dll_ko, Microsoft.exchange.assistants.resources.dll_pt, Microsoft.exchange.assistants.resources.dll_ru, Microsoft.exchange.assistants.resources.dll_zh_chs, Microsoft.exchange.assistants.resources.dll_zh_cht, Microsoft.exchange.autodiscover.dll, Microsoft.exchange.autodiscover.eventlogs.dll, Microsoft.exchange.autodiscover.resources.dll_de, Microsoft.exchange.autodiscover.resources.dll_en, Microsoft.exchange.autodiscover.resources.dll_es, Microsoft.exchange.autodiscover.resources.dll_fr, Microsoft.exchange.autodiscover.resources.dll_it, Microsoft.exchange.autodiscover.resources.dll_ja, Microsoft.exchange.autodiscover.resources.dll_ko, Microsoft.exchange.autodiscover.resources.dll_pt, Microsoft.exchange.autodiscover.resources.dll_ru, Microsoft.exchange.autodiscover.resources.dll_zh_chs, Microsoft.exchange.autodiscover.resources.dll_zh_cht, Microsoft.exchange.clients.owa.dll, Microsoft.exchange.clients.strings.dll, Microsoft.exchange.clients.strings.resources.dll_ar, Microsoft.exchange.clients.strings.resources.dll_bg, Microsoft.exchange.clients.strings.resources.dll_ca, Microsoft.exchange.clients.strings.resources.dll_cs, Microsoft.exchange.clients.strings.resources.dll_da, Microsoft.exchange.clients.strings.resources.dll_de, Microsoft.exchange.clients.strings.resources.dll_el, Microsoft.exchange.clients.strings.resources.dll_en, Microsoft.exchange.clients.strings.resources.dll_es, Microsoft.exchange.clients.strings.resources.dll_et, Microsoft.exchange.clients.strings.resources.dll_eu, Microsoft.exchange.clients.strings.resources.dll_fa, Microsoft.exchange.clients.strings.resources.dll_fi, Microsoft.exchange.clients.strings.resources.dll_fr, Microsoft.exchange.clients.strings.resources.dll_he, Microsoft.exchange.clients.strings.resources.dll_hi, Microsoft.exchange.clients.strings.resources.dll_hr, Microsoft.exchange.clients.strings.resources.dll_hu, Microsoft.exchange.clients.strings.resources.dll_id, Microsoft.exchange.clients.strings.resources.dll_is, Microsoft.exchange.clients.strings.resources.dll_it, Microsoft.exchange.clients.strings.resources.dll_ja, Microsoft.exchange.clients.strings.resources.dll_kk, Microsoft.exchange.clients.strings.resources.dll_ko, Microsoft.exchange.clients.strings.resources.dll_lt, Microsoft.exchange.clients.strings.resources.dll_lv, Microsoft.exchange.clients.strings.resources.dll_ms, Microsoft.exchange.clients.strings.resources.dll_nl, Microsoft.exchange.clients.strings.resources.dll_no, Microsoft.exchange.clients.strings.resources.dll_pl, Microsoft.exchange.clients.strings.resources.dll_pt, Microsoft.exchange.clients.strings.resources.dll_pt_pt, Microsoft.exchange.clients.strings.resources.dll_ro, Microsoft.exchange.clients.strings.resources.dll_ru, Microsoft.exchange.clients.strings.resources.dll_sk, Microsoft.exchange.clients.strings.resources.dll_sl, Microsoft.exchange.clients.strings.resources.dll_sr, Microsoft.exchange.clients.strings.resources.dll_sr_latn_cs, Microsoft.exchange.clients.strings.resources.dll_sv, Microsoft.exchange.clients.strings.resources.dll_th, Microsoft.exchange.clients.strings.resources.dll_tr, Microsoft.exchange.clients.strings.resources.dll_uk, Microsoft.exchange.clients.strings.resources.dll_ur, Microsoft.exchange.clients.strings.resources.dll_vi, Microsoft.exchange.clients.strings.resources.dll_zh_chs, Microsoft.exchange.clients.strings.resources.dll_zh_cht, Microsoft.exchange.clients.strings.resources.dll_zh_hk, Microsoft.exchange.cluster.replay.dll, Microsoft.exchange.cluster.replay.resources.dll_de, Microsoft.exchange.cluster.replay.resources.dll_en, Microsoft.exchange.cluster.replay.resources.dll_es, Microsoft.exchange.cluster.replay.resources.dll_fr, Microsoft.exchange.cluster.replay.resources.dll_it, Microsoft.exchange.cluster.replay.resources.dll_ja, Microsoft.exchange.cluster.replay.resources.dll_ko, Microsoft.exchange.cluster.replay.resources.dll_pt, Microsoft.exchange.cluster.replay.resources.dll_ru, Microsoft.exchange.cluster.replay.resources.dll_zh_chs, Microsoft.exchange.cluster.replay.resources.dll_zh_cht, Microsoft.exchange.cluster.replayservice.exe, Microsoft.exchange.cluster.replicaseeder.dll, Microsoft.exchange.cluster.replicavsswriter.dll, Microsoft.exchange.common.dll, Microsoft.exchange.common.il.dll, Microsoft.exchange.common.resources.dll_de, Microsoft.exchange.common.resources.dll_en, Microsoft.exchange.common.resources.dll_es, Microsoft.exchange.common.resources.dll_fr, Microsoft.exchange.common.resources.dll_it, Microsoft.exchange.common.resources.dll_ja, Microsoft.exchange.common.resources.dll_ko, Microsoft.exchange.common.resources.dll_pt, Microsoft.exchange.common.resources.dll_ru, Microsoft.exchange.common.resources.dll_zh_chs, Microsoft.exchange.common.resources.dll_zh_cht, Microsoft.exchange.commonmsg.dll, Microsoft.exchange.configuration.objectmodel.dll, Microsoft.exchange.configuration.objectmodel.resources.dll_de, Microsoft.exchange.configuration.objectmodel.resources.dll_en, Microsoft.exchange.configuration.objectmodel.resources.dll_es, Microsoft.exchange.configuration.objectmodel.resources.dll_fr, Microsoft.exchange.configuration.objectmodel.resources.dll_it, Microsoft.exchange.configuration.objectmodel.resources.dll_ja, Microsoft.exchange.configuration.objectmodel.resources.dll_ko, Microsoft.exchange.configuration.objectmodel.resources.dll_pt, Microsoft.exchange.configuration.objectmodel.resources.dll_ru, Microsoft.exchange.configuration.objectmodel.resources.dll_zh_chs, Microsoft.exchange.configuration.objectmodel.resources.dll_zh_cht, Microsoft.exchange.contentfilter.wrapper.exe, Microsoft.exchange.contentindexing.tasks.dll, Microsoft.exchange.contentindexing.tasks.resources.dll_de, Microsoft.exchange.contentindexing.tasks.resources.dll_en, Microsoft.exchange.contentindexing.tasks.resources.dll_es, Microsoft.exchange.contentindexing.tasks.resources.dll_fr, Microsoft.exchange.contentindexing.tasks.resources.dll_it, Microsoft.exchange.contentindexing.tasks.resources.dll_ja, Microsoft.exchange.contentindexing.tasks.resources.dll_ko, Microsoft.exchange.contentindexing.tasks.resources.dll_pt, Microsoft.exchange.contentindexing.tasks.resources.dll_ru, Microsoft.exchange.contentindexing.tasks.resources.dll_zh_chs, Microsoft.exchange.contentindexing.tasks.resources.dll_zh_cht, Microsoft.exchange.core.strings.dll, Microsoft.exchange.core.strings.resources.dll_ar, Microsoft.exchange.core.strings.resources.dll_bg, Microsoft.exchange.core.strings.resources.dll_ca, Microsoft.exchange.core.strings.resources.dll_cs, Microsoft.exchange.core.strings.resources.dll_da, Microsoft.exchange.core.strings.resources.dll_de, Microsoft.exchange.core.strings.resources.dll_el, Microsoft.exchange.core.strings.resources.dll_en, Microsoft.exchange.core.strings.resources.dll_es, Microsoft.exchange.core.strings.resources.dll_et, Microsoft.exchange.core.strings.resources.dll_eu, Microsoft.exchange.core.strings.resources.dll_fa, Microsoft.exchange.core.strings.resources.dll_fi, Microsoft.exchange.core.strings.resources.dll_fil, Microsoft.exchange.core.strings.resources.dll_fr, Microsoft.exchange.core.strings.resources.dll_gl, Microsoft.exchange.core.strings.resources.dll_he, Microsoft.exchange.core.strings.resources.dll_hi, Microsoft.exchange.core.strings.resources.dll_hr, Microsoft.exchange.core.strings.resources.dll_hu, Microsoft.exchange.core.strings.resources.dll_id, Microsoft.exchange.core.strings.resources.dll_is, Microsoft.exchange.core.strings.resources.dll_it, Microsoft.exchange.core.strings.resources.dll_ja, Microsoft.exchange.core.strings.resources.dll_kk, Microsoft.exchange.core.strings.resources.dll_ko, Microsoft.exchange.core.strings.resources.dll_lt, Microsoft.exchange.core.strings.resources.dll_lv, Microsoft.exchange.core.strings.resources.dll_ms, Microsoft.exchange.core.strings.resources.dll_nl, Microsoft.exchange.core.strings.resources.dll_no, Microsoft.exchange.core.strings.resources.dll_pl, Microsoft.exchange.core.strings.resources.dll_pt, Microsoft.exchange.core.strings.resources.dll_pt_pt, Microsoft.exchange.core.strings.resources.dll_ro, Microsoft.exchange.core.strings.resources.dll_ru, Microsoft.exchange.core.strings.resources.dll_sk, Microsoft.exchange.core.strings.resources.dll_sl, Microsoft.exchange.core.strings.resources.dll_sr, Microsoft.exchange.core.strings.resources.dll_sr_latn_cs, Microsoft.exchange.core.strings.resources.dll_sv, Microsoft.exchange.core.strings.resources.dll_th, Microsoft.exchange.core.strings.resources.dll_tr, Microsoft.exchange.core.strings.resources.dll_uk, Microsoft.exchange.core.strings.resources.dll_ur, Microsoft.exchange.core.strings.resources.dll_vi, Microsoft.exchange.core.strings.resources.dll_zh_chs, Microsoft.exchange.core.strings.resources.dll_zh_cht, Microsoft.exchange.core.strings.resources.dll_zh_hk, Microsoft.exchange.data.common.resources.dll_de, Microsoft.exchange.data.common.resources.dll_en, Microsoft.exchange.data.common.resources.dll_es, Microsoft.exchange.data.common.resources.dll_fr, Microsoft.exchange.data.common.resources.dll_it, Microsoft.exchange.data.common.resources.dll_ja, Microsoft.exchange.data.common.resources.dll_ko, Microsoft.exchange.data.common.resources.dll_pt, Microsoft.exchange.data.common.resources.dll_ru, Microsoft.exchange.data.common.resources.dll_zh_chs, Microsoft.exchange.data.common.resources.dll_zh_cht, Microsoft.exchange.data.directory.dll, Microsoft.exchange.data.directory.eventlog.dll, Microsoft.exchange.data.directory.resources.dll_de, Microsoft.exchange.data.directory.resources.dll_en, Microsoft.exchange.data.directory.resources.dll_es, Microsoft.exchange.data.directory.resources.dll_fr, Microsoft.exchange.data.directory.resources.dll_it, Microsoft.exchange.data.directory.resources.dll_ja, Microsoft.exchange.data.directory.resources.dll_ko, Microsoft.exchange.data.directory.resources.dll_pt, Microsoft.exchange.data.directory.resources.dll_ru, Microsoft.exchange.data.directory.resources.dll_zh_chs, Microsoft.exchange.data.directory.resources.dll_zh_cht, Microsoft.exchange.data.dll, Microsoft.exchange.data.mapi.dll, Microsoft.exchange.data.mapi.resources.dll_de, Microsoft.exchange.data.mapi.resources.dll_en, Microsoft.exchange.data.mapi.resources.dll_es, Microsoft.exchange.data.mapi.resources.dll_fr, Microsoft.exchange.data.mapi.resources.dll_it, Microsoft.exchange.data.mapi.resources.dll_ja, Microsoft.exchange.data.mapi.resources.dll_ko, Microsoft.exchange.data.mapi.resources.dll_pt, Microsoft.exchange.data.mapi.resources.dll_ru, Microsoft.exchange.data.mapi.resources.dll_zh_chs, Microsoft.exchange.data.mapi.resources.dll_zh_cht, Microsoft.exchange.data.resources.dll_de, Microsoft.exchange.data.resources.dll_en, Microsoft.exchange.data.resources.dll_es, Microsoft.exchange.data.resources.dll_fr, Microsoft.exchange.data.resources.dll_it, Microsoft.exchange.data.resources.dll_ja, Microsoft.exchange.data.resources.dll_ko, Microsoft.exchange.data.resources.dll_pt, Microsoft.exchange.data.resources.dll_ru, Microsoft.exchange.data.resources.dll_zh_chs, Microsoft.exchange.data.resources.dll_zh_cht, Microsoft.exchange.data.storage.clientstrings.dll, Microsoft.exchange.data.storage.clientstrings.resources.dll_ar, Microsoft.exchange.data.storage.clientstrings.resources.dll_bg, Microsoft.exchange.data.storage.clientstrings.resources.dll_ca, Microsoft.exchange.data.storage.clientstrings.resources.dll_cs, Microsoft.exchange.data.storage.clientstrings.resources.dll_da, Microsoft.exchange.data.storage.clientstrings.resources.dll_de, Microsoft.exchange.data.storage.clientstrings.resources.dll_el, Microsoft.exchange.data.storage.clientstrings.resources.dll_en, Microsoft.exchange.data.storage.clientstrings.resources.dll_es, Microsoft.exchange.data.storage.clientstrings.resources.dll_et, Microsoft.exchange.data.storage.clientstrings.resources.dll_eu, Microsoft.exchange.data.storage.clientstrings.resources.dll_fa, Microsoft.exchange.data.storage.clientstrings.resources.dll_fi, Microsoft.exchange.data.storage.clientstrings.resources.dll_fil, Microsoft.exchange.data.storage.clientstrings.resources.dll_fr, Microsoft.exchange.data.storage.clientstrings.resources.dll_gl, Microsoft.exchange.data.storage.clientstrings.resources.dll_he, Microsoft.exchange.data.storage.clientstrings.resources.dll_hi, Microsoft.exchange.data.storage.clientstrings.resources.dll_hr, Microsoft.exchange.data.storage.clientstrings.resources.dll_hu, Microsoft.exchange.data.storage.clientstrings.resources.dll_id, Microsoft.exchange.data.storage.clientstrings.resources.dll_is, Microsoft.exchange.data.storage.clientstrings.resources.dll_it, Microsoft.exchange.data.storage.clientstrings.resources.dll_ja, Microsoft.exchange.data.storage.clientstrings.resources.dll_kk, Microsoft.exchange.data.storage.clientstrings.resources.dll_ko, Microsoft.exchange.data.storage.clientstrings.resources.dll_lt, Microsoft.exchange.data.storage.clientstrings.resources.dll_lv, Microsoft.exchange.data.storage.clientstrings.resources.dll_ms, Microsoft.exchange.data.storage.clientstrings.resources.dll_nl, Microsoft.exchange.data.storage.clientstrings.resources.dll_no, Microsoft.exchange.data.storage.clientstrings.resources.dll_pl, Microsoft.exchange.data.storage.clientstrings.resources.dll_pt, Microsoft.exchange.data.storage.clientstrings.resources.dll_pt_pt, Microsoft.exchange.data.storage.clientstrings.resources.dll_ro, Microsoft.exchange.data.storage.clientstrings.resources.dll_ru, Microsoft.exchange.data.storage.clientstrings.resources.dll_sk, Microsoft.exchange.data.storage.clientstrings.resources.dll_sl, Microsoft.exchange.data.storage.clientstrings.resources.dll_sr, Microsoft.exchange.data.storage.clientstrings.resources.dll_sr_latn_cs, Microsoft.exchange.data.storage.clientstrings.resources.dll_sv, Microsoft.exchange.data.storage.clientstrings.resources.dll_th, Microsoft.exchange.data.storage.clientstrings.resources.dll_tr, Microsoft.exchange.data.storage.clientstrings.resources.dll_uk, Microsoft.exchange.data.storage.clientstrings.resources.dll_ur, Microsoft.exchange.data.storage.clientstrings.resources.dll_vi, Microsoft.exchange.data.storage.clientstrings.resources.dll_zh_chs, Microsoft.exchange.data.storage.clientstrings.resources.dll_zh_cht, Microsoft.exchange.data.storage.clientstrings.resources.dll_zh_hk, Microsoft.exchange.data.storage.dll, Microsoft.exchange.data.storage.resources.dll_de, Microsoft.exchange.data.storage.resources.dll_en, Microsoft.exchange.data.storage.resources.dll_es, Microsoft.exchange.data.storage.resources.dll_fr, Microsoft.exchange.data.storage.resources.dll_it, Microsoft.exchange.data.storage.resources.dll_ja, Microsoft.exchange.data.storage.resources.dll_ko, Microsoft.exchange.data.storage.resources.dll_pt, Microsoft.exchange.data.storage.resources.dll_ru, Microsoft.exchange.data.storage.resources.dll_zh_chs, Microsoft.exchange.data.storage.resources.dll_zh_cht, Microsoft.exchange.data.transport.resources.dll_de, Microsoft.exchange.data.transport.resources.dll_en, Microsoft.exchange.data.transport.resources.dll_es, Microsoft.exchange.data.transport.resources.dll_fr, Microsoft.exchange.data.transport.resources.dll_it, Microsoft.exchange.data.transport.resources.dll_ja, Microsoft.exchange.data.transport.resources.dll_ko, Microsoft.exchange.data.transport.resources.dll_pt, Microsoft.exchange.data.transport.resources.dll_ru, Microsoft.exchange.data.transport.resources.dll_zh_chs, Microsoft.exchange.data.transport.resources.dll_zh_cht, Microsoft.exchange.diagnostics.dll, Microsoft.exchange.diagnostics.resources.dll_de, Microsoft.exchange.diagnostics.resources.dll_en, Microsoft.exchange.diagnostics.resources.dll_es, Microsoft.exchange.diagnostics.resources.dll_fr, Microsoft.exchange.diagnostics.resources.dll_it, Microsoft.exchange.diagnostics.resources.dll_ja, Microsoft.exchange.diagnostics.resources.dll_ko, Microsoft.exchange.diagnostics.resources.dll_pt, Microsoft.exchange.diagnostics.resources.dll_ru, Microsoft.exchange.diagnostics.resources.dll_zh_chs, Microsoft.exchange.diagnostics.resources.dll_zh_cht, Microsoft.exchange.edgesync.common.dll, Microsoft.exchange.edgesync.common.resources.dll_de, Microsoft.exchange.edgesync.common.resources.dll_en, Microsoft.exchange.edgesync.common.resources.dll_es, Microsoft.exchange.edgesync.common.resources.dll_fr, Microsoft.exchange.edgesync.common.resources.dll_it, Microsoft.exchange.edgesync.common.resources.dll_ja, Microsoft.exchange.edgesync.common.resources.dll_ko, Microsoft.exchange.edgesync.common.resources.dll_pt, Microsoft.exchange.edgesync.common.resources.dll_ru, Microsoft.exchange.edgesync.common.resources.dll_zh_chs, Microsoft.exchange.edgesync.common.resources.dll_zh_cht, Microsoft.exchange.edgesyncsvc.exe, Microsoft.exchange.extensibility.internal.dll, Microsoft.exchange.extensibility.internal.resources.dll_de, Microsoft.exchange.extensibility.internal.resources.dll_en, Microsoft.exchange.extensibility.internal.resources.dll_es, Microsoft.exchange.extensibility.internal.resources.dll_fr, Microsoft.exchange.extensibility.internal.resources.dll_it, Microsoft.exchange.extensibility.internal.resources.dll_ja, Microsoft.exchange.extensibility.internal.resources.dll_ko, Microsoft.exchange.extensibility.internal.resources.dll_pt, Microsoft.exchange.extensibility.internal.resources.dll_ru, Microsoft.exchange.extensibility.internal.resources.dll_zh_chs, Microsoft.exchange.extensibility.internal.resources.dll_zh_cht, Microsoft.exchange.imap4.eventlog.dll, Microsoft.exchange.imap4.exe, Microsoft.exchange.imap4.resources.dll_de, Microsoft.exchange.imap4.resources.dll_en, Microsoft.exchange.imap4.resources.dll_es, Microsoft.exchange.imap4.resources.dll_fr, Microsoft.exchange.imap4.resources.dll_it, Microsoft.exchange.imap4.resources.dll_ja, Microsoft.exchange.imap4.resources.dll_ko, Microsoft.exchange.imap4.resources.dll_pt, Microsoft.exchange.imap4.resources.dll_ru, Microsoft.exchange.imap4.resources.dll_zh_chs, Microsoft.exchange.imap4.resources.dll_zh_cht, Microsoft.exchange.imap4service.exe, Microsoft.exchange.imap4service.resources.dll_de, Microsoft.exchange.imap4service.resources.dll_en, Microsoft.exchange.imap4service.resources.dll_es, Microsoft.exchange.imap4service.resources.dll_fr, Microsoft.exchange.imap4service.resources.dll_it, Microsoft.exchange.imap4service.resources.dll_ja, Microsoft.exchange.imap4service.resources.dll_ko, Microsoft.exchange.imap4service.resources.dll_pt, Microsoft.exchange.imap4service.resources.dll_ru, Microsoft.exchange.imap4service.resources.dll_zh_chs, Microsoft.exchange.imap4service.resources.dll_zh_cht, Microsoft.exchange.infoworker.assistantsclientresources.dll, Microsoft.exchange.infoworker.calendarsettings.resources.dll_de, Microsoft.exchange.infoworker.calendarsettings.resources.dll_en, Microsoft.exchange.infoworker.calendarsettings.resources.dll_es, Microsoft.exchange.infoworker.calendarsettings.resources.dll_fr, Microsoft.exchange.infoworker.calendarsettings.resources.dll_it, Microsoft.exchange.infoworker.calendarsettings.resources.dll_ja, Microsoft.exchange.infoworker.calendarsettings.resources.dll_ko, Microsoft.exchange.infoworker.calendarsettings.resources.dll_pt, Microsoft.exchange.infoworker.calendarsettings.resources.dll_ru, Microsoft.exchange.infoworker.calendarsettings.resources.dll_zh_chs, Microsoft.exchange.infoworker.calendarsettings.resources.dll_zh_cht, Microsoft.exchange.infoworker.common.dll, Microsoft.exchange.infoworker.common.resources.dll_de, Microsoft.exchange.infoworker.common.resources.dll_en, Microsoft.exchange.infoworker.common.resources.dll_es, Microsoft.exchange.infoworker.common.resources.dll_fr, Microsoft.exchange.infoworker.common.resources.dll_it, Microsoft.exchange.infoworker.common.resources.dll_ja, Microsoft.exchange.infoworker.common.resources.dll_ko, Microsoft.exchange.infoworker.common.resources.dll_pt, Microsoft.exchange.infoworker.common.resources.dll_ru, Microsoft.exchange.infoworker.common.resources.dll_zh_chs, Microsoft.exchange.infoworker.common.resources.dll_zh_cht, Microsoft.exchange.infoworker.eventlog.dll, Microsoft.exchange.isam.interop.dll, Microsoft.exchange.management.detailstemplates.dll, Microsoft.exchange.management.detailstemplates.resources.dll_de, Microsoft.exchange.management.detailstemplates.resources.dll_en, Microsoft.exchange.management.detailstemplates.resources.dll_es, Microsoft.exchange.management.detailstemplates.resources.dll_fr, Microsoft.exchange.management.detailstemplates.resources.dll_it, Microsoft.exchange.management.detailstemplates.resources.dll_ja, Microsoft.exchange.management.detailstemplates.resources.dll_ko, Microsoft.exchange.management.detailstemplates.resources.dll_pt, Microsoft.exchange.management.detailstemplates.resources.dll_ru, Microsoft.exchange.management.detailstemplates.resources.dll_zh_chs, Microsoft.exchange.management.detailstemplates.resources.dll_zh_cht, Microsoft.exchange.management.dll, Microsoft.exchange.management.edge.systemmanager.dll, Microsoft.exchange.management.edge.systemmanager.resources.dll_de, Microsoft.exchange.management.edge.systemmanager.resources.dll_en, Microsoft.exchange.management.edge.systemmanager.resources.dll_es, Microsoft.exchange.management.edge.systemmanager.resources.dll_fr, Microsoft.exchange.management.edge.systemmanager.resources.dll_it, Microsoft.exchange.management.edge.systemmanager.resources.dll_ja, Microsoft.exchange.management.edge.systemmanager.resources.dll_ko, Microsoft.exchange.management.edge.systemmanager.resources.dll_pt, Microsoft.exchange.management.edge.systemmanager.resources.dll_ru, Microsoft.exchange.management.edge.systemmanager.resources.dll_zh_chs, Microsoft.exchange.management.edge.systemmanager.resources.dll_zh_cht, Microsoft.exchange.management.nativeresources.dll, Microsoft.exchange.management.powershell.support.dll, Microsoft.exchange.management.publicfolders.dll, Microsoft.exchange.management.publicfolders.resources.dll_de, Microsoft.exchange.management.publicfolders.resources.dll_en, Microsoft.exchange.management.publicfolders.resources.dll_es, Microsoft.exchange.management.publicfolders.resources.dll_fr, Microsoft.exchange.management.publicfolders.resources.dll_it, Microsoft.exchange.management.publicfolders.resources.dll_ja, Microsoft.exchange.management.publicfolders.resources.dll_ko, Microsoft.exchange.management.publicfolders.resources.dll_pt, Microsoft.exchange.management.publicfolders.resources.dll_ru, Microsoft.exchange.management.publicfolders.resources.dll_zh_chs, Microsoft.exchange.management.publicfolders.resources.dll_zh_cht, Microsoft.exchange.management.resources.dll_de, Microsoft.exchange.management.resources.dll_en, Microsoft.exchange.management.resources.dll_es, Microsoft.exchange.management.resources.dll_fr, Microsoft.exchange.management.resources.dll_it, Microsoft.exchange.management.resources.dll_ja, Microsoft.exchange.management.resources.dll_ko, Microsoft.exchange.management.resources.dll_pt, Microsoft.exchange.management.resources.dll_ru, Microsoft.exchange.management.resources.dll_zh_chs, Microsoft.exchange.management.resources.dll_zh_cht, Microsoft.exchange.management.snapin.esm.dll, Microsoft.exchange.management.snapin.esm.resources.dll_de, Microsoft.exchange.management.snapin.esm.resources.dll_en, Microsoft.exchange.management.snapin.esm.resources.dll_es, Microsoft.exchange.management.snapin.esm.resources.dll_fr, Microsoft.exchange.management.snapin.esm.resources.dll_it, Microsoft.exchange.management.snapin.esm.resources.dll_ja, Microsoft.exchange.management.snapin.esm.resources.dll_ko, Microsoft.exchange.management.snapin.esm.resources.dll_pt, Microsoft.exchange.management.snapin.esm.resources.dll_ru, Microsoft.exchange.management.snapin.esm.resources.dll_zh_chs, Microsoft.exchange.management.snapin.esm.resources.dll_zh_cht, Microsoft.exchange.management.systemmanager.dll, Microsoft.exchange.management.systemmanager.resources.dll_de, Microsoft.exchange.management.systemmanager.resources.dll_en, Microsoft.exchange.management.systemmanager.resources.dll_es, Microsoft.exchange.management.systemmanager.resources.dll_fr, Microsoft.exchange.management.systemmanager.resources.dll_it, Microsoft.exchange.management.systemmanager.resources.dll_ja, Microsoft.exchange.management.systemmanager.resources.dll_ko, Microsoft.exchange.management.systemmanager.resources.dll_pt, Microsoft.exchange.management.systemmanager.resources.dll_ru, Microsoft.exchange.management.systemmanager.resources.dll_zh_chs, Microsoft.exchange.management.systemmanager.resources.dll_zh_cht, Microsoft.exchange.messagesecurity.resources.dll_de, Microsoft.exchange.messagesecurity.resources.dll_en, Microsoft.exchange.messagesecurity.resources.dll_es, Microsoft.exchange.messagesecurity.resources.dll_fr, Microsoft.exchange.messagesecurity.resources.dll_it, Microsoft.exchange.messagesecurity.resources.dll_ja, Microsoft.exchange.messagesecurity.resources.dll_ko, Microsoft.exchange.messagesecurity.resources.dll_pt, Microsoft.exchange.messagesecurity.resources.dll_ru, Microsoft.exchange.messagesecurity.resources.dll_zh_chs, Microsoft.exchange.messagesecurity.resources.dll_zh_cht, Microsoft.exchange.messagingpolicies.edgeagents.dll, Microsoft.exchange.messagingpolicies.journalagent.dll, Microsoft.exchange.messagingpolicies.rmsvcagent.dll, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_de, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_en, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_es, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_fr, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_it, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_ja, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_ko, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_pt, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_ru, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_zh_chs, Microsoft.exchange.messagingpolicies.rmsvcagent.resources.dll_zh_cht, Microsoft.exchange.messagingpolicies.rules.dll, Microsoft.exchange.messagingpolicies.rules.resources.dll_de, Microsoft.exchange.messagingpolicies.rules.resources.dll_en, Microsoft.exchange.messagingpolicies.rules.resources.dll_es, Microsoft.exchange.messagingpolicies.rules.resources.dll_fr, Microsoft.exchange.messagingpolicies.rules.resources.dll_it, Microsoft.exchange.messagingpolicies.rules.resources.dll_ja, Microsoft.exchange.messagingpolicies.rules.resources.dll_ko, Microsoft.exchange.messagingpolicies.rules.resources.dll_pt, Microsoft.exchange.messagingpolicies.rules.resources.dll_ru, Microsoft.exchange.messagingpolicies.rules.resources.dll_zh_chs, Microsoft.exchange.messagingpolicies.rules.resources.dll_zh_cht, Microsoft.exchange.messagingpolicies.transportruleagent.dll, Microsoft.exchange.monitoring.exe, Microsoft.exchange.monitoring.resources.dll_de, Microsoft.exchange.monitoring.resources.dll_en, Microsoft.exchange.monitoring.resources.dll_es, Microsoft.exchange.monitoring.resources.dll_fr, Microsoft.exchange.monitoring.resources.dll_it, Microsoft.exchange.monitoring.resources.dll_ja, Microsoft.exchange.monitoring.resources.dll_ko, Microsoft.exchange.monitoring.resources.dll_pt, Microsoft.exchange.monitoring.resources.dll_ru, Microsoft.exchange.monitoring.resources.dll_zh_chs, Microsoft.exchange.monitoring.resources.dll_zh_cht, Microsoft.exchange.net.dll, Microsoft.exchange.net.resources.dll_de, Microsoft.exchange.net.resources.dll_en, Microsoft.exchange.net.resources.dll_es, Microsoft.exchange.net.resources.dll_fr, Microsoft.exchange.net.resources.dll_it, Microsoft.exchange.net.resources.dll_ja, Microsoft.exchange.net.resources.dll_ko, Microsoft.exchange.net.resources.dll_pt, Microsoft.exchange.net.resources.dll_ru, Microsoft.exchange.net.resources.dll_zh_chs, Microsoft.exchange.net.resources.dll_zh_cht, Microsoft.exchange.pop3.exe, Microsoft.exchange.pop3.resources.dll_de, Microsoft.exchange.pop3.resources.dll_en, Microsoft.exchange.pop3.resources.dll_es, Microsoft.exchange.pop3.resources.dll_fr, Microsoft.exchange.pop3.resources.dll_it, Microsoft.exchange.pop3.resources.dll_ja, Microsoft.exchange.pop3.resources.dll_ko, Microsoft.exchange.pop3.resources.dll_pt, Microsoft.exchange.pop3.resources.dll_ru, Microsoft.exchange.pop3.resources.dll_zh_chs, Microsoft.exchange.pop3.resources.dll_zh_cht, Microsoft.exchange.pop3service.exe, Microsoft.exchange.pop3service.resources.dll_de, Microsoft.exchange.pop3service.resources.dll_en, Microsoft.exchange.pop3service.resources.dll_es, Microsoft.exchange.pop3service.resources.dll_fr, Microsoft.exchange.pop3service.resources.dll_it, Microsoft.exchange.pop3service.resources.dll_ja, Microsoft.exchange.pop3service.resources.dll_ko, Microsoft.exchange.pop3service.resources.dll_pt, Microsoft.exchange.pop3service.resources.dll_ru, Microsoft.exchange.pop3service.resources.dll_zh_chs, Microsoft.exchange.pop3service.resources.dll_zh_cht, Microsoft.exchange.popimap.core.dll, Microsoft.exchange.popimap.core.resources.dll_de, Microsoft.exchange.popimap.core.resources.dll_en, Microsoft.exchange.popimap.core.resources.dll_es, Microsoft.exchange.popimap.core.resources.dll_fr, Microsoft.exchange.popimap.core.resources.dll_it, Microsoft.exchange.popimap.core.resources.dll_ja, Microsoft.exchange.popimap.core.resources.dll_ko, Microsoft.exchange.popimap.core.resources.dll_pt, Microsoft.exchange.popimap.core.resources.dll_ru, Microsoft.exchange.popimap.core.resources.dll_zh_chs, Microsoft.exchange.popimap.core.resources.dll_zh_cht, Microsoft.exchange.powershell.configuration.dll, Microsoft.exchange.powershell.configuration.resources.dll_de, Microsoft.exchange.powershell.configuration.resources.dll_en, Microsoft.exchange.powershell.configuration.resources.dll_es, Microsoft.exchange.powershell.configuration.resources.dll_fr, Microsoft.exchange.powershell.configuration.resources.dll_it, Microsoft.exchange.powershell.configuration.resources.dll_ja, Microsoft.exchange.powershell.configuration.resources.dll_ko, Microsoft.exchange.powershell.configuration.resources.dll_pt, Microsoft.exchange.powershell.configuration.resources.dll_ru, Microsoft.exchange.powershell.configuration.resources.dll_zh_chs, Microsoft.exchange.powershell.configuration.resources.dll_zh_cht, Microsoft.exchange.routingtablelogparser.dll, Microsoft.exchange.routingtablelogparser.resources.dll_de, Microsoft.exchange.routingtablelogparser.resources.dll_en, Microsoft.exchange.routingtablelogparser.resources.dll_es, Microsoft.exchange.routingtablelogparser.resources.dll_fr, Microsoft.exchange.routingtablelogparser.resources.dll_it, Microsoft.exchange.routingtablelogparser.resources.dll_ja, Microsoft.exchange.routingtablelogparser.resources.dll_ko, Microsoft.exchange.routingtablelogparser.resources.dll_pt, Microsoft.exchange.routingtablelogparser.resources.dll_ru, Microsoft.exchange.routingtablelogparser.resources.dll_zh_chs, Microsoft.exchange.routingtablelogparser.resources.dll_zh_cht, Microsoft.exchange.rpc.dll, Microsoft.exchange.rpcoverhttpautoconfig.dll, Microsoft.exchange.search.exsearch.exe, Microsoft.exchange.servicehost.exe, Microsoft.exchange.services.dll, Microsoft.exchange.services.messages.xsd, Microsoft.exchange.services.resources.dll_de, Microsoft.exchange.services.resources.dll_en, Microsoft.exchange.services.resources.dll_es, Microsoft.exchange.services.resources.dll_fr, Microsoft.exchange.services.resources.dll_it, Microsoft.exchange.services.resources.dll_ja, Microsoft.exchange.services.resources.dll_ko, Microsoft.exchange.services.resources.dll_pt, Microsoft.exchange.services.resources.dll_ru, Microsoft.exchange.services.resources.dll_zh_chs, Microsoft.exchange.services.resources.dll_zh_cht, Microsoft.exchange.setup.common.dll, Microsoft.exchange.setup.common.resources.dll_de, Microsoft.exchange.setup.common.resources.dll_en, Microsoft.exchange.setup.common.resources.dll_es, Microsoft.exchange.setup.common.resources.dll_fr, Microsoft.exchange.setup.common.resources.dll_it, Microsoft.exchange.setup.common.resources.dll_ja, Microsoft.exchange.setup.common.resources.dll_ko, Microsoft.exchange.setup.common.resources.dll_pt, Microsoft.exchange.setup.common.resources.dll_ru, Microsoft.exchange.setup.common.resources.dll_zh_chs, Microsoft.exchange.setup.common.resources.dll_zh_cht, Microsoft.exchange.storedriver.dll, Microsoft.exchange.storedriver.resources.dll_de, Microsoft.exchange.storedriver.resources.dll_en, Microsoft.exchange.storedriver.resources.dll_es, Microsoft.exchange.storedriver.resources.dll_fr, Microsoft.exchange.storedriver.resources.dll_it, Microsoft.exchange.storedriver.resources.dll_ja, Microsoft.exchange.storedriver.resources.dll_ko, Microsoft.exchange.storedriver.resources.dll_pt, Microsoft.exchange.storedriver.resources.dll_ru, Microsoft.exchange.storedriver.resources.dll_zh_chs, Microsoft.exchange.storedriver.resources.dll_zh_cht, Microsoft.exchange.systemattendantmailboxservicelet.dll, Microsoft.exchange.transport.agent.antispam.common.dll, Microsoft.exchange.transport.agent.antispam.common.resources.dll_de, Microsoft.exchange.transport.agent.antispam.common.resources.dll_en, Microsoft.exchange.transport.agent.antispam.common.resources.dll_es, Microsoft.exchange.transport.agent.antispam.common.resources.dll_fr, Microsoft.exchange.transport.agent.antispam.common.resources.dll_it, Microsoft.exchange.transport.agent.antispam.common.resources.dll_ja, Microsoft.exchange.transport.agent.antispam.common.resources.dll_ko, Microsoft.exchange.transport.agent.antispam.common.resources.dll_pt, Microsoft.exchange.transport.agent.antispam.common.resources.dll_ru, Microsoft.exchange.transport.agent.antispam.common.resources.dll_zh_chs, Microsoft.exchange.transport.agent.antispam.common.resources.dll_zh_cht, Microsoft.exchange.transport.agent.contentfilter.cominterop.dll, Microsoft.exchange.transport.agent.hygiene.dll, Microsoft.exchange.transport.agent.hygiene.resources.dll_de, Microsoft.exchange.transport.agent.hygiene.resources.dll_en, Microsoft.exchange.transport.agent.hygiene.resources.dll_es, Microsoft.exchange.transport.agent.hygiene.resources.dll_fr, Microsoft.exchange.transport.agent.hygiene.resources.dll_it, Microsoft.exchange.transport.agent.hygiene.resources.dll_ja, Microsoft.exchange.transport.agent.hygiene.resources.dll_ko, Microsoft.exchange.transport.agent.hygiene.resources.dll_pt, Microsoft.exchange.transport.agent.hygiene.resources.dll_ru, Microsoft.exchange.transport.agent.hygiene.resources.dll_zh_chs, Microsoft.exchange.transport.agent.hygiene.resources.dll_zh_cht, Microsoft.exchange.transport.agent.protocolanalysis.dbaccess.dll, Microsoft.exchange.transport.agent.senderid.core.dll0, Microsoft.exchange.transport.dll, Microsoft.exchange.transport.logging.search.dll, Microsoft.exchange.transport.resources.dll_de, Microsoft.exchange.transport.resources.dll_en, Microsoft.exchange.transport.resources.dll_es, Microsoft.exchange.transport.resources.dll_fr, Microsoft.exchange.transport.resources.dll_it, Microsoft.exchange.transport.resources.dll_ja, Microsoft.exchange.transport.resources.dll_ko, Microsoft.exchange.transport.resources.dll_pt, Microsoft.exchange.transport.resources.dll_ru, Microsoft.exchange.transport.resources.dll_zh_chs, Microsoft.exchange.transport.resources.dll_zh_cht, Microsoft.exchange.ue.cmdletref.xml_en, Microsoft.exchange.um.clientaccess.dll, Microsoft.exchange.um.clientstrings.dll, Microsoft.exchange.um.clientstrings.resources.dll_ar, Microsoft.exchange.um.clientstrings.resources.dll_bg, Microsoft.exchange.um.clientstrings.resources.dll_ca, Microsoft.exchange.um.clientstrings.resources.dll_cs, Microsoft.exchange.um.clientstrings.resources.dll_da, Microsoft.exchange.um.clientstrings.resources.dll_de, Microsoft.exchange.um.clientstrings.resources.dll_el, Microsoft.exchange.um.clientstrings.resources.dll_en, Microsoft.exchange.um.clientstrings.resources.dll_es, Microsoft.exchange.um.clientstrings.resources.dll_et, Microsoft.exchange.um.clientstrings.resources.dll_eu, Microsoft.exchange.um.clientstrings.resources.dll_fa, Microsoft.exchange.um.clientstrings.resources.dll_fi, Microsoft.exchange.um.clientstrings.resources.dll_fil, Microsoft.exchange.um.clientstrings.resources.dll_fr, Microsoft.exchange.um.clientstrings.resources.dll_gl, Microsoft.exchange.um.clientstrings.resources.dll_he, Microsoft.exchange.um.clientstrings.resources.dll_hi, Microsoft.exchange.um.clientstrings.resources.dll_hr, Microsoft.exchange.um.clientstrings.resources.dll_hu, Microsoft.exchange.um.clientstrings.resources.dll_id, Microsoft.exchange.um.clientstrings.resources.dll_is, Microsoft.exchange.um.clientstrings.resources.dll_it, Microsoft.exchange.um.clientstrings.resources.dll_ja, Microsoft.exchange.um.clientstrings.resources.dll_kk, Microsoft.exchange.um.clientstrings.resources.dll_ko, Microsoft.exchange.um.clientstrings.resources.dll_lt, Microsoft.exchange.um.clientstrings.resources.dll_lv, Microsoft.exchange.um.clientstrings.resources.dll_ms, Microsoft.exchange.um.clientstrings.resources.dll_nl, Microsoft.exchange.um.clientstrings.resources.dll_no, Microsoft.exchange.um.clientstrings.resources.dll_pl, Microsoft.exchange.um.clientstrings.resources.dll_pt, Microsoft.exchange.um.clientstrings.resources.dll_pt_pt, Microsoft.exchange.um.clientstrings.resources.dll_ro, Microsoft.exchange.um.clientstrings.resources.dll_ru, Microsoft.exchange.um.clientstrings.resources.dll_sk, Microsoft.exchange.um.clientstrings.resources.dll_sl, Microsoft.exchange.um.clientstrings.resources.dll_sr, Microsoft.exchange.um.clientstrings.resources.dll_sr_latn_cs, Microsoft.exchange.um.clientstrings.resources.dll_sv, Microsoft.exchange.um.clientstrings.resources.dll_th, Microsoft.exchange.um.clientstrings.resources.dll_tr, Microsoft.exchange.um.clientstrings.resources.dll_uk, Microsoft.exchange.um.clientstrings.resources.dll_ur, Microsoft.exchange.um.clientstrings.resources.dll_vi, Microsoft.exchange.um.clientstrings.resources.dll_zh_chs, Microsoft.exchange.um.clientstrings.resources.dll_zh_cht, Microsoft.exchange.um.clientstrings.resources.dll_zh_hk, Microsoft.exchange.um.lad.dll, Microsoft.exchange.um.management.dll, Microsoft.exchange.um.umcommon.dll, Microsoft.exchange.um.umcommon.resources.dll_de, Microsoft.exchange.um.umcommon.resources.dll_en, Microsoft.exchange.um.umcommon.resources.dll_es, Microsoft.exchange.um.umcommon.resources.dll_fr, Microsoft.exchange.um.umcommon.resources.dll_it, Microsoft.exchange.um.umcommon.resources.dll_ja, Microsoft.exchange.um.umcommon.resources.dll_ko, Microsoft.exchange.um.umcommon.resources.dll_pt, Microsoft.exchange.um.umcommon.resources.dll_ru, Microsoft.exchange.um.umcommon.resources.dll_zh_chs, Microsoft.exchange.um.umcommon.resources.dll_zh_cht, Microsoft.exchange.um.umcore.dll, Microsoft.exchange.um.umdiagnostics.common.dll, Migbase.dll, Migmsg.dll, Msexchangeadtopologyservice.exe, Msexchangefds.exe, Msexchangefds.resources.dll_de, Msexchangefds.resources.dll_en, Msexchangefds.resources.dll_es, Msexchangefds.resources.dll_fr, Msexchangefds.resources.dll_it, Msexchangefds.resources.dll_ja, Msexchangefds.resources.dll_ko, Msexchangefds.resources.dll_pt, Msexchangefds.resources.dll_ru, Msexchangefds.resources.dll_zh_chs, Msexchangefds.resources.dll_zh_cht, Msexchangemailboxassistants.exe, Msexchangemailboxassistants.resources.dll_de, Msexchangemailboxassistants.resources.dll_en, Msexchangemailboxassistants.resources.dll_es, Msexchangemailboxassistants.resources.dll_fr, Msexchangemailboxassistants.resources.dll_it, Msexchangemailboxassistants.resources.dll_ja, Msexchangemailboxassistants.resources.dll_ko, Msexchangemailboxassistants.resources.dll_pt, Msexchangemailboxassistants.resources.dll_ru, Msexchangemailboxassistants.resources.dll_zh_chs, Msexchangemailboxassistants.resources.dll_zh_cht, Msexchangemailsubmission.exe, Msexchangemailsubmission.resources.dll_de, Msexchangemailsubmission.resources.dll_en, Msexchangemailsubmission.resources.dll_es, Msexchangemailsubmission.resources.dll_fr, Msexchangemailsubmission.resources.dll_it, Msexchangemailsubmission.resources.dll_ja, Msexchangemailsubmission.resources.dll_ko, Msexchangemailsubmission.resources.dll_pt, Msexchangemailsubmission.resources.dll_ru, Msexchangemailsubmission.resources.dll_zh_chs, Msexchangemailsubmission.resources.dll_zh_cht, Msexchangetransport.exe, Msexchangetransport.resources.dll_de, Msexchangetransport.resources.dll_en, Msexchangetransport.resources.dll_es, Msexchangetransport.resources.dll_fr, Msexchangetransport.resources.dll_it, Msexchangetransport.resources.dll_ja, Msexchangetransport.resources.dll_ko, Msexchangetransport.resources.dll_pt, Msexchangetransport.resources.dll_ru, Msexchangetransport.resources.dll_zh_chs, Msexchangetransport.resources.dll_zh_cht, Msexchangetransportlogsearch.exe, Msexchangetransportlogsearch.resources.dll_de, Msexchangetransportlogsearch.resources.dll_en, Msexchangetransportlogsearch.resources.dll_es, Msexchangetransportlogsearch.resources.dll_fr, Msexchangetransportlogsearch.resources.dll_it, Msexchangetransportlogsearch.resources.dll_ja, Msexchangetransportlogsearch.resources.dll_ko, Msexchangetransportlogsearch.resources.dll_pt, Msexchangetransportlogsearch.resources.dll_ru, Msexchangetransportlogsearch.resources.dll_zh_chs, Msexchangetransportlogsearch.resources.dll_zh_cht, Ntspxgen.dll, Oabgen.dll1, Oleconverter.exe, Patchconfigfile.ps1, Perfnm.h, Perf_common_extrace.dll, Perf_exchmem.dll, Perf_mdbsz.dll, Policytest.exe, Quietexe.exe, Redir.aspx_cbea8a45f0504ccf824b4071a37c48a7, Rightsmanagementwrapper.dll, Routingview.exe, Routingview.resources.dll_de, Routingview.resources.dll_en, Routingview.resources.dll_es, Routingview.resources.dll_fr, Routingview.resources.dll_it, Routingview.resources.dll_ja, Routingview.resources.dll_ko, Routingview.resources.dll_pt, Routingview.resources.dll_ru, Routingview.resources.dll_zh_chs, Routingview.resources.dll_zh_cht, Scheduleeditor.dll, Setup.com, Setup.exe, Store.exe, Store_mapi_net_bin_exrpc32.dll, Store_mapi_net_bin_microsoft.exchange.storeprovider.dll, Store_mapi_net_bin_perf_x86_exrpcperf.dll, Tokenm.dll, Transcodingservice.exe, Umservice.exe, Umworkerprocess.exe, Urlblockederror.aspx_ca89a4d206714a91b403f914255bfddf, Watson.config.xml_loc_de, Watson.config.xml_loc_en, Watson.config.xml_loc_es, Watson.config.xml_loc_fr, Watson.config.xml_loc_it, Watson.config.xml_loc_ja, Watson.config.xml_loc_ko, Watson.config.xml_loc_pt, Watson.config.xml_loc_ru, Watson.config.xml_loc_zh_chs, Watson.config.xml_loc_zh_cht, Webreadyview.aspx_cb4126eb8f434b77ae5f88a38466bb3c, Webreadyviewbody.aspx_e7d7f60b1f8a46269be847fb2be2e1a5, Webreadyviewhead.aspx_e7dc21fb1e79413992f0483c95b0ca88, Webreadyviewindicator.aspx_5b300882959240e48e64cbaf5474e2d9, Wizcmd.exe, X400prox.dll, _0ed3012e12254386acc8735a0c77af98_editpost.aspx, _104a1f9a60784ce0a0506d3f6f2b236c_basicreadaddistributionlist.aspx, _148008180d3547fb9b07ac932954f157_basiceditrecurrence.aspx, _1793b57bd2de4b348706728dbcf5f5f5_basiceditcalendaritem.aspx, _191ff3d32cfb4be28ee2ca51608a1653_basicreadcontact.aspx, _1a9ddc511727486f9271c9c088650729_premium.css, _224b37c7_10d0_4e8c_a975_03d8981549ea_oofoptions.aspx, _277b58a1dd6845f9a55f026aeb91a508_owasmime.msi, _2b75a1e26ae9473bad222e1f888608ca_basiccontactviewwebpart.aspx, _2ef154d0_9983_45a2_b56c_16250d81695c_editmeetingresponse.aspx, _324acf154d9f4171a573b2c9a5a0ee27_uglobal.js, _36c6cc14_0b4e_444d_ad0a_7f348df5168c_startpage.aspx, _394c6064317743ad978b048d80ea984c_basiceditmeetingresponse.aspx, _3e05116cdfbd492ab6903753a6bbca8c_basiccalendarview.aspx, _3e7a8406e4af498abdd02dda52964e3e_basicattachmentmanager.aspx, _3ef154d0_9983_45a2_b56c_16250d81695a_editmessage.aspx, _4d2f61fb55324ad09a1e603d20b525ac_basiceditmessage.aspx, _4e0070cc5e624b2789136b4c3e1b93b2_basicreadmessage.aspx, _4fb9e0b132ad4929936271a21b6044cc_basiccontactview.aspx, _549e906e_1e7d_4905_97b0_8ebd37fa17b4_readvoicemailmessage.aspx, _566f1ba6672649a7923368fa6508cd76_basicoptions.aspx, _568ef072688e488894597b30f68356b7_basicmessageviewwebpart.aspx, _5abf6b8dbd2249d5a1e2eccb954d3a03_basicreadadorgperson.aspx, _5b5c34f5b92b4be6a8bbc4fe06959ed5_basicaddressbook.aspx, _5b6d3a3e_ff0d_496e_9994_f48bae69cc9e_preload.htm, _5c9515a64bff4d3898729605bad3d7cc_basiceditcontact.aspx, _5e72e445ece54720964d0013966c7aff_basicfoldermanagement.aspx, _660a65d7f3af4456be126a0618272f55_basicreaddistributionlist.aspx, _6d86783a4a0b49bd8eb468c32eb699f6_editcontact.aspx, _70c30e639d524ca790d5646b4875f784_logoff.aspx, _77afe2e5_6a42_45ce_8111_d7418f0cb006_messagingoptions.aspx, _7b8c0af4_6526_4302_b371_46c0de6e3b0c_foptrsc.js, _7b9793f8_5acd_4ef8_83a6_46e957c909a0_error.aspx, _83bf26ba_b30a_4c5d_9e7f_3848601e94f6_readmessage.aspx, _895fdd51894d4d78bda7d95dafd60f84_meetingpage.aspx, _89a76b8cd6204e0ea1371de7af9d9b35_readtask.aspx, _94588dd7d7bf40329b03a3969b8b59d1_owaauth.dll, _988fb1bc68c944789bb1c7a80cf15531_basicmoveitem.aspx, _9edd990e38b2444c9cb1d7a4eda17c23_basicmeetingpage.aspx, _d823633d_ccc6_4836_822e_187284e0ec2c_clientstrings.aspx, _ef5524b3_cb3c_408f_a631_15adfe0fb325_resourceoptions.aspx, _f096d59651e24880bb516d5697431652_editdistributionlist.aspx

Impact Moderate - Denial of Service



*All results are based on an AOK Application Compatibility Lab’s test portfolio of over 1,000 applications.

Monday 13 December 2010

Application Packaging Update: Some new tools

As part of the application compatibility story, there is a chapter on quality for every customer.

As I have mentioned previously, getting applications to run on a target platform (think Windows 7) is only part of the migration effort for our clients. We need to get their application portfolio working and then keep it working for the next 36 to 48 months...

So, we need to keep our application packaging tool-kit up to date.

Here are some links to some updated tools that are now available; 

MSI Explorer/Analyzer
This is a new MSI editor written by an MSI employee. A handy addition to your MSI Installer package editing tool-kit.

WIX (The open source MSI Editor)
This XML based open source MSI installer editor has been revved-up to version 3.5. I recommend this version/update.

ResEdit
This is an invaluable tool if you are creating security manifests and need to determine if a particular EXE (or PE file) already contains an embedded manifest. This tool allows you to view and extract the internal manifest from the target file.

And, if you are using local workstation security and need to lock-down some local directories for your applicaitons I suggest the following interesting articles;

Darwin Sanoy explains the new LockPermissionsEx Table in Win7

Installshields (Flexera for you folks who are new to the game) on same subject can be found here: http://blogs.flexerasoftware.com/installtalk/2010/11/setting-permissions-in-windows-installer-msilockpermissionsex-and-islockpermissions.html