Skip to main content

Microsoft Certification exam codes

Microsoft Certification exam codes

70-236 : TS: Exchange Server 2007, Configuring 
70-238 : PRO: Deploying Messaging Solutions with Microsoft Exchange Server 2007 
70-270 : Installing, Configuring, and Administering Microsoft Windows XP Professional 
70-271 : Supporting Users and Troubleshooting a MS Windows XP OS 
70-272 : Supporting Users and Troubleshooting Desktop Applications 
70-282 : Designing, Deploying, and Managing a Network Solution for a Small- and Medium-Sized Business 
70-284 : Installing, Configuring, and Administering Microsoft Exchange 2003 Server 
70-290 : Managing and Maintaining a Microsoft Windows Server 2003 Environment 
70-291 : Managing and Maintaining a Windows Server 2003 Network Infrastructure 
70-293 : Planning, Implementing, and Maintaining a Microsoft Windows Server 2003 Network Infrastructure 
70-294 : Planning, Implementing, and Maintaining a Microsoft Windows Server 2003 AD Infrastructure 
70-297 : Designing a Microsoft Windows Server 2003 Active Directory and Network Infrastructure 
70-298 : Designing Security for a MS Windows Server 2003 Network 
70-299 : Implementing and Administering Security in a Microsoft Windows Server 2003 Network 
70-350 : Implementing Microsoft Internet Security and Acceleration (ISA) Server 2004 
70-401 : Microsoft System Center Configuration Manager 2007,Configuring 
70-431 : Microsoft SQL Server 2005 Implementation & Maintenance 
70-432 : TS: Microsoft SQL Server 2008, Implementation and Maintenance 
70-433 : TS: Microsoft SQL Server 2008, Database Development 
70-444 : Optimizing and Maintaining a Database Administration Solution by Using SQL Server 2005 
70-448 : TS: Microsoft SQL Server 2008, Business Intelligence Development and Maintenance 
70-450 : PRO: Designing, Optimizing and Maintaining a Database Administrative Solution Using Microsoft SQL Server 2008 
70-453 : Upgrade: Transition Your MCITP SQL Server 2005 DBA to MCITP SQL Server 2008 
70-505 : TS: Microsoft .NET Framework 3.5, Windows Forms Application Development 
70-511 : Windows Applications Development with Microsoft .NET Framework 4 
70-528 : MS.NET Framework 2.0-Web-based Client Development 
70-536 : Microsoft .NET Framework, Application Development Foundation 
70-553 : UPGRADE:MCSD MS.NET Skills to MCPD Entpse App Dvlpr Pt1 
70-561 : TS: Microsoft .NET Framework 3.5, ADO.NET Application Development 
70-562 : TS: Microsoft .NET Framework 3.5, ASP.NET Application Development 
70-564 : PRO: Designing and Developing ASP.NET Applications using Microsoft .NET Framework 3.5 
70-576 : PRO: Designing and Developing Microsoft SharePoint 2010 Applications 
70-620 : TS: Microsoft Windows Vista, Configuring 
70-624 : TS: Deploying and Maintaining Windows Vista Client and 2007 Microsoft Office System Desktops 
70-630 : TS: Microsoft Office SharePoint Server 2007, Configuring 
70-631 : TS: Microsoft Windows SharePoint Services 3.0, Configuring 
70-632 : TS: Microsoft Office Project 2007, Managing Projects 
70-640 : TS: Windows Server 2008 Active Directory, Configuring 
70-642 : TS: Windows Server 2008 Network Infrastructure, Configuring 
70-643 : TS: Windows Server 2008 Applications Infrastructure, Configuring 
70-646 : PRO: Windows Server 2008, Server Administrator 
70-647 : PRO: Windows Server 2008, Enterprise Administrator 
70-648 : TS: Upgrading Your MCSA on Windows Server 2003 to Windows Server 2008, Technology Specialist 
70-649 : TS: Upgrading Your MCSE on Windows Server 2003 to Windows Server 2008, Technology Specialist 
70-652 : TS: Windows Server Virtualization, Configuring 
70-653 : TS: Windows Small Business Server 2008, Configuring 
70-660 : TS: Windows Internals 
70-662 : Microsoft Exchange Server 2010, Configuring 
70-663 : Pro: Designing and Deploying Messaging Solutions with Microsoft Exchange Server 2010 
70-667 : TS: Microsoft SharePoint 2010, Configuring 
70-680 : TS: Windows 7, Configuring 
70-681 : TS: Windows 7 and Office 2010, Deploying 
70-682 : Upgrading to Windows 7 MCITP Enterprise Desktop Support Technician 
70-683 : TS: Windows 7, Preinstalling for OEMs 
70-685 : Pro: Windows 7, Enterprise Desktop Support Technician 
70-686 : Windows 7, Enterprise Desktop Administrator 
83-640 : TS: Windows Server 2008 Active Directory, Configuring Exam 
MB2-631 : CRM 4.0 Customization and Configuration 
MB2-632 : Applications in Microsoft Dynamics CRM 4.0 
MB2-633 : CRM 4.0 Installation and Deployment 
MB5-858 : Managing Microsoft Dynamics Implementations 

Reference
Microsoft certification

Popular posts from this blog

strScan and Find a first occurrence of a string in a string using x++

strScan (Find a first occurrence of a string in a string) info("int strScan(str _text1,str _text2,int _position,int _number)"); info("Searches a text string for the occurrence of another string."); info("_text1 - The text string to search."); info("_text2 - The string to find."); info("_position - The position at which the search should start."); info("_number - The number of characters that should be searched."); info(int2str(strScan("ABCDEFGHIJ","DE",1,10)));

Get record from table on the basis of field id in Microsoft dynamics axapta x++

How to Get record from table on the basis of field id in dynamics axapta x++. just try following code in job to understand better way. emplTable emplTable; FieldId fieldId; ; fieldId = fieldNum(emplTable, Emplid); select emplTable; info(emplTable.(fieldId)); select emplTable where emplTable.(fieldId) == '1101'; info(emplTable.Name);

Code to get customer Primary Address in Ax 2012

Below Code to get customer Primary Address in Ax 2012. CustTable custTable_P; DirPartyTable dirPartyTable_P; DirPartyLocation dirPartyLocation_P; DirPartyLocationRole dirPartyLocationRole_P; LogisticsLocation logisticsLocation_P; LogisticsLocationRole logisticsLocationRole_P; LogisticsPostalAddress logisticsPostalAddress_P; LogisticsPostalAddress primaryAddress_P; while select custTable_P where custTable_P.AccountNum =='ED_01029' join dirPartyTable_P where dirPartyTable_P.RecId == custTable_P.Party join dirPartyLocation_P where dirPartyLocation_P.Party == custTable_P.Party && dirPartyLocation_P.IsPrimary==NoYes::Yes join dirPartyLocationRole_P where dirPartyLocationRole_P.PartyLocation == dirPartyLocation_P.RecId join logisticsLocationRole_P where logisticsLocationRole_P.RecId == dirPartyLocationRole