Official 2014 Latest Free Microsoft 70-341 Dump Download(41-50)!

QUESTION 41
You have an Exchange Server 2013 organization that contains two servers named EX1 and EX2. EX1 and EX2 are the members of a database availability group (DAG) named DAG1. EX1 and EX2 each contain a copy of a mailbox database named DB1. DB1 is configured to retain deleted items for 120 days. At the end of each month, the mailbox databases on EX1 are backed up to tape. The monthly backups are retained for two years. A user named User1 has a mailbox in DB1. User1 discovers that a mailbox folder that contained important email messages was deleted more than six months ago. You need to recover the deleted mailbox folder without affecting any other users who have mailboxes in DB1. Which three actions should you perform? (Each correct answer presents part of the solution.
Choose three.)

A.    Run the New-MaiboxRestoreRequestcmdlet.
B.    Run the New-MailboxDatabasecmdlet and specify the Recovery parameter.
C.    Restore DB1 from the tape backup to an alternate location.
D.    Restore DB1 from the tape backup to the database’s original location.
E.    Run the New-Mailbox cmdlet and specify the Recovery parameter.

Answer: ABC
Explanation:
Recovery Database
A recovery database is a special kind of mailbox database that allows you to mount a restored mailbox database and extract data from the restored database as part of a recovery operation. You can use the New-MailboxRestoreRequest cmdlet to extract data from a recovery database. After extraction, the data can be exported to a folder or merged into an existing mailbox. Recovery databases enable you to recover data from a backup or copy of a database without disturbing user access to current data.
A
New-MaiboxRestoreRequestcmdlet
Use the New-MailboxRestoreRequest cmdlet to restore a soft-deleted or disconnected mailbox. This cmdlet starts the process of moving content from the soft-deleted mailbox, disabled mailbox, or any mailbox in a recovery database into a connected primary or archive mailbox. For information about the parameter sets in the Syntax section below, see Syntax.
EXAMPLE 1
To create a restore request, you must provide the DisplayName, LegacyDN, or MailboxGUID for the softdeleted or disabled mailbox. This example uses the Get-MailboxStatistics cmdlet to return the DisplayName, LegacyDN, MailboxGUID, and DisconnectReason for all mailboxes on mailbox database MBD01 that have a disconnect reason of SoftDeleted or Disabled. Get-MailboxStatistics -Database MBD01 | Where { $_.DisconnectReason -eq “SoftDeleted” -or $_. DisconnectReason -eq “Disabled” } | Format-List LegacyDN, DisplayName, MailboxGUID, DisconnectReason
This example restores the source mailbox with the MailboxGUID 1d20855f-fd54-4681-98e6- e249f7326ddd on mailbox database MBD01 to the target mailbox with the alias Ayla. New-MailboxRestoreRequest -SourceDatabase “MBD01” -SourceStoreMailbox 1d20855f-fd54-4681- 98e6-e249f7326ddd -TargetMailbox Ayla
B
Use the New-MailboxDatabase cmdlet to create a mailbox database object in the database container in Active Directory.
For information about the parameter sets in the Syntax section below, see Syntax.
EXAMPLE 1
This example creates the mailbox database MailboxDatabase01.
This example also specifies where to create the .edb database file, which is different than the default location.
New-MailboxDatabase -Name “MailboxDatabase01” -EdbFilePath
D:\DatabaseFiles\MailboxDatabase01.edb
The Recovery parameter specifies that the new database is designated as a recovery database.
NOT D
Need to recover data from a backup or copy of a database without disturbing user access to current data.
Therefore restore to an alternate location.
NOT E
No recovery parameter exists for the New-Mailbox cmdlet.

QUESTION 42
You have an Exchange Server 2010 organization. All users connect to their mailbox by using Microsoft Outlook 2013 and Outlook Web App. All client connections to Exchange Server use the name mail.contoso.com. You deploy Exchange Server 2013 to the organization, you move all of the users to Exchange Server 2013, and then you decommission all of the Exchange Server 2010 servers. The users report that when they open Outlook 2013, they receive a certificate warning message. The users do not receive a certificate error message or a certificate warning message when they open Outlook Web App. You need to prevent the certificate warning message from occurring when the users open Outlook 2013. Which cmdlet should you run?

A.    Set-ClientAccessServer
B.    New-ExchangeCertficiate
C.    New-ClientAccessArray
D.    Import-ExchangeCertificate

Answer: A

QUESTION 43
Your network contains an Active Directory forest. The forest contains two sites named Montreal and New York. You have an Exchange Server 2013 organization that contains a Mailbox server and a Client Access server in each site. The users in the New York site report that the offline address book (OAB) is not updated after an extended WAN outage between the sites. The Montreal site contains the OAB generation server. You need to ensure that the New York site users download the OAB from a server in the New York site. Which two cmdlets should you run? (Each correct answer presents part of the solution. Choose two.)

A.    Set-Mailbox
B.    New-OfflineAddressBook
C.    New-Mailbox
D.    New-OabVirtualDirectory
E.    Set-OfflineAddressBook

Answer: AC
Explanation:
A
Set-Mailbox
Use the Set-Mailbox cmdlet to modify the settings of an existing mailbox. You can use this cmdlet for one mailbox at a time.
To perform bulk management, you can pipeline the output of various Get- cmdlets (for example, the Get-Mailbox or Get-User cmdlets) and configure several mailboxes in a single-line command. You can also use the Set-Mailbox cmdlet in scripts.
For information about the parameter sets in the Syntax section below, see Syntax.
Step2: Enable OABGen capability
Set-Mailbox -Arbitration oabs -OABGen $true
http://technet.microsoft.com/en-us/library/aa996345(v=exchg.150).aspx
Provision Recipients for Offline Address Book Downloads
To specify which OAB is downloaded by linking the OAB directly to a recipient’s mailbox, use the following syntax.
Set-Mailbox -Identity <MailboxIDParameter> -OfflineAddressBook <OfflineAddressBookIdParameter>
Better for this question (but the option is not covered:)
Use the Shell to specify the OAB that multiple recipients will download
This example specifies that all user mailboxes in the United States for Contoso will download the OAB Contoso United States.
Get-User -ResultSize Unlimited -Filter { Company -eq “Contoso” -and RecipientType -eq “UserMailbox” } | Where { $_.CountryOrRegion -eq “United States”} | Set-Mailbox -OfflineAddressBook “Contoso United States”
NOT B
New-OfflineAddressBook
Use the New-OfflineAddressBook cmdlet to create an offline address book (OAB).
EXAMPLE 1
This example uses two commands to create the OAB named OAB_AgencyB that includes all address lists where AgencyB is part of the name. With the settings shown, an OAB is generated by myserver.contoso.com on Mondays and Wednesdays from 01:00 (1:00 A.M.) to 02:00 (2:00 A.M.). The command also creates the default OAB for the organization.
$a = Get-AddressList | Where {$_.Name -Like “*AgencyB*”
New-OfflineAddressBook -Name “OAB_AgencyB” -Server myserver.contoso.com -AddressLists $a -Schedule “Mon.01:00-Mon.02:00, Wed.01:00-Wed.02:00”
C
New-Mailbox
Use the New-Mailbox cmdlet to create a user in Active Directory and mailbox-enable this new user.
Step1: Create a new arbitration mailbox
New-Mailbox -Arbitration -Name “OAB New York” -Database DB2NewYork -UserPrincipalName [email protected] –DisplayName “OAB Mailbox for New York”
EXAMPLE 1
This example creates a user Chris Ashton in Active Directory and creates a mailbox for the user. The mailbox is located on Mailbox Database 1. The password must be reset at the next logon. To set the initial value of the password, this example creates a variable ($password), prompts you to enter a password, and assigns that password to the variable as a SecureString object.
$password = Read-Host “Enter password” -AsSecureString
New-Mailbox -UserPrincipalName [email protected] -Alias chris -Database “Mailbox Database 1” -Name ChrisAshton -OrganizationalUnit Users -Password $password -FirstName Chris -LastName Ashton -DisplayName “Chris Ashton” -ResetPasswordOnNextLogon $true
NOT D
New-OabVirtualDirectory
Use the New-OABVirtualDirectory cmdlet to configure a server as a web distribution point for an offline address book (OAB).
EXAMPLE 1
This example creates an OAB virtual directory on CASServer01 and configures the distribution service to poll the generation server every two hours.
New-OABVirtualDirectory -Server CASServer01 -PollInterval 120
NOT E
Set-OfflineAddressBook
Use the Set-OfflineAddressBook cmdlet to modify offline address book (OAB) settings.
EXAMPLE 1
This example changes the name of the OAB.
Set-OfflineAddressBook -Identity “\Default Offline Address Book” -Name “My Offline Address Book”

QUESTION 44
Your network contains an Active Directory forest. The forest contains one domain. The domain contains two sites and three domain controllers. The sites and domain controllers are configured as shown in the following table.

clip_image002
The sites connect to each other by using a WAN link. You have an Exchange Server 2013 organization that contains two servers in the Main Office site. In Branch1, you plan to deploy one server to the Exchange Server 2013 organization. You need to ensure that all of the Exchange Server services in Branch1 are available if the WAN link fails after the planned deployment. What should you do?

A.    Create a site link bridge, and then configure Branch1 as a hub site.
B.    Replace the domain controller in Branch1 with an RODC that runs Windows Server 2012.
C.    Replace the domain controller in Branch1 with a writable domain controller that runs a Server Core
installation of Windows Server 2008.
D.    Create an additional site link, and then configure Branch1 as a hub site.

Answer: C
Explanation:
Site link bridge
A site link bridge connects two or more site links and enables transitivity between site links. Each site link in a bridge must have a site in common with another site link in the bridge. The Knowledge Consistency Checker (KCC) uses the information on each site link to compute the cost of replication between sites in one site link and sites in the other site links of the bridge. Without the presence of a common site between site links, the KCC also cannot establish direct connections between domain controllers in the sites that are connected by the same site link bridge. By default, all site links are transitive.

clip_image002[4]
This figure illustrates an organization’s hub-and-spoke network topology, consisting of two hub sites (A and B) and six satellite sites (C through H). The site links between all sites are named A-B, A-C, A- D, A-E, B-F, B-G, and B-H.

clip_image001
Hub Site
A hub site is based on having large numbers of outgoing links NOT A B D
If you want to install or operate any Exchange 2013 server in a site, you must have a writable global catalog in the same AD site.
Be aware that no versions of Exchange Server will make use of RODC or the Global Catalog server on a RODC although Exchange will work in the presence of RODC as long as writable versions of domain controllers and GCs are available
C
If you want to install or operate any Exchange 2013 server in a site, you must have a writable global catalog in the same AD site.
The Global Catalog is the central repository of information about objects in a tree or forest but with a limited number of each objects attribute.
The domain controller that holds a copy of the Global Catalog is the Global Catalog Server. The global catalog server makes it possible to search the entire AD DS forest without referrals to the domain controller that stores the target of the search. The global catalog server is also required for searching and processing domain logons in forests where universal groups is available Be aware that no versions of Exchange Server will make use of RODC or the Global Catalog server on a RODC although Exchange will work in the presence of RODC as long as writable versions of domain controllers and GCs are available

QUESTION 45
Your company has a main office site and a disaster recovery site. The two sites connect to each other by using redundant WAN links. Each site connects directly to the Internet. Each site contains one Exchange Server 2013 server that is accessible from the Internet. The company uses the ©ontoso.com email address suffix. The DNS records that can be resolved from the Internet are configured as shown in the following table.

clip_image001[4]
When the Internet link at the main office site fails, the company cannot receive incoming email from the Internet. You need to ensure that incoming email from the Internet is delivered to Server1. Incoming email from the Internet must be delivered to Server2 if Server1 is unavailable. What should you create?

A.    A CNAME record for the name mail.contoso.com that resolves to server2.contoso.com
B.    An MX record that has a cost of 20 and resolves to mail.contoso.com
C.    An MX record that has a cost of 20 and resolves to server2.contoso.com
D.    An A record for the name mail.contoso.com that resolves to 131.107.101.1

Answer: C
Explanation:
CNAME record
A CNAME record is an abbreviation for Canonical Name record and is a type of resource record in the Domain Name System (DNS) that specifies that the domain name is an alias of another, canonical domain name. Here “canonical” usually means: a more generally accepted or standard name.
For example, if there is a DNS zone as follows:
NAME TYPE VALUE
————————————————–
bar.example.com. CNAME foo.example.com.
foo.example.com. A 192.0.2.23
MX record
A mail exchanger record (MX record) is a type of resource record in the Domain Name System that specifies a mail server responsible for accepting email messages on behalf of a recipient’s domain, and a preference value used to prioritize mail delivery if multiple mail servers are available. The set of MX records of a domain name specifies how email should be routed with the Simple Mail Transfer Protocol (SMTP).
A Record
An A (address) record is a DNS record that can be used to point your domain name and host names to a static IP address.
NOT A B D
Need to increase the cost associated with the MX record of Server2 so that Server1 is preferred over Server2 but Server2 will be used if Server1 is not available.
C
Need to increase the cost associated with the MX record of Server2 so that Server1 is preferred over Server2 but Server2 will be used if Server1 is not available.

QUESTION 46
Drag and Drop Question
You have an Exchange Server 2013 organization named adatum.com. The organization contains a server named Server1. Server1 is a member of a Database Availability Group (DAG) named DAG1. You have a user named Sales1 in the Sales department. You need to prevent Sales1 from submitting more than 75 email messages per minute to the Exchange Server organization by using Microsoft Outlook. Which three commands should you run in sequence? (To answer, move the appropriate three commands from the list of commands to the answer area and arrange them in the correct order.)

clip_image002[6]
Answer:

clip_image002[8]

QUESTION 47
Drag and Drop Question
You have an Exchange Server organization that contains three servers. The servers are configured as shown in the following table.

clip_image002[10]
You need to create a new database availability group (DAG) that contains EX1 and EX2. Which three actions should you perform in sequence? (To answer, move the appropriate three actions from the list of actions to the answer area and arrange them in the correct order.)

clip_image002[12]
Answer:

clip_image002[14]
Explanation:
Box 1: Add the Exchange Trusted Subsystem universal security group to the local Administrators group on Server1.
Box 2: Create a new DAG and specify Server1 as the file share witness.
Box 3: Add EX1 and EX2 to the DAG.
Note:
* A database availability group (DAG) is a set of up to 16 Microsoft Exchange Server 2013 Mailbox servers that provide automatic database-level recovery from a database, server, or network failure. When a Mailbox server is added to a DAG, it works with the other servers in the DAG to provide automatic, database-level recovery from database, server, and network failures.
* You can specify a name for the DAG and the witness server that you want to use, and leave the Witness directory field empty. In this scenario, the task will create the default witness directory on the specified witness server.
* If the witness server you specify isn’t an Exchange 2013 or Exchange 2010 server, you must add the Exchange Trusted Subsystem universal security group to the local Administrators group on the witness server. These security permissions are necessary to ensure that Exchange can create a directory and share on the witness server as needed.
Reference: Exchange 2013, Create a Database Availability Group

QUESTION 48
You have an Exchange Server 2013 organization that contains two Mailbox servers named MBX1 and MBX2. You create a database availability group (DAG) named DAG1. DAG1 is configured as shown in the exhibit. You need to ensure that replication only occurs over the replication network. Which two commands should you run? (Each correct answer presents part of the solution. Choose two.)

clip_image002[16]

A.    Set-DatabaseAvailabilityGroup Dag1 -ManualDagNetworkConfiguration $true
B.    Set-DatabaseAvailabilityGroup Dag1 -ManualDagNetworkConfiguration $false
C.    Set-DatabaseAvailabilityGroupNetwork MapiDagNetwork -ReplicationEnabled $false
D.    Set-DatabaseAvailabilityGroupNetwork ReplicationDagNetwork01 -ReplicationEnabled $true

Answer: BC
Explanation:
You need to ensure that replication only occurs over the replication network.
If you would like to ‘force’ replication to only go over the Replication Network, then you definately would like to disable replication on the MAPI Network, but IF the NIC on the Replication Network goes down, it will start replicating over the MAPI NIC. There is no way of blocking that behaviour and isn’t what you’d want anyway since DAGs actually cope quite fine with just 1 NIC.
DAG Networks
Each database availability group (DAG) network has several properties that you can configure, including the name of the DAG network, a description field for the DAG network, a list of subnets that are used by the DAG network, and whether the DAG network is enabled for replication. You can configure a DAG network only when automatic network configuration has been disabled for a DAG.
There are specific networking requirements that must be met for each DAG and for each DAG member. Each
DAG must have a single MAPI network, which is used by a DAG member to communicate with other servers (for example, other Exchange 2013 servers or directory servers), and zero or more Replication networks, which are networks dedicated to log shipping and seeding. Although a single network is supported, we recommend that each DAG have at least two networks: a single MAPI network and a single Replication network. This provides redundancy for the network and the network path, and enables the system to distinguish between a server failure and a network failure. Using a single network adapter prevents the system from distinguishing between these two types of failures.

clip_image002[18]
MAPI
MAPI stands for Messaging Application Programming Interface, and it gives programs the ability to send email using your email program to do the actual sending.
Set-DatabaseAvailabilityGroup
The Set-DatabaseAvailabilityGroup cmdlet enables you to manage DAG properties that can’t be managed from the Exchange Administration Center (EAC), such as configuring network discovery, selecting the TCP port used for replication, and enabling datacenter activation coordination (DAC) mode.
Set-DatabaseAvailabilityGroupNetwork
Use the Set-DatabaseAvailabilityGroupNetwork cmdlet to configure a network for a database availability group (DAG).
You can configure a variety of network properties, such as the name for the network, a description of the network, a list of one or more subnets that comprise the network, and whether the network is enabled for replication (log shipping and seeding).
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they’re not included in the permissions assigned to you.
C
Ensures that you can configure a DAG network by turning the automatic configuration off.
The ManualDagNetworkConfiguration parameter
Specifies whether DAG networks should be automatically configured. If this parameter is set to False, DAG networks are automatically configured. If this parameter is set to True, you must manually configure DAG networks.
You can configure a DAG network only when automatic network configuration has been disabled for a DAG.
Need to manually configure the DAG NETWORK
NOT D
Need to turn the automatic DAG configuration off.
The ManualDagNetworkConfiguration parameter Specifies whether DAG networks should be automatically configured. If this parameter is set to False, DAG networks are automatically configured. If this parameter is set to True, you must manually configure DAG networks. You can configure a DAG network only when automatic network configuration has been disabled for a DAG.
NOT A
Does not disable the replication over the MAPI network as required in this scenario B
Disables replication over the MAPI network as required in this scenario

QUESTION 49
You have an Exchange Server 2013 organization that contains a server named Server1. Server1 has an IP address of 10.1.100.16 and is configured to use a default gateway of 10.1.100.1. You deploy a hardware load balancer that is configured to use the IP addresses of 192.168.101.31 and 10.1.100.31.
A user named User1 has a client computer that has an IP address of 102.168.101.201. User1 reports that he cannot view his mailbox by using Outlook Web App. When you review the IIS logs on Server1, you discover the following information:

clip_image002[20]
You need to ensure that User1 can access his mailbox successfully from Outlook Web App. What are two possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose two.)

A.    Configure the hardware load balancer to use the same certificate as the certificate used on Server1.
B.    Configure the hardware load balancer to use source NAT (SNAT).
C.    Configure the computer of User1 to ignore response headers.
D.    Modify the default gateway of Server1.

Answer: BD
Explanation:
Source NAT
When using source NAT, the client IP address is not passed to the load balanced server. The insertion of the Client IP address into the header allows the servers to see the IP that made the connection They are then able to return the requested information correctly B
Configuring the hardware load balancer to use source NAT (SNAT) will resolve the problem.
D
Changing the default gateway of Server1 to that of the hardware load balancer will ensure that the connection to Server1 will be returned via the network load balancer and out to User1 NOT A
Not a certificate problem
NOT C
NOT a http response header issue
HTTP response header
The information, in the form of a text record, that a Web server sends back to a clients browser in response to receiving an HTTP request.
The response header contains the date, size and type of file that the server is sending back to the client and also data about the server itself.
The header is attached to the files being sent back to the client.

QUESTION 50
You have an Exchange Server 2013 organization that is configured to filter email messages for spam and malware. You need to modify the schedule for applying updates to the anti-spam and the antimalware definitions. Which command should you run?

A.    Update-MalwareFilteringServer.ps1
B.    Set-MalwareFilteringServer
C.    Set-SenderFilterConfig
D.    Update-SafeList

Answer: B
Explanation:
NOT A
Microsoft Exchange Server 2013 administrators can manually download anti-malware engine and definition (signature) updates.
Update-MalwareFilteringServer.ps1 used in manual updates not schedule updates.
NOT C
Not used for spam and malware updates.
Use the Set-SenderFilterConfig cmdlet to modify the Sender Filter agent configuration.
EXAMPLE 1
This example makes the following modifications to the Sender Filter agent configuration:
It enables blocking of blank senders.
It blocks messages from lucernepublishing.com and all subdomains. It adds [email protected] and [email protected] to the blocked senders list without affecting any existing entries.
Set-SenderFilterConfig -BlankSenderBlockingEnabled $true -BlockedDomainsAndSubdomains
lucernepublishing.com -BlockedSenders @{Add=”[email protected]”,”[email protected]”} NOT D
Use the Update-SafeList cmdlet to update the safelist aggregation data in Active Directory. Safelist aggregation data is used in the built-in anti-spam filtering in Microsoft Exchange. EdgeSync replicates
safelist aggregation data to Edge Transport servers in the perimeter network.
EXAMPLE 1
This example updates Safe Senders List data for the single user [email protected].
Update-Safelist [email protected]
B
Set-MalwareFilteringServer
Use the Set-MalwareFilteringServer cmdlet to configure the Malware agent settings in the Transport service on a Mailbox server.
Example 1
This example sets the following Malware agent settings on the Mailbox server named Mailbox01:
Sets the update frequency interval to 2 hours
Sets the time to wait between resubmit attempts to 10 minutes Set-MalwareFilteringServer Mailbox01 -UpdateFrequency 120 -DeferWaitTime 10

If you want to pass the Microsoft 70-341 Exam sucessfully, recommend to read latest Microsoft 70-341 Dump full version.

Official 2014 Latest Free Microsoft 70-341 Dump Download(31-40)!

QUESTION 31
You are implementing a solution to meet the security requirements for Outlook authentication. You purchase a new certificate that has a subject name of mail.proseware.com and SANs of autodiscover.proseware.com and oa.proseware.com. You create a host (A) record for oa.proseware.com in the public DNS zone. Remote users report that they fail to connect to their mailbox by using Outlook. You need to ensure that the remote users can connect to their mailbox from Outlook. The solution must meet the security requirements. Which two commands should you run? (Each correct answer presents part of the solution. Choose two.)
A.    Set-OutlookProvider EXPR -CertPrincipalName msstd:mail.proseware.com
B.    Set-OutlookAnywhere -ExternalHostName oa.proseware.com – ExternalClientAuthenticationMethod
Basic -ExternalClientsRequireSsI $true -InternalHostName mail.proseware.com – InternalClientAuthentication
Method NTLM -InternalClientsRequireSsI Strue
C.    Set-OutlookProvider EXPR -CertPrincipalName msstd:oa.proseware.com
D.    Set-OutlookAnywhere -ExternalHostName mail.proseware.com- ExternalClientAuthenticationMethod
Basic -ExternalClientsRequireSsI $true -InternalHostName oa.proseware.com -InternalClientAuthentication
Method NTLM -InternalClientsRequireSsI $true

Answer: AB
Explanation:
A
Subject name of the certificate is mail.proseware.com not oa.prosware.com
NOT C
Subject name of the certificate is mail.proseware.com not oa.prosware.com
B
ExternalHostName oa.proseware.com is correct as oa.proseware.com is a host (A) record in the public DNS zone.
NOT D
ExternalHostName mail.proseware.com is NOT correct as oa.proseware.com is a host (A) record in the public DNS zone.

QUESTION 32
You need to recommend which actions must be performed to meet the technical requirements for the new Contoso users. Which three actions should you recommend? (Each correct answer presents part of the solution. Choose three.)

A.    Configure UPN suffix routing.
B.    Configure Contoso to trust Proseware.
C.    Configure Proseware to trust Contoso.
D.    Run the New-Mailbox cmdlet and specify the -AccountDisabled parameter.
E.    Run the New-Mailbox cmdlet and specify the -LinkedMasterAccount parameter.
F.    Create a linked role group.

Answer: ACE
Explanation:
A
All new user accounts in contoso.com must have a user principal name (UPN) that ends with proseware.com
Configure UPN suffix routing
Name suffix routing is a mechanism that you can use to manage how authentication requests are routed across Active Directory forests that are joined by forest trusts.
NOT B
AS PER ABOVE DIAGRAM PROSEWARE NEEDS TO TRUST CONTOSO
C
AS PER ABOVE DIAGRAM PROSEWARE NEEDS TO TRUST CONTOSO
E
All new users hired at Contoso must have a user account in contoso.com and an Exchange Server mailbox in proseware.com
Use the New-Mailbox cmdlet to create a user in Active Directory and mailbox-enable this new user.
The LinkedMasterAccount parameter specifies the master account in the forest where the user account resides. The master account is the account to link the mailbox to.
The master account grants access to the mailbox. This parameter is required only if you’re creating a linked mailbox.
A linked mailbox is a mailbox that’s associated with an external account. The resource forest scenario is an example of a situation in which you would want to associate a mailbox with an external account. In a resource forest scenario, user objects in the Exchange forest have mailboxes, but the user objects are disabled for logon. You must associate these mailbox objects in the Exchange forest with enabled user objects in the external accounts forest.
NOT D
Need to use linked mailboxes.
Use the New-Mailbox cmdlet to create a user in Active Directory and mailbox-enable this new user.
The AccountDisabled parameter specifies whether to create the mailbox in a disabled state. You don’t have to specify a value with this parameter.
NOT F
Need to use linked mailboxes.
You can use a linked management role group to enable members of a universal security group (USG) in a foreign Active Directory forest to manage a Microsoft Exchange Server 2013 organization in a resource Active Directory forest.
By associating a USG in a foreign forest with a linked role group, the members of that USG are granted the permissions provided by the management roles assigned to the linked role group.
For more information about linked role groups, see Understanding Management Role Groups.

QUESTION 33
Hotspot Question
You need to recommend a solution to resolve the Autodiscover and the free/busy information issues. Which command should you include in the recommendation? (To answer, configure the appropriate options in the answer area.)

clip_image002

clip_image002[4]
Answer:

clip_image002[8]

QUESTION 34
You need to recommend a solution to resolve the issue of the human resources department manager. What should you include in the recommendation?

A.    Run Set-ADServerSettings -ConfigurationDomainController dcl.proseware.com on all of the Exchange
servers in the London site.
B.    Move the PDC emulator to the New York office.
C.    Modify the replication interval on the Active Directory site link.
D.    Schedule a task that runs the Update-AddressList command to run once per hour.

Answer: C
Explanation:
NOT A
Set-ADServerSettings
Use the Set-AdServerSettings cmdlet to manage the Active Directory Domain Services (AD DS) environment in the current Exchange Management Shell session.
The Set-AdServerSettings cmdlet replaces the AdminSessionADSettings session variable that was used in Microsoft Exchange Server 2007.
The ConfigurationDomainController parameter specifies the fully qualified domain name (FQDN) of the configuration domain controller to be used for reading Exchange configuration information in this session.
NOT B
Issue is related to AD Site replication
NOT D
Will not improve the site replication
You can use the Shell to update a global address list (GAL). A GAL is a directory that contains entries for every group, user, and contact within an organization’s implementation of Microsoft Exchange.
C
You must set the site link replication interval property to indicate how frequently you want replication to occur during the times when the schedule allows replication. For example, if the schedule allows replication between 02:00 hours and 04:00 hours, and the replication interval is set for 30 minutes, replication can occur up to four times during the scheduled time. The default replication interval is 180 minutes, or 3 hours.
Consider the following criteria to determine how often replication occurs within the schedule window:
A small interval decreases latency but increases the amount of WAN traffic.
To keep domain directory partitions up to date, low latency is preferred.

QUESTION 35
You need to recommend a solution to resolve the issue for the London office users. What should you do?

A.    Modify the properties of the OAB virtual directory.
B.    Create a new address book policy.
C.    Modify the properties of the default offline address book (OAB).
D.    Create a new arbitration mailbox.

Answer: D
Explanation:
NOT A
Will not resolve the issue
Need to create a new arbirtration mailbox
NOT B
Will not resolve the issue
Need to create a new arbirtration mailbox
NOT C
Will not resolve the issue
Need to create a new arbirtration mailbox
D
Exchange Server 2013 CAS role proxies the OAB download request to a “nearest” mailbox server hosting an active Organization Mailbox.
Both London and New York host a mailbox server and a client access server.
Therefore you need to create a new active Organization Mailbox
Administrators can create additional Organization Mailboxes for fault tolerance or for serving users in a geographically disbursed Exchange deployment.
The Organization Mailbox
The Organization Mailbox is a new type of arbitration mailbox introduced with Exchange 2013.
The arbitration mailbox with persisted capability OrganizationCapabilityOABGen is referred to as Organization Mailbox. It plays a crucial role in OAB generation, storage and distribution.
Each Exchange Server 2013 mailbox role hosting an Organization Mailbox will generate all Exchange 2013 OAB’s defined in the environment. The OAB is generated in the Organization Mailbox first and later copied to the disk.

QUESTION 36
Drag and Drop Question
You have an Exchange Server 2013 organization that contains several custom RBAC management roles.
You need to identify which RBAC scopes must be used to meet the following requirements:
– Manage only the mailboxes of the users in the sales department.
– Manage the properties of all the mailbox databases.
Which RBAC scopes should you identify? (To answer, drag the appropriate RBAC scopes to the correct requirements. Each RBAC scope may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

clip_image002[10]
Answer:

clip_image002[12]
Explanation:
http://technet.microsoft.com/en-us/library/dd335146(v=exchg.150).aspx
Management role scopes enable you to define the specific scope of impact or influence of a management role when a management role assignment is created. When you apply a scope, the role assignee assigned to the role can only modify the objects contained within that scope.
A role assignee can be a management role group, management role, management role assignment policy, user, or universal security group (USG)
Every management role, whether it’s a built-in role or a custom role, has management scopes.
Management scopes can be either of the following:
Regular
A regular scope isn’t exclusive. It determines where, in Active Directory, objects can be viewed or modified by users assigned the management role. In general, a management role indicates what you can create or modify, and a management role scope indicates where you can create or modify. Regular scopes can be either implicit or explicit scopes, both of which are discussed later in this topic.
Exclusive
An exclusive scope behaves almost the same as a regular scope. The key difference is that it enables you to deny users access to objects contained within the exclusive scope if those users aren’t assigned a role associated with the exclusive scope. All exclusive scopes are explicit scopes, which are discussed later in this topic.
Scopes can be inherited from the management role, specified as a predefined relative scope on a management role assignment, or created using custom filters and added to a management role assignment.
Scopes inherited from management roles are called implicit scopes while predefined and custom scopes are called explicit scopes.
Implicit scopes are the default scopes that apply to a management role type. Because implicit scopes are associated with a management role type, all of the parent and child management roles with the same role type also have the same implicit scopes.
Implicit scopes apply to both built-in management roles and also to custom management roles.
Implicit scopes defined on management roles
Implicit scopes Description
Organization If Organization is present in the role’s recipient write scope, the role can create or modify recipient objects across the Exchange organization.
If Organization is present in the role’s recipient read scope, roles can view any recipient object across the Exchange organization.
This scope is used only with recipient read and write scopes. MyGAL If MyGAL is present in the role’s recipient write scope, the role can view the properties of any recipient within the current user’s global address list (GAL). If MyGAL is present in the role’s recipient read scope, the role can view the properties of any recipient within the current GAL.
This scope is used only with recipient read scopes.
Self If Self is present in the role’s recipient write scope, the role can modify only the properties of the current user’s mailbox.
If Self is present in the role’s recipient read scope, the role can view only the properties of the current user’s mailbox.
This scope is used only with recipient read and write scopes. MyDistributionGroups If MyDistributionGroups is present in the role’s recipient write scope, the role can create or modify distribution list objects owned by the current user. If MyDistributionGroups is present in the role’s recipient read scope, the role can view distribution list objects owned by the current user.
This scope is used only with recipient read and write scopes. OrganizationConfig If OrganizationConfig is present in the role’s configuration write scope, the role can create or modify any server or database configuration object across the Exchange organization. If OrganizationConfig is present in the role’s configuration read scope, the role can view any server or database configuration object across the Exchange organization. This scope is used only with configuration read and write scopes. None If None is in a scope, that scope isn’t available to the role. For example, a role that has None in the recipient write scope can’t modify recipient objects in the Exchange organization. Explicit scopes are scopes that you set yourself to control which objects a management role can modify. Although implicit scopes are defined on a management role, explicit scopes are defined on a management role assignment.
This enables the implicit scopes to be applied consistently across all management roles unless you choose to use an overriding explicit scope. For more information about management role assignments, see Understanding Management Role Assignments. Explicit scopes override the implicit write and configuration scopes of a management role. They don’t override the implicit read scope of a management role. The implicit read scope continues to define what objects the management role can read.
Explicit scopes are useful when the implicit write scope of a management role doesn’t meet the needs of your business. You can add an explicit scope to include nearly anything you want as long as the new scope doesn’t exceed the bounds of the implicit read scope. The cmdlets that are part of a management role must be able to read information about the objects or containers that contain objects for the cmdlets to create or modify objects. For example, if the implicit read scope on a management role is set to Self, you can’t add an explicit write scope of Organization because the explicit write scope exceeds the bounds of the implicit read scope.
The OrganizationConfig implicit scope
If OrganizationConfig is present in the role’s configuration write scope, the role can create or modify any server or database configuration object across the Exchange organization. If OrganizationConfig is present in the role’s configuration read scope, the role can view any server or database configuration object across the Exchange organization. CAN MANAGE THE PROPERTIES OF ALL OF THE MAILBOX DATABASES. The Self Implicit Scope If Self is present in the role’s recipient write scope, the role can modify only the properties of the current user’s mailbox.
If Self is present in the role’s recipient read scope, the role can view only the properties of the current user’s mailbox.
CANNOT BE SELF AS IT PERTAINS TO ONLY THE PARTICULAR USER’S MAILBOX The Organization relative scope
If Organization is present in the role’s recipient write scope, the role can create or modify recipient objects across the Exchange organization.
If Organization is present in the role’s recipient read scope, roles can view any recipient object across the Exchange organization.
This scope is used only with recipient read and write scopes.
NOT MEANT FOR MANAGING MAILBOX DATABASES
A recipient is any mail-enabled object in the Active Directory directory service to which Exchange can deliver or route messages.
In Microsoft Exchange recipients are comprised of mailbox users, mail-enabled users, mail contacts, distribution groups, security groups, dynamic distribution groups, and mail-enabled public folders.
The Recipient filter explicit scope
Recipient filter scopes use filters to target specific recipients based on recipient type or other recipient properties such as department, manager, location, and more.
CAN TARGET THE USERS IN THE SALES DEPARTMENT

QUESTION 37
Drag and Drop Question
You have an Exchange Server 2007 organization. You are migrating the organization to Exchange Server 2013. The migration will last eight weeks. All servers are in a site named Site1. The servers in the organization are configured as shown in the following table. Users who have mailboxes on all of the servers will access Outlook Anywhere by using the mail.adatum.com name. You need to recommend which servers must be associated to the autodiscover.adatum.com and mail.adatum.com names. Which servers should you identify for each name? (To answer, drag the appropriate servers to the correct names. Each server may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

clip_image001
Answer:

clip_image001[4]
Explanation:
INCOMPLETE INFORMATION
MAKES IT TOO DIFFICULT TO EVEN GUESS HOW TO ARRIVE AT THE CORRECT ANSWER MAY DEPEND ON THE TYPE OF SERVER (MAILBOX OR CLIENT ACCESS SERVER THAT IS IN USE OR THE VERSION OF OUTLOOK BEING USED
TO DETERMINE IF AUTODISCOVER CAN BE UTILISED ON THAT PARTICULAR SERVER. WHEN CAN YOU USE AUTODISCOVER WHEN CAN YOU NOT USE AUTODISCOVER Autodiscover
Exchange Autodiscover is a service which is run on Exchange Client Access Servers. It is one of the new features it included in exchange 2007+ The Autodiscover service makes it easier to configure Outlook 2007 ,Outlook 2010 + and some mobile phones.
Autodiscover Service cannot be used with earlier versions of Outlook, including Outlook 2003. In earlier versions of Microsoft Exchange (Exchange 2003 SP2 or earlier) and Outlook (Outlook 2003 or earlier), you had to configure all user profiles manually to access Exchange. The Autodiscover service uses a user’s e-mail address and password to automatically configure a user’s profile. Using the e-mail address, the Autodiscover service provides the following information to the client:
The user’s display name.
Separate connection settings for internal and external connectivity.
The location of the user’s Mailbox server.
The URLs for various Outlook features that manage functionality such as OOF, free/busy information, Unified Messaging, and the offline address book.
Outlook Anywhere server settings.
Additionally, a new Active Directory object named the service connection point (SCP) is created on the server where you install the Client Access server role. And Autodiscover information is stored in it.
Exchange 2013 requires its Outlook clients support auto-discovery of the server; this is in part to help streamline cloud deployments of Exchange. Clients also have to support “Outlook Anywhere” access–remote procedure calls via HTTP–to connect to Exchange 2013 instead of using TCP-based RPCs as in older versions of Exchange.
What actually happens after you have entered your details is that the client looks for autodiscover.yourdomain.com and attempts to retrieve the rest of the server configuration details from there.

QUESTION 38
You have an Exchange Server 2013 organization that contains two Client Access servers named SERVER1 and SERVER2 and two Mailbox servers named SERVER3 and SERVER4. You have a firewall that controls all of the traffic between the internal network and the Internet. SERVER3 and SERVER4 are prevented from communicating with Internet hosts. SERVER1 and SERVER3 are in a site named Main. SERVER2 and SERVER4 are in a site named Main_2. All outbound email is sent through SERVER1. Main fails. You discover that email messages for the Internet are queued on SERVER4. You create a new send connector in Main_2. You discover that all of the outbound email is queued on SERVER4 and is not delivered to the Internet. You verify that the client computers on the network can receive email messages from the Internet successfully. You need to ensure that the email messages are delivered successfully to the Internet. Which cmdlet should you run?

A.    Set-SendConnector
B.    Set-TransportService
C.    Set-ExchangeServer
D.    Set-ADSite

Answer: A
Explanation:
Mailbox Server
In an Exchange Server 2013 organization the Mailbox server role is responsible for sending outbound email via a Send Connector.

clip_image001[6]
When this option is enabled outbound email that is being sent via a Send Connector does not go directly out from the Mailbox server, and instead is proxied through a Client Access server in the site. There is nothing complicated going on here, the Client Access server simply acts as a proxy for the connection so that the receiving host out on the internet sees the connection as coming from the Client Access server name and IP address rather than the Mailbox server. IN THIS QUESTION THE CLIENT ACCESS SERVER (SERVER1) IS ACTING AS A PROXY SERVER FOR THE MAILBOX SERVERS.
NEED TO CHANGE THE SEND CONNECTOR SETTINGS IN ORDER FOR MAIL TO FLOW OUT FROM SERVER4 TO THE INTERNET.
Correct Answer A
Set-SendConnector
Use the Set-SendConnector cmdlet to modify a Send connector.
EXAMPLE 1
This example makes the following configuration changes to the Send connector named
Contoso.com Send
Connector:
Sets the maximum message size limit to 10 MB.
Changes the connection inactivity time-out to 15 minutes. Set-SendConnector “Contoso.com Send Connector” -MaxMessageSize 10MB – ConnectionInactivityTimeOut
00:15:00
Send Connector
In Microsoft Exchange Server 2013, a Send connector controls the flow of outbound messages to the receiving server.
They are configured on Mailbox servers running the Transport service. Most commonly, you configure a Send connector to send outbound email messages to a smart host or directly to their recipient, using DNS.
Exchange 2013 Mailbox servers running the Transport service require Send connectors to deliver messages to the next hop on the way to their destination. Send connectors that are created on Mailbox servers are stored in Active Directory and are available to all Mailbox servers running the Transport service in the organization.

clip_image001[8]

clip_image002[14]

clip_image001[10]

NOT B
Set-transportservice
Use the Set-TransportService cmdlet to set the transport configuration options for the Transport service on Mailbox servers or for Edge Transport servers. This example sets the
TransientFailureRetryCount parameter to 3 and sets the TransientFailureRetryInterval parameter to 30 seconds for the Transport service on a Mailbox server named Mailbox01.
Set-TransportService Mailbox01 -TransientFailureRetryCount 3 -TransientFailureRetryInterval
00:00:30
NOT C
Will not resolve the issue
Set-ExchangeServer
Use the Set-ExchangeServer cmdlet to set Exchange attributes in Active Directory for a specified server.
For information about the parameter sets in the Syntax section below, see Syntax.
EXAMPLE 1
This example disables error reporting on the specified server. Set-ExchangeServer -Identity TestServer.Contoso.com -ErrorReportingEnabled: $false NOT D
Will not resolve the issue
Set-ADSite
Use the Set-AdSite cmdlet to configure the Exchange settings of Active Directory sites.
EXAMPLE 1
This example configures the Active Directory site named Default-First-Site-Name as a hub site. Set-AdSite Default-First-Site-Name -HubSiteEnabled $true

QUESTION 39
You have an Exchange Server 2013 organization named adatum.com. The organization contains five Mailbox servers and two Client Access servers. You need to ensure that an administrator named user1 receives a daily email message that contains a log of all the Exchange Server administrative actions. Which cmdlet should you use in a scheduled task?

A.    Search-AdminAuditLog
B.    Set-Mailbox
C.    New-AdminAuditLogSearch
D.    Set-ExchangeServer
E.    Set-AdminAuditLogConfig

Answer: C
Explanation:
NOT A
Use Search-AdminAuditLog for searching through the audit logs.
Search-AdminAuditLog
Use the Search-AdminAuditLog cmdlet to search the contents of the administrator audit log. For information about the parameter sets in the Syntax section below, see Syntax.
EXAMPLE 1
This example finds all the administrator audit log entries that contain either the New-RoleGroup or the New-ManagementRoleAssignment cmdlet.
Search-AdminAuditLog -Cmdlets New-RoleGroup, New-ManagementRoleAssignment NOT B
Set-Mailbox
Use the Set-Mailbox cmdlet to modify the settings of an existing mailbox. You can use this cmdlet for one mailbox at a time.
To perform bulk management, you can pipeline the output of various Get- cmdlets (for example, the Get-Mailbox or Get-User cmdlets) and configure several mailboxes in a single-line command. You can also use the Set-Mailbox cmdlet in scripts.
For information about the parameter sets in the Syntax section below, see Syntax.
EXAMPLE 1
This example delivers John Woods’s email messages to John’s mailbox and also forwards them to Manuel Oliveira’s ([email protected]) mailbox.
Set-Mailbox -Identity John -DeliverToMailboxAndForward $true -ForwardingSMTPAddress [email protected]
NOT D
Set-ExchangeServer
Use the Set-ExchangeServer cmdlet to set Exchange attributes in Active Directory for a specified server.
For information about the parameter sets in the Syntax section below, see Syntax.
EXAMPLE 1
This example disables error reporting on the specified server. Set-ExchangeServer -Identity TestServer.Contoso.com -ErrorReportingEnabled: $false NOT E
NOT Set-AdminAuditLogConfig
Use the Set-AdminAuditLogConfig cmdlet to configure the administrator audit logging configuration settings.
EXAMPLE 1
This example enables administrator audit logging for every cmdlet and every parameter in the organization, with the exception of Get cmdlets.
Set-AdminAuditLogConfig -AdminAuditLogEnabled $true -AdminAuditLogCmdlets * – AdminAuditLogParameters *
C
New-AdminAuditLogSearch
Use the New-AdminAuditLogSearch cmdlet to search the contents of the administrator audit log and send the results to one or more mailboxes that you specify. For information about the parameter sets in the Syntax section below, see Syntax.
EXAMPLE 1
This example finds all the administrator audit log entries that match the following criteria and sends the results to the [email protected] and [email protected] SMTP addresses:
Cmdlets Set-Mailbox Parameters UseDatabaseQuotaDefaults, ProhibitSendReceiveQuota, ProhibitSendQuota StartDate 01/24/2012 EndDate 02/12/2012 New-AdminAuditLogSearch -Name “Mailbox Quota Change Audit” -Cmdlets Set-Mailbox -Parameters UseDatabaseQuotaDefaults, ProhibitSendReceiveQuota, ProhibitSendQuota -StartDate 01/24/2012 – EndDate
02/12/2012 -StatusMailRecipients [email protected], [email protected]

QUESTION 40
You have an Exchange Server 2013 organization. You plan to deploy Exchange ActiveSync for mobile devices. Each mobile device will be authenticated by using certificates issued by an internal certification authority (CA). You need to configure the organization to authenticate the mobile devices by using the certificates. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

A.    From Internet Information Services (IIS) Manager on each Client Access server, configure the
Microsoft-Server-ActiveSync virtual directory to require client certificates.
B.    From Exchange Admin Center, configure the Microsoft-Server-ActiveSync virtual directory to require
client certificates.
C.    From Internet Information Services (IIS) Manager on each Client Access server, enable Active Directory
Client Certificate Authentication.
D.    From Internet Information Services (IIS) Manager on each Mailbox server, enable Active Directory Client
Certificate Authentication.

Answer: BC
Explanation:
NOT A
Enable Active Directory Client Certificate Authentication within IIS but configure the Microsoft- Server-ActiveSync virtual directory to require client certificates is performed in Exchange Admin Center
NOT D
IIS is configured on the Client Access Server not the Mailbox Server B
After you’ve installed the Exchange 2013 Client Access server, there are a variety of configuration tasks that you can perform.
Although the Client Access server in Exchange 2013 doesn’t handle processing for the client protocols, several settings need to be applied to the Client Access server, including virtual directory settings and certificate settings.
http://technet.microsoft.com/en-us/library/gg247612(v=exchg.150).aspx Exchange Server 2013 automatically configures multiple Internet Information Services (IIS) virtual directories during installation.
This topic contains information about the default IIS authentication settings and default Secure Sockets Layer (SSL) settings for the Client Access and Mailbox servers. The following table lists the default settings on a stand-alone Exchange 2013 Client Access server. Default Client Access server IIS authentication and SSL settings Virtual directory Authentication method SSL settings
Management method
Microsoft-Server-ActiveSync Basic authentication SSL required Requires 128-bit encryption EAC or Shell

clip_image001[12]

clip_image002[16]

C
Configure certificate-based authentication for Exchange ActiveSync
http://blogs.technet.com/b/exchange/archive/2012/11/28/configure-certificate-based- authentication-forexchange-
activesync.aspx
Client Access Server Configuration
To configure the Client Access server to enforce certificate based authentication :
1. Verify if Certificate Mapping Authentication is installed on the server. Right click on Computer in the start menu and choose Manage.
Expand Roles and click on Web Server (IIS)
Scroll down to the Role Services section. Under the Security section you should see Client Certificate Mapping
Authentication installed.

clip_image002[18]

clip_image001[14]

If you don’t see Client Certificate Mapping Authentication installed, click add Role Services > (scroll) Security and select Client Certificate Mapping Authentication and then click Install.
Reboot your server.

clip_image002[20]

If you want to pass the Microsoft 70-341 Exam sucessfully, recommend to read latest Microsoft 70-341 Dump full version.

Official 2014 Latest Free Microsoft 70-341 Dump Download(21-30)!

Case Study 3: A.Datum Corporation (QUESTION 21 ~ QUESTION 27)
Overview
A. Datum Corporation is an airline catering company that has 8,000 users. A. Datum has three main offices. The offices are located in Detroit, Chicago, and New York.
Existing Environment
Active Directory Environment
The network contains an Active Directory forest named adatum.com. The forest contains a single domain. All domain controllers run Windows Server 2012. Each main office contains two domain controllers. Each office is configured as an Active Directory site. The functional level of the forest is Windows Server 2012.
Network Infrastructure
The offices connect to each other by using a dedicated WAN link. Only the office in New York and the office in Detroit connect directly to the Internet. Each office has a firewall. The public DNS records for A. Datum are configured as shown in the following table.

clip_image001
The external interface for the firewall in the New York office is configured to use an IP address of 131.107.1.200 and to pass inbound traffic on port 25 and port 443 to EX2. The external interface for the firewall in the Detroit office is configured to use an IP address of 131.107.2.200 and to pass inbound traffic on port 443 to EX4. The Active Directory site is configured as shown in the Sites exhibit. (Click the Exhibit button.) Exchange Server Organization
A. Datum has an Exchange Server 2013 organization that contains two servers. The servers are configured as shown in the following table.

clip_image001[4]
Each server contains 15 mailbox databases. Users use the name mail.adatum.com to connect to their mailbox from the Internet. The users use the FQDN of the servers to connect from the internal network. AM of the users in the Detroit office have a mailbox hosted on EX2. The default email address policy contains a single email address format of @adatum.com. A separate Send connector exists for the Chicago office and the New York office. The local servers in each office are the only source servers in each Send connector. The New York office is configured as a hub site. Antimalware filtering is disabled on EX1 and EX2.
Problem Statements
A. Datum identifies the following issues:
– Users in the Detroit office report that sometimes, Microsoft Outlook takes a long time to open.
– During a recent storage failure, administrators failed to restore the latest backup and lost all of the email messages from the previous 48 hours.
– Users report that the email messages sent to some Internet domains are not received. Users in the Chicago office report that some of their email messages generate a non-delivery report (NDR).
– The help desk in the New York office reports that its most common Exchange-related task is to restore email messages that were deleted by users more than 14 days ago. The task requires time-consuming restore operations by the help desk.
Requirements
Business Requirements
A. Datum wants to provide users with the ability to access their email from Internet Explorer 10, even when the users are disconnected from the network. This ability must only be available if the users log on to Outlook Web Access by using the Private option.
Planned Changes
You plan to deploy three additional Exchange Server 2013 servers. The servers will be configured as shown in the following table.

clip_image001[6]
After the planned deployment, all of the mailboxes of the Detroit office users will be moved to EX3. All of the Detroit office users will use the name detroitmail.adatum.com when they connect from the Internet and the name ex4.adatum.com when they connect from the internal network.
Technical Requirements
A. Datum identifies the following technical requirements:
– All existing and future mailboxes must be limited to 5 GB of storage.
– Antimalware and anti-spam filtering must be enabled for the entire Exchange Server organization.
– If storage for the mailbox database fails, administrators must be able to recover email messages handled by transport services for to the last five days.
– Only the members of a group named Executives must be able to schedule meetings in a room mailbox named Boardroom. Meeting requests must not be moderated.
– All of the servers in the New York office that have the Client Access server role installed must be accessed by using a load balancing solution that can mark a server as down ifa specific URL on the server is unavailable.
Mailbox Creation Requirements
A. Datum identifies the following requirements for creating new mailboxes:
– All mailboxes must automatically have single item recovery enabled.
– All mailboxes must automatically have the Exchange ActiveSync feature disabled.

QUESTION 21
Hotspot Question
You need to recommend a solution to meet the technical requirements for mailbox size restrictions. Which command should you include in the recommendation? (To answer, select the appropriate options in the answer area.)

clip_image002
Answer:

clip_image002[4]

QUESTION 22
Drag and Drop Question
You need to recommend a solution to meet the technical requirements for email message recovery. Which command should you include in the recommendation? (To answer, configure the appropriate options in the answer area.)

clip_image001[8]
Answer:

clip_image001[10]

QUESTION 23
You are evaluating the planned deployment of the additional Exchange Server 2013 servers. You need to recommend changes to the DNS records to ensure that email messages are routed to the Detroit site if the servers in the New York site are unavailable. What should you recommend adding?

A.    An MX record that has a preference value of 10 that points to EX4
B.    An MX record that has a preference value of 20 that points to EX4
C.    An MX record that has a preference value of 10 that points to EX3
D.    An MX record that has a preference value of 20 that points to EX3

Answer: B
Explanation:
NOT A C D
Need to change the value of the MX record to achieve the desired result.
Need to have a preference value greater for the 2nd preferred exchange mail server (Detroit) than the 1st preferred mail server.(New York)
That is it needs to point to the Detroit mail server (EX4) only if the New York mail server is unavailable.
B
Need to point to EX4 and have a higher preference value than 10. (The default value of New York mail server MX record)

QUESTION 24
You need to recommend a solution to resolve the issue of email messages not being received on the Internet. What should you include in the solution?

A.    Modify the CNAME record.
B.    Add an MX record.
C.    Modify the TXT record.
D.    Add a pointer (PTR) record.

Answer: D

QUESTION 25
You need to recommend a solution for the New York office that meets the technical requirements for client access. What should you include in the recommendation? (Each correct answer presents a complete solution. Choose all that apply.)

A.    A Layer 4 hardware load balancer
B.    A Client Access server array
C.    A Layer 7 hardware load balancer
D.    The Network Load Balancing (NLB) feature
E.    DNS round robin

Answer: AC

QUESTION 26
You need to recommend a solution to meet the mailbox creation requirements. Which three actions should you recommend performing in sequence? (To answer, move the appropriate three actions from the list of actions to the answer area and arrange them in the correct order.)

clip_image002[6]
Answer:
Explanation:

clip_image002[8]
Edit the ScriptingAgentConfig.xml.sample file, and then rename the file as 
ScriptingAgentConfig.xml.
Copy the ScriptingAgentConfig.xml file to all of the Mailbox servers Run the Enable-CmdletExtensionAgent “Scripting Agent” command
http://technet.microsoft.com/en-us/library/dd335054(v=exchg.150).aspx
Cmdlet Extension Agents
Cmdlet extension agents are components in Microsoft Exchange Server 2013 invoked by Exchange cmdlets when the cmdlets run. As the name implies, cmdlet extension agents extend the capabilities of the
cmdlets that invoke them by assisting in processing data or performing additional actions based on the requirements of the cmdlet. Cmdlet extension agents are available on any server role.
Agents can modify, replace, or extend functionality of Exchange Management Shell cmdlets. An agent can provide a value for a required parameter that isn’t provided on a command, override a value provided by a user, perform other actions outside of the cmdlet workflow while a cmdlet runs, and more.
You can use the Scripting agent cmdlet extension agent in Exchange 2013 to insert your own scripting logic into the execution of Exchange cmdlets. Using the Scripting agent, you can add conditions, override values, and set up reporting.
Every time an Exchange cmdlet is run, the cmdlet invokes the Scripting agent cmdlet extension agent. When this agent is invoked, the cmdlet checks whether any scripts are configured to be invoked by the cmdlet. If a script should be run for a cmdlet, the cmdlet tries to invoke any APIs defined in the script.
The Scripting agent configuration file contains all the scripts that you want the Scripting agent to run. Scripts in the configuration file are contained within XML tags that define the beginning and end of the script and various input parameters required to pass data to the script. Scripts are written using Windows PowerShell syntax. The configuration file is an XML file that uses the elements or attributes in the following table.
Every Exchange 2013 server includes the file ScriptingAgentConfig.xml.sample in the <installation path>\V15\Bin\CmdletExtensionAgents folder. This file must be renamed to ScriptingAgentConfig.xml on every Exchange 2013 server if you enable the Scripting Agent cmdlet extension agent. The sample configuration file contains sample scripts that you can use to help you understand how to add scripts to the configuration file. After you add a script to the configuration file, or if you make a change to the configuration file, you must update the file on every Exchange 2013 server in your organization. This must be done to make sure that each server contains an up-to-date version of the scripts that the Scripting Agent cmdlet extension agent runs.
ScriptingAgentConfig.xml
Renamed from ScriptingAgentConfig.xml.sample on every Exchange 2013 server if you enable the Scripting Agent cmdlet extension agent.
ScrptingAgentConfig.xml.sample
Every Exchange 2013 server includes the file ScriptingAgentConfig.xml.sample in the <installation path>\V15
\Bin\CmdletExtensionAgents folder.
This file must be renamed to ScriptingAgentConfig.xml on every Exchange 2013 server if you enable the Scripting Agent cmdlet extension agent.
The sample configuration file contains sample scripts that you can use to help you understand how to add scripts to the configuration file.
Enable-CmdletExtensionAgent “Scripting Agent” command
Use the Enable-CmdletExtensionAgent cmdlet on a server running Microsoft Exchange Server 2013 to enable a cmdlet extension agent.
EXAMPLE 1 This example enables the Scripting Agent cmdlet extension agent. Before you enable the Scripting Agent, you need to make sure that you’ve first deployed the ScriptingAgentConfig.xml configuration file to all the servers in your organization. If you don’t deploy the configuration file first and you enable the Scripting Agent, all non-Get cmdlets fail when they’re run.
Enable-CmdletExtensionAgent “Scripting Agent”
Run the Set-CmdletExtensionAgent “Scripting Agent” command Use the
Set-CmdletExtensionAgent cmdlet on a server running Microsoft Exchange Server 2013 to modify a cmdlet extension agent.
EXAMPLE 1
This example changes the priority of the fictitious “Validation Agent” cmdlet extension agent to 9. Set-CmdletExtensionAgent “Validation Agent” -Priority 9 STEPS
1. Edit the ScriptingAgentConfig,xml.sample file, and then rename the file as
ScriptingAgentConfig.xml
Need to add in your own appropriate scripts
2. Copy the ScriptingAgentConfig.xml file to all of the Mailbox Servers The question refers to mailbox creation requirements but according to the above information – After you add a script to the configuration file, or if you make a change to the configuration file, you must update the file on every Exchange 2013 server in your organization. In the absence of further information, accept updating the mailbox servers over the client access servers
3.Enable- CmdletExtensionAgent “Scripting Agent” command Have to enable the cmdlet extension agent.

QUESTION 27
You are evaluating the deployment of the additional Exchange Server 2013 servers. You need to recommend changes to the transport configurations to ensure that all email messages sent from the Detroit office are routed through EX2. What should you include in the recommendation?

A.    Increase the cost of the CHI-NY site link to 15.
B.    Specify an Exchange-specific cost of 20 for the CHI-DET site link.
C.    Decrease the cost of the CHI-NY and the DET-NY site links to 4.
D.    Increase the cost of the DET-NY site link to 15.

Answer: B

Case Study 4: Proseware, Inc (QUESTION 28 ~ QUESTION 34)
Overview
General Overview
Proseware, Inc., is an international manufacturing company that has 3,000 users. Proseware has a sales department, a marketing department, a research department, and a human resources department. Proseware recently purchased a small competitor named Contoso, Ltd.
Physical Locations
Proseware has two offices. The offices are located in New York and London. The offices connect to each other by using a WAN link. Each office connects directly to the Internet.
Contoso has one office in Chicago.
Existing Environment
Active Directory Environment
The network of Proseware contains an Active Directory forest named proseware.com. The forest contains a single domain and two sites named London and New York. Each site contains two domain controllers that run Windows Server 2008 R2. The domain controllers in the New York site are named DC1 and DC2. The domain controllers in the London site are named DC3 and DC4. All FSMO roles are hosted on DC3 and DC4. The network of Contoso contains an Active Directory forest named contoso.com. The forest contains five domain controllers and one site.
Exchange Server Organization
Proseware has an Exchange Server 2013 organization that contains two database availability groups (DAGs) named DAG-NYC and DAG-LON. The DAGs are configured as shown in the following table.

clip_image001[12]
The certificate used for Exchange Server 2013 has a subject name of mail.proseware.com and a Subject Alternative Name (SAN) of autodiscover.proseware.com. Each mailbox database has three copies. All users connect to an active copy of the database on a server in their respective office. Native data protection is implemented. NTLM communication is used exclusively for Outlook Anywhere both internally and externally.
Problem Statements
Proseware identifies the following issues:
– Users report that sometimes, they fail to access the free/busy information of the other users. You also discover that some users fail to retrieve Autodiscover settings.
– Users in the London office report that during a 24-hour WAN outage, they could see only new users in the global address list (GAL) from Outlook Web App.
– The manager of the human resources department in the New York office cannot see new London office users in the GAL until several hours after the help desk confirms that the users were created.
– A hung MSExchangeOWAAppPool in Internet Information Services (IIS) on EX1 causes all of the database copies to fail over. Despite having the same CopyQueueLength and ReplayQueueLength as the copies on EX2, the copies on EX3, which have a higher activation preference, are activated, forcing user connections over the WAN.
– A custom application named Appl recently malfunctioned and sent hundreds of false positive email notifications that had a subject of System Alert: Sales Database Reaching Capacity to all of the users in the organization. While attempting to remove the email messages, an administrator ran the Search-Mailbox -DeleteContent command and erroneously deleted valid email messages from the mailboxes of some executives.
Requirements
Business Goal
Proseware identifies the following business goals:
– Reduce the costs associated with using bandwidth on the WAN links.
– Improve social media integration by using a Microsoft Outlook app that will be deployed to all of the users in the sales department.
Planned Changes
Proseware plans to make the following changes:
– Implement a lagged copy for the mailbox database of the executives.
– Implement an RBAC-linked role group for the administrators at Contoso to manage the mailboxes of the Proseware users.
Technical Requirements
Proseware identifies the following technical requirements:
– End users must be notified after one hour if the email messages that they send are not delivered.
– If mailbox database storage fails, the IT department must be able to recover old email messages that were sent up to five days earlier to the mailboxes of the executives.
– All new users hired at Contoso must have a user account in contoso.com and an Exchange Server mailbox in proseware.com. All new user accounts in contoso.com must have a user principal name (UPN) that ends with proseware.com.
– Administrators at Contoso must be able to create and manage recipient objects in the Exchange Server organization of Proseware by using their existing contoso.com administrator account. All Contoso recipient objects must reside in an organizational unit (OU) named proseware.com.
Security Requirements
The Chief Security Officer (CSO) introduces the following security requirements:
– All Outlook users who connect from the Internet must use Basic authentication only.
– All Outlook users who connect from the internal network must use NTLM authentication only.
SLA Requirements
Due to productivity losses during some recent maintenance windows, the Chief Information Officer (CIO) introduces a new service level agreement (SLA) requiring that all servers entering or exiting a maintenance window must be taken in and out of service properly.
The SLA contains the following requirements:
– All mounted databases on the server undergoing maintenance must be activated on another server.
– All message queues on the server undergoing maintenance must be empty before maintenance can begin.
– The server undergoing maintenance must be prevented from becoming a Primary Active Manager (PAM).
– Databases copies on the server undergoing maintenance must not be activated while maintenance is occurring.

QUESTION 28
Hotspot Question
You are attempting to resolve the database activation issue. You need to identify why the database copies are activated on EX3 instead of EX2. Which command should you use? (To answer, select the appropriate options in the answer area.)

clip_image002[10]

clip_image002[12]
Answer:

clip_image002[14]

QUESTION 29
Drag and Drop Question
You need to identify which commands must be run to perform the maintenance window tasks. Which commands should you run? (To answer, drag the appropriate commands to the correct tasks. Each command may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

clip_image002[16]
Answer:

clip_image002[18]

QUESTION 30
You need to recommend which command must be run to remove the email notifications from all of the servers if App1 malfunctions again. Which command should you recommend? (To answer, configure the appropriate options in the answer area.)

clip_image002[20]

clip_image002[22]
Answer:

clip_image002[24]

If you want to pass the Microsoft 70-341 Exam sucessfully, recommend to read latest Microsoft 70-341 Dump full version.

Official 2014 Latest Free Microsoft 70-341 Dump Download(11-20)!

QUESTION 11
You need to recommend a temporary solution to reroute all of the outbound email messages through the Miami mail appliance during the planned replacement of the New York mail appliance. What are three possible ways to achieve the goal? (Each correct answer presents a complete solution. Choose three.)

A.    Modify the value of the SmartHost of the Send connector in the New York office.
B.    Increase the cost of the Send connector in the Miami office.
C.    Increase the cost of the Send connector in the New York office.
D.    Decrease the cost of the Send connector in the New York office,
E.    Modify the value of the SmartHost of the Send connector in the Miami office.
F.    Disable the Send connector in the New York office.

Answer: ACF
Explanation:
NOT B
Need to increase the cost of the Send Connect in the New York Office
NOT D
Need to increase the cost not decrease the cost of the Send Connector in the New York Office
NOT E
Need to modify the value of the SmartHost of the Send connector in the New York office
A
Modify the value of the SmartHost of the Send connector in the New York office to point to the smart host in the Miami office.
C
Increasing the cost of a Send Connector in the New York Office will make the Miami connection to the internet the most preferred outbound connection.
F
Disabling the Send connector in the New York Office will make the Miami connection to the internet the only outbound connection.

QUESTION 12
Hotspot Question
You are evaluating a DAG design for the New York and Atlanta offices. You need to ensure that all of the users in the New York and Atlanta offices can access their mailbox if the WAN link fails. Which DAG design should you deploy?
To answer, select the appropriate DAG design in the answer area.

clip_image001
Answer:

clip_image001[4]

QUESTION 13
You plan to deploy an Exchange Server 2013 organization. You need to recommend a solution to ensure that a user named User1 can access email messages by using Exchange ActiveSync on an Android device. The solution must prevent all other users from using Android devices to access email by using Exchange ActiveSync. What should you recommend doing first?

A.    Run the Set-CasMailbox cmdlet.
B.    Create a device access rule.
C.    Modify the Quarantine Notification settings.
D.    Create a mobile device mailbox policy.

Answer: B
Explanation:
Correct Answer B
Access the Allow/Block/Quarantine rules

clip_image002
NOT A
Use the Set-CASMailbox cmdlet to set attributes related to client access for Microsoft Exchange ActiveSync, Microsoft Office Outlook Web App, POP3, and IMAP4 for a specified user.
The Set-CASMailbox cmdlet operates on one mailbox at a time. You can configure properties for Outlook Web App, Exchange ActiveSync, POP3, and IMAP4 by using this cmdlet. You can configure a single property or multiple properties by using one statement.
Need to create a rule to allow a particular user to use Exchange ActiveSync on an Android device.
NOT C
Can allow or block access for all users.
Quarantine all uses and then selectively allow the users access.
A new device rule is a better way of managing the problem.

clip_image001[6]
NOT D
Need a policy for a single user.
In Microsoft Exchange Server 2013, you can create mobile device mailbox policies to apply a common set of policies or security settings to a collection of users. After you deploy Exchange ActiveSync in your Exchange 2013 organization, you can create new mobile device mailbox policies or modify existing policies. When you install Exchange 2013, a default mobile device mailbox policy is created. All users are automatically assigned this default mobile device mailbox policy.

Case Study 2: Litware, Inc (QUESTION 14 ~ QUESTION 20)
Overview
Litware, Inc., is a manufacturing company located in North America. The company has a main office and two branch offices. The main office is located in Chicago. The branch offices are located in Baltimore and Los Angeles.
Existing Environment
Active Directory Environment
The network contains one Active Directory forest named litwareinc.com. Each office is configured as an Active Directory site. All domain controllers in the Los Angeles office run Windows Server 2008 R2. All domain controllers in the Chicago office run Windows Server 2003 Service Pack 1 (SP1). All domain controllers in the Baltimore office run Windows Server 2012. All of the FSMO roles are located on a domain controller in the Baltimore office. All of the domain controllers are configured as global catalog servers. You have a distribution group for each department. The distribution groups contain all of the users in each respective department.
Network Infrastructure
The servers in each office are configured as shown in the following table.

clip_image001[8]
The Baltimore and Chicago offices have independent Internet connections. Internet connectivity for the Los Angeles office is provided through Chicago. Users frequently send large email messages to other users in the company. Recently, you increased the maximum message size to 50 MB.
Planned Changes
The company plans to deploy a new Exchange Server 2013 infrastructure that will contain two Clients Access servers and two Mailbox servers in the Chicago office. The servers will be configured as shown in the following table.

clip_image001[10]
All client connections to the Exchange Server organization will be routed through a hardware load balancer. The name client.litwareinc.com will point to the virtual IP address of the hardware load balancer. Once the transition to Exchange Server 2013 in the Chicago office is complete, all mail flow to and from the Internet will be managed centrally through that office by using a Send connector that has the following configurations:
– Connector name: CH-to-Internet
– Address space: *
– Source servers: CH-EX2, CH-EX3
– Cost: 10

QUESTION 14
Hotspot Question
You need to identify which names must be used as the URLs of each virtual directory on the planned Exchange Server 2013 servers. Which names should you identify? To answer, configure the appropriate name for each server in the answer area.

clip_image001[12]
Answer:

clip_image001[14]

QUESTION 15
You need to recommend changes to the network to ensure that you can deploy the planned Exchange Server 2013 infrastructure. What should you recommend?

A.    Transfer of the FSMO roles to a domain controller in the Chicago office.
B.    Change the forest functional level.
C.    Change the domain functional level.
D.    Change the operating system on one of the domain controllers in the Chicago office

Answer: D
Explanation:
NOT A
All of the FSMO roles are located on a domain controller in the Baltimore Office.All of the domain controllers are configured as a global catalog server
No need to transfer all of these roles to the chicago domain controller as the question suggests.
NOT B
Apparently no need to change the forest functional level
http://technet.microsoft.com/en-us/library/cc771294.aspx
NOT C
Apparently no need to change the domain functional level
http://technet.microsoft.com/en-us/library/cc771294.aspx
D
http://technet.microsoft.com/en-us/library/ff728623(v=exchg.150).aspx

QUESTION 16
You need to recommend which tasks must be performed to deliver email messages to the Internet if CH-EX2 and CH-EX3 fail to connect to the Internet. The solution must ensure that all queued email is sent. Which two tasks should you recommend? (Each correct answer presents part of the solution.
Choose two.)

A.    Run the retry-queue ch-to-internet command.
B.    Create a new Send connector on a server in the Baltimore office,
C.    Modify the cost of the CH-to-Internet Send connector.
D.    Run the set-sendconnector -identity ch-to-internet -frontendproxyenabled Strue command.
E.    Disable the CH-to-Internet Send connector.

Answer: BE
Explanation:
NOT A
Will not resolve the issue.
Use the Retry-Queue cmdlet to force a connection attempt for a queue on a Mailbox server or an Edge Transport server.
NOT C
Modifying the cost will not fix the issue of CH-EX2 and CH-EX3 failing to connect to the Internet.
Cost is used to set the priority of this connector, used when two or more connectors are configured for the same address space. The lower the cost higher the priority.
NOT D
Modifying the send connector will not fix the internet connection from chicago mail server to the internet.
Use the Set-SendConnector cmdlet to modify a Send connector.
E
Need to disable the send connector from Chicago to the internet so that when a new send connector on the Baltimore server is created, email can be sent to the internet.

QUESTION 17
Drag and Drop Question
You need to create and configure a hierarchical address book (HAB) named Litware to reflect the company’s organizational chart. Which three actions should you perform? To answer, move the three appropriate actions from the list of actions to the answer area and arrange them in the correct order.

clip_image002[4]
Answer:

clip_image002[6]

QUESTION 18
Drag and Drop Question
You are planning the upgrade to Exchange Server 2013. You plan to perform the following tasks:
– Identify the number of email messages sent and received by the users in the current Exchange Server organization.
– Identify how many IOPS are required to provide adequate access to mailboxes for all of the users in the planned organization.
– Validate that all of the planned servers will meet the IOPS requirements of the planned organization.
You need to identify which tool must be used to achieve each task. Which tools should you identify? To answer, drag the appropriate tool to the correct task in the answer area. Each tool may be used once, more than once, or not at all. Additionally, you may need to drag the split bar between panes or scroll to view content.

clip_image002[8]
Answer:

clip_image002[10]

QUESTION 19
You are testing the planned implementation of Exchange Server 2013. After you begin moving several mailboxes to Exchange Server 2013, you discover that users on the internal network that have been moved are prompted repeatedly for their credentials when they run Microsoft Outlook. You run the Get-OutlookAnywhere cmdlet on CH-EX4, and receive the following output:

clip_image001[16]
You need to prevent the internal users from being prompted for their credentials when they connect to their mailbox by using Outlook. Which property should you modify by using the Set- OutlookAnywhere cmdlet?

A.    IISAuthenticationMethods
B.    InternalHostname
C.    ExternalHostname
D.    ExternalClientAuthenticationMethod
E.    InternalClientAuthenticationMethod

Answer: A
Explanation:
InternalClientAuthenticationMethod is NTLM
Windows Challenge/Response (NTLM) is the authentication protocol used on networks that include systems running the Windows operating system and on stand-alone systems.
NTLM credentials are based on data obtained during the interactive logon process and consist of a domain name, a user name, and a one-way hash of the user’s password.
NEED TO CONVERT THE INTERNALCLIENTAUTHENTICATIONMETHOD TO BASIS NOT NTLM IN ORDER TO FIX THE ISSUE.
USE  IISAUTHENTICATIONMETHODS  PARAMETER  IN  ORDER TO ACHIEVE THIS.
Set-OutlookAnywhere
Use the Set-OutlookAnywhere cmdlet to modify the properties on a computer running Microsoft Exchange Server 2013 enabled for Microsoft Outlook Anywhere.
EXAMPLE 1
This example sets the client authentication method to NTLM for the /rpc virtual directory on the Client Access server CAS01.
Set-OutlookAnywhere -Identity:CAS01\rpc (Default Web Site) -ExternalClientAuthenticationMethod:Ntlm
PARAMETERS
The IISAuthenticationMethods parameter
specifies the authentication method enabled on the /rpc virtual directory in Internet Information Services (IIS). You can set the virtual directory to allow Basic authentication or NTLM authentication.
Alternatively, you can also set the virtual directory to allow both Basic and NTLM authentication. All other authentication methods are disabled.
You may want to enable both Basic and NTLM authentication if you’re using the IIS virtual directory with multiple applications that require different authentication methods.
The InternalHostname parameter
specifies the internal hostname for the Outlook Anywhere virtual directory.
The ExternalHostname parameter
specifies the external host name to use in the Microsoft Outlook profiles for users enabled for Outlook Anywhere.
The ExternalClientAuthenticationMethod parameter
specifies the authentication method used for external client authentication. Possible values include:
Basic
Digest
Ntlm
Fba
WindowsIntegrated
LiveIdFba
LiveIdBasic
LiveIdNegotiate
WSSecurity
Certificate
NegoEx
OAuth
Adfs
Kerberos
Negotiate
Misconfigured
The InternalClientAuthenticationMethod parameter
specifies the authentication method used for internal client authentication. Possible values include:
Basic
Digest
Ntlm
Fba
WindowsIntegrated
LiveIdFba
LiveIdBasic
LiveIdNegotiate
WSSecurity
Certificate
NegoEx
OAuth
Adfs
Kerberos
Negotiate
Misconfigured

QUESTION 20
Drag and Drop Question
You need to identify which external namespaces must be used for the Exchange servers in each office. Which external namespaces should you identify for each office? To answer, drag the appropriate namespace to the correct office in the answer area. Each namespace may be used once, more than once, or not at all. Additionally, you may need to drag the split bar between panes or scroll to view content.

clip_image002[12]
Answer:

clip_image002[14]

If you want to pass the Microsoft 70-341 Exam sucessfully, recommend to read latest Microsoft 70-341 Dump full version.

Official 2014 Latest Free Microsoft 70-341 Dump Download(1-10)!

QUESTION 1
You have an Exchange Server 2013 organization. You create two distribution groups named Group1 and Group2. Group1 and Group2 each contain several hundred users. Group1 contains a user named User1. You need to configure moderation for Group2. The solution must meet the following requirements:
Email sent from the members of Group1 must NOT be moderated unless the sender is User1. All other email must be moderated by a user named Admin1. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

A.    Create a transport rule that has the conditions of the sender is User1 and the recipient is Group2.
Configure the transport rule to have an action of Forward the message for approval to Admin1.
B.    Create a transport rule that has the conditions of the sender is User1 and the recipient is Group2.
Configure the transport rule to have an action of Forward the message for approval to Admin1.
C.    Create a transport rule that has a condition of the recipient is Group2. Configure the transport rule to
have an action of Forward the message for approval to Admin1.
D.    Run Set-DistributionGroup Group2 – Moderated By Admin1 – BypassModerationFromSendersOrMembers
Group1 – ModerationEnabled $true.

Answer: BC
Explanation:
Moderated Transport
You can require all messages sent to specific recipients be approved by moderators by Using the moderated transport feature in Microsoft Exchange Server 2013. You can configure any type of recipient as a moderated recipient, and Exchange will ensure that all messages sent to those recipients go through an approval process. In any type of organization, you may need to restrict access to specific recipients. The most common scenario is the need to control messages sent to large distribution groups. Depending on your organization’s requirements, you may also need to control the messages sent to executive mailboxes or partner contacts. You can use moderated recipients to accomplish these tasks.
Transport Rules
Using Transport rules, you can look for specific conditions in messages that pass through your organization and take action on them.
Transport rules let you apply messaging policies to email messages, secure messages, protect messaging systems, and prevent information leakage.
Many organizations today are required by law, regulatory requirements, or company policies to apply messaging policies that limit the interaction between recipients and senders, both inside and outside the organization. In addition to limiting interactions among individuals, departmental groups inside the organization, and entities outside the organization, some organizations are also subject to the following messaging policy requirements:
Preventing inappropriate content from entering or leaving the organization Filtering confidential organization information
Tracking or archiving copying messages that are sent to or received from specific individuals Redirecting inbound and outbound messages for inspection before delivery Applying disclaimers to messages as they pass through the organization As messages go through the Transport pipeline, the Transport rules agent is invoked. The Transport rules agent is a special Transport agent that processes the Transport rules you create. The Transport rules agent scans the message, and if the message fits the conditions you specify in a Transport rule, it takes the specified action on that message.
NOT A
This means that all email sent to Group2 will be moderated.
NOT D
Unknown option
B
When you configure a recipient for moderation, all messages sent to that recipient are subject to approval by the designated moderators.
Allow the members of the distribution group named Group1 to bypass moderation. Combination of this rule and option C allows for only User1 to be affected by the moderator Admin1 C
Need to create a transport rule that identifies User1.

QUESTION 2
You have an Exchange Server 2013 organization that contains one server named exl.contoso.com. The server has the Mailbox server role and the Client Access server role installed. You plan to configure users to work from home and to access their email by using the Outlook Anywhere feature. Upon testing the planned configuration, you discover that the users can connect and synchronize email from home, but they cannot execute the following tasks:
– Set automatic replies for Out of Office.
– Download changes to the offline address book.
– View availability data when scheduling meetings with coworkers.
The users can execute these tasks when they work from the office.
You need to ensure that the users can execute the tasks when they work from home. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

A.    Install a new certificate on exl.contoso.com
B.    Modify the EWS virtual directory.
C.    Create a new Autodiscover virtual directory.
D.    Renew the certificate on exl.contoso.com.
E.    Modify the OAB virtual directory.

Answer: BE
Explanation:
NOT  A  D
Not related to a certificate issue
NOT  C
You may create a new Autodiscover site  if your organization has multiple e-mail domains and each requires its own Autodiscover site and corresponding virtual directory, use the New-AutodiscoverVirtualDirectory cmdlet to create a new Autodiscover virtual directory under a new Web site.
Not required in this scenario.
If you were going to create a new Autodiscover site then you would have to delete the old one first.
B
Need to modify the EWS virtual directory in order to create the external URL.

clip_image001[4]
E
Need to modify the OAB virtual directory to create the External URL

clip_image002

QUESTION 3
Drag and Drop Question
Your network contains an Active Directory forest. The forest contains a single domain named fabrikam.com. You have an Exchange Server organization that contains four servers. The servers are configured as shown in the following table.

clip_image002[4]
You plan to enable Outlook Anywhere for all users. You plan to configure the users to connect to the name oa.fabrikam.com. The IP address of oa.fabrikam.com points to EX3. You need to ensure that users on EX2 and EX4 can access their mailbox by using Outlook Anywhere, Which command should you run on EX1 and EX3? (To answer, drag the appropriate cmdlets to the correct servers. Each cmdlet may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

clip_image001[6]
Answer:

clip_image001[8]

QUESTION 4
You have an Exchange Server 2013 organization named adatum.com. The organization contains two servers named EX1 and EX2 that are configured as shown in the table.

clip_image001[10]
Both servers are members of a database availability group (DAG). EX1 has the active copy of a database named Database1. Several users who have mailboxes in Database1 discover that all of their outbound email messages remain in their Drafts folder when they use Outlook Web App. You need to ensure that the email messages are delivered. What should you do?

A.    On EX2, retry the message queues.
B.    On EX1, start the Microsoft Exchange Mailbox Transport Submission service.
C.    On EX2, start the Microsoft Exchange Mailbox Transport Submission service.
D.    On EX1, retry the message queues.

Answer: B
Explanation:
In Microsoft Exchange Server 2013, mail flow occurs through the transport pipeline. The transport pipeline is a collection of services, connections, components, and queues that work together to route all messages to the categorizer in the Transport service on a Mailbox server inside the organization.

clip_image002[6]

The Transport service on a Mailbox server
Every message that’s sent or received in an Exchange 2013 organization must be categorized in the Transport service on a Mailbox server before it can be routed and delivered. After a message has been categorized, it’s put in a delivery queue for delivery to the destination mailbox database, the destination database availability group (DAG), Active Directory site, or Active Directory forest, or to the destination domain outside the organization.
The Transport service on a Mailbox server consists of the following components and processes:
SMTP Receive When messages are received by the Transport service, message content inspection is performed, transport rules are applied, and anti-spam and anti-malware inspection is performed if they are enabled. The SMTP session has a series of events that work together in a specific order to validate the contents of a message before it’s accepted. After a message has passed completely through SMTP Receive and isn’t rejected by receive events, or by an anti-spam and anti-malware agent, it’s put in the Submission queue.
Submission Submission is the process of putting messages into the Submission queue. The categorizer picks up one message at a time for categorization. Submission happens in three ways:
Through an SMTP Receive connector.
Through the Pickup directory or the Replay directory. These directories exist on the Mailbox server. Correctly formatted message files that are copied into the Pickup directory or the Replay directory are put directly into the Submission queue.
Through a transport agent.
Categorizer The categorizer picks up one message at a time from the Submission queue. The categorizer completes the following steps:
Recipient resolution, which includes top-level addressing, expansion, and bifurcation.
Routing resolution.
Content conversion.
Additionally, mail flow rules that are defined by the organization are applied. After messages have been categorized, they’re put into a delivery queue that’s based on the destination of the message. Messages are queued by the destination mailbox database, DAG, Active Directory site, Active Directory forest or external domain.
SMTP Send How messages are routed from the Transport service depends on the location of the message recipients relative to the Mailbox server where categorization occurred. The message could be routed to the Mailbox Transport service on the same Mailbox server, the Mailbox Transport service on a different Mailbox server that’s part of the same DAG, the Transport service on a Mailbox server in a different DAG, Active Directory site, or Active Directory forest, or to the Front End Transport service on a Client Access server for delivery to the Internet.
Retry a Message Queue
When a transport server can’t connect to the next hop, the delivery queue is put in a status of Retry. When you retry a delivery queue by using Queue Viewer or the Shell, you force an immediate connection attempt and override the next scheduled retry time. If the connection isn’t successful, the retry interval timer is reset. The delivery queue must be in a status of
Retry for this action to have any effect.
Use Queue Viewer in the Exchange Toolbox to retry a queue Click Start > All Programs > Microsoft Exchange 2013 > Exchange Toolbox.
In the Mail flow tools section, double-click Queue Viewer to open the tool in a new window. In Queue Viewer, click the Queues tab. A list of all queues on the server to which you’re connected is displayed.
Click Create Filter, and enter your filter expression as follows:
Select Status from the queue property drop-down list.
Select Equals from the comparison operator drop-down list.
Select Retry from the value drop-down list.
Click Apply Filter. All queues that currently have a Retry status are displayed. Select one or more queues from the list. Right-click, and then select Retry Queue. If the connection attempt is successful, the queue status changes to Active. If no connection can be made, the queue remains in a status of Retry and the next retry time is updated.
Resubmit messages in queues
Resubmitting a queue is similar to retrying a queue, except the messages are sent back to the Submission queue for the categorizer to reprocess. You can resubmit messages that have the following status:
Delivery queues that have the status of Retry. The messages in the queues can’t be in the Suspended state.
Messages in the Unreachable queue that aren’t in the Suspended state.
Messages in the poison message queue.
OWA DRAFTS FOLDER
http://thoughtsofanidlemind.wordpress.com/2013/03/25/exchange-2013-dns-stuck-messages/ OWA clients automatically capture copies of messages as they are being composed and store them in the Drafts folder. When the user issues a sent command, the Mailbox submit agent (running within the Store driver) takes over and processes the outbound message by giving it to either the Transport service running on the same mailbox server or to the Transport server running on another mailbox server. The connection is made via SMTP.
Messages stay in the Drafts folder until they are successfully sent by being processed by the transport service.
At this point, items are moved into the Sent Items folder. OWA 2013 behaves in the same way as OWA 2010 -nothing has changed in the way that messages are held in the Drafts folder until dispatch. What might account for user descriptions of items being “stuck” is when a problem occurs somewhere in the transport pipeline that prevents outbound messages being processed. For instance, items will remain in the Drafts folder if the Store cannot pass them to the transport system. If the transport service is not running on any available server or the mailbox transport service is not running on the mailbox server that hosts the active database for the user’s mailbox, items will stay in the Drafts folder until the services come online and Exchange is able to process outbound items.
NOT A C
Active copy of a database named Database1 (EX1) not on EX2 NOT D
Messages stay in the Drafts folder until they are successfully sent by being processed by the transport service
B
Resubmitting a queue is similar to retrying a queue, except the messages are sent back to the Submission queue for the categorizer to reprocess.
Messages stay in the Drafts folder until they are successfully sent by being processed by the transport service If the transport service is not running on any available server or the mailbox transport service is not running on the mailbox server that hosts the active database for the user’s mailbox, items will stay in the Drafts folder until the services come online and Exchange is able to process outbound items.

QUESTION 5
Hotspot Question
You have an Exchange Server 2013 organization that contains three servers. The servers are configured as shown in the following table.

clip_image001[14]
All of the servers are part of a database availability group (DAG) named DAG1. The databases are configured as shown in the following table.

clip_image001[16]
All of the databases replicate between all the members of DAG1. You plan to move all mailboxes from DB1 to DB2. You need to ensure that the passive copies of DB1 are in a healthy state before you move the mailboxes. Which command should you run? (To answer, select the appropriate options in the dialog box in the answer area.)

clip_image002[8]

clip_image002[10]
Answer:

clip_image002[12]
Explanation:
SECTION1
NOT Set-MailboxServer
Use the Set-MailboxServer cmdlet to modify attributes on a computer running Microsoft Exchange with the
Mailbox server role installed.
Not required in this scenario.
Set-MailboxDatabase
Use the Set-MailboxDatabase cmdlet to configure a variety of properties for a mailbox database.
EXAMPLE 1
This example sets the length of time that deleted items are retained. If a specific mailbox has its own item retention set, that value is used instead of this value, which is set on the mailbox database. Set-MailboxDatabase “Mailbox Database01” -DeletedItemRetention 7.00:00:00 NOT Set-MailboxDatabaseCopy
Use the Set-MailboxDatabaseCopy cmdlet to configure the properties of a database copy.
EXAMPLE 1
This example configures the replay lag time with a value of 3 days for a copy of the database DB2 hosted on the Mailbox server MBX1.
Set-MailboxDatabaseCopy -Identity DB2\MBX1 -ReplayLagTime 3.0:0:0 EXAMPLE 2
This example configures an activation preference of 3 for the copy of the database DB1 hosted on the Mailbox server MBX2.
Set-MailboxDatabaseCopy -Identity DB1\MBX2 -ActivationPreference 3 NOT Set-DatabaseAvailabilityGroup
Use the Set-DatabaseAvailabilityGroup cmdlet to configure some of the properties of a database availability group (DAG). The Set-DatabaseAvailabilityGroup cmdlet enables you to manage DAG properties that can’t be managed from the Exchange Management Console, such as enabling and disabling cross-site RPC client access, configuring network discovery, selecting the TCP port used for replication, and enabling datacenter activation coordination (DAC) mode.
SECTION2
Need to identify the name of the mailbox database. (DB1) SECTION3
The DataMoveReplicationConstraint parameter specifies the throttling behavior for high availability mailbox moves. The possible values include:
None Moves shouldn’t be throttled to ensure high availability. Use this setting if the database isn’t part of a database availability group (DAG).
SecondCopy At least one passive mailbox database copy must have the most recent changes synchronized.
This is the default value. Use this setting to indicate that the database is replicated to one or more mailbox database copies.
SecondDatacenter At least one passive mailbox database copy in another Active Directory site must have the most recent changes replicated. Use this setting to indicate that the database is replicated to database copies in multiple Active Directory sites. AllDatacenters At least one passive mailbox database copy in each Active Directory site must have the most recent changes replicated. Use this setting to indicate that the database is replicated to database copies in multiple Active Directory sites.
AllCopies All copies of the database must have the most recent changes replicated. Use this setting to indicate that the database is replicated to one or more mailbox database copies. The database is replicated to database copies in multiple Active Directory sites so eliminate SecondCopy.
Unsure of why -AllDatacenters is the final choice but there are 3 Active Directory sites in this scenario.

QUESTION 6
Drag and Drop Question
Your network contains an internal network and a perimeter network. You have an Exchange Server 2010 organization that contains an Edge Transport server named EX3. You plan to upgrade the organization to Exchange Server 2013. You plan to replace EX3 and its functionalities with a new server named EX6 that has Exchange Server 2013 installed. EX6 will be used to send all email messages to and receive all email messages from the Internet and to filter spam. You need to recommend which steps are required to install EX6. EX6 must have the least number of Exchange Server roles installed. Which three actions should you recommend performing on EX6 in sequence?
(To answer, move the appropriate three actions from the list of actions to the answer area and arrange them in the correct order.)

clip_image002[14]
Answer:

clip_image002[16]
Explanation:
Run the following command to install the Anti-Spame Agents &
$env:ExchangeInstallPath\Scripts\Install-AntiSpamAgents.ps1
Run the Restart-Service
MSExchange Transport command
Need to run this command
Once the Install-AntiSpamAgents.ps1 script has run, if the anti-spam agents were successfully installed then exchange will ask you to restart the Microsoft Exchange Transport service. Use the Restart-Service MSExchange Transport command to do this.
Run the Update-MalwareFilteringServer.ps1 script.
Malware not mentioned in this scenario. No need to run. In order to retrieve a Microsoft engine update when you did not enable the antimalware feature on install or had it enabled but subsequently disabled it via the “Disable-AntimalwareScanning.ps1” script you will need to execute the script below which will initiate a Microsoft engine update:
Update-MalwareFilteringServer.ps1 -identity %ServerName% Answer Options
Install the Client Access server role or the Mailbox server role first EX6 will be used to send all email messages to and receive all email messages from the Internet and to filter spam.
An organization must have at least one Mailbox role and at least one Client Access server role installed.
CAS Exchange role does 3 things and only those things:
1. The CAS authenticates the connection made by the user so that it can determine who is trying to connect.
2. Once authenticated it will locate the user’s mailbox and find out on which mailbox server that mailbox is currently active
3. It then proxies the connection from that user to his or hers mailbox on the mailbox server and maintains that connection or redirects it to the appropriate CAS server.
http://technet.microsoft.com/en-us/library/bb124778(v=exchg.150).aspx
Each organization requires at a minimum one Client Access server and one Mailbox server in the Active Directory forest. Additionally, each Active Directory site that contains a Mailbox server must also contain at least one Client Access server.
If you’re separating your server roles, we recommend installing the Mailbox server role first. In the context of the question given that we have only 3 choices and the anti-spam installation will take up 2 of these choices , the Client Access Server is the server that sends all messages to and from the internet, therefore we need to install a Client Access server Then Install-AntiSpamAgents.ps1 as the anti-spam agents are required in this scenario Then run the Restart-Service MSExchange Transport command as required after the install-AntiSpamAgents.ps1 has been run

clip_image001[18]
Case Study 1: Contoso Ltd (QUESTION 7 ~ QUESTION 13)
Overview
General Overview
Contoso, Ltd., is a scientific research and supply company that has offices along the east coast of North America. The company recently completed an upgrade to Exchange Server 2013.
Physical Locations
The company has three sales offices and a research office. The sales offices are located in Atlanta, New York, and Montreal. The research office is located in Miami.
Existing Environment
Active Directory Environment
The network contains one Active Directory forest named contoso.com. The Miami office has its own domain named research.contoso.com. Each office is configured as an Active Directory site. Each site contains two domain controllers that run Windows Server 2008 R2 x64. All of the FSMO roles for contoso.com are owned by a domain controller in the New York site. All of the FSMO roles for the research.contoso.com domain are owned by a domain controller in the Miami site. One domain controller in each site is configured as a global catalog server. All of the domain controllers are configured as DNS servers. The functional level of the forest and domains is Windows Server 2008 R2.
Network Infrastructure
All client computers are configured to connect to the DNS servers in their respective office only. Contoso.com has a standalone certification authority (CA) on a server that runs Windows Server 2008 R2. All offices connect to the New York office by using a high-speed WAN link.
Email Infrastructure
The Exchange Server 2013 organization contains four servers in the New York office. The servers are configured as shown in the following table.

clip_image001[20]
All external access for the contoso.com organization is provided through an Internet link at the New York office. Load balancing is provided by using DNS round robin. All inbound and outbound email for the domain is routed through a mail appliance in the New York office.
The Exchange Server 2013 organization contains four servers in the Atlanta office. The servers are configured as shown in the following table.

clip_image001[22]
The file share witness for NY-DAG is on a file server in the Atlanta office. The Exchange Server 2013 organization contains two servers in the Montreal office and two servers in the Miami office. The servers are configured as shown the following table.

clip_image001[24]
All external access to the organization of the research.contoso.com domain is provided through the Internet link at the Miami office. Load balancing is provided by using DNS round robin. All inbound and outbound email for the domain goes through an email appliance in the Miami office. All Exchange Server 2013 servers run Windows Server 2012 Standard. All users have Windows Phone devices that connect to the Exchange organization by using Exchange ActiveSync.
User Issues
You discover the following user issues:
– Some users report that, intermittently, they fail to connect to their email from their Windows Phone device.
– Some users from the New York office report that some searches from Outlook Web App return incomplete results.
– Some of the users in each office report that they fail to access their mailbox during the maintenance period of the Active Directory domain controllers.
You verify that all of the remote users can connect to the network successfully by using a VPN connection, and can then launch Outlook successfully.
Partnerships
Contoso recently entered into a partnership with a company named A. Datum Corporation. A. Datum has a main office and four branch offices. The main office is located in Toronto. A. Datum has a messaging infrastructure configured as shown in the following table.

clip_image001[26]
Requirements
Planned Changes
Contoso plans to deploy a hardware load balancer in the New York office. The load balancer must bridge all SSL connections to the Exchange servers. You plan to deploy two new Exchange Server 2013 servers in a virtual server environment in the Miami office. The servers will host a few mailboxes as part of an evaluation of resource utilization for virtualized Exchange servers. You also plan to deploy a high availability solution for Mailbox servers in the You plan to replace the email appliance in New York because of recent power outages.
Business Requirements
Contoso identifies the following business requirements:
– Minimize the hardware costs required for a load balancing solution.
– Minimize the software costs required for a load balancing solution.
– Minimize user interruptions if a service fails on a Mailbox server.
– Minimize user interruptions if a service fails on a Client Access server.

QUESTION 7
You need to identify which business requirement will be met by implementing the planned hardware load balancer. Which business requirement should you identify?

A.    Minimize the hardware costs required for a load balancing solution.
B.    Minimize the software costs required for a load balancing solution.
C.    Minimize user interruptions if a service fails on a Client Access server.
D.    Minimize user interruptions if a service fails on a Mailbox server.

Answer: C
Explanation:
NOT A
Introducing a load balancing solution will not minimize hardware costs
NOT B
Introducing a hardware load balancing solution will not minimize software costs
NOT D
A hardware load balancer connects to the Client Access servers not the Mailbox servers.
C
A hardware load balancer connects to the Client Access servers not the Mailbox servers AND is designed to minimize user interruptions

QUESTION 8
You need to resolve the search issue reported by the users in the New York office. You restart the Microsoft Exchange Search service and discover that the active copy of the mailbox database has a content indexing status of Unknown. What should you do next?

A.    Rebuild the content index.
B.    Run the Update-MailboxDatabaseCopy cmdlet and specify the -manualresume parameter.
C.    Restart the Microsoft Exchange Mailbox Replication service.
D.    Run the Update-MailboxDatabaseCopy cmdlet and specify the -catalogonly parameter.

Answer: A
Explanation:
A
One of the first actions most Exchange Administrators generally take when troubleshooting suspected problems with Exchange Content Indexing will be to rebuild the impacted Mailbox Database’s content index files (either manually or by using the ResetSearchIndex.ps1 script found in the \Exchange Server\Scripts directory).
Makes sure that Exchange content index always remain healthy.
NOT B
Not a database replication issue
If the content index catalog for a mailbox database copy gets corrupted, you may need to reseed the catalog.
Seeding is also known as updating.
Use the Update-MailboxDatabaseCopy cmdlet to seed or reseed a mailbox database copy.
EXAMPLE 1
This example seeds a copy of the database DB1 on the Mailbox server MBX1.
Update-MailboxDatabaseCopy -Identity DB1\MBX1
The ManualResume switch specifies whether to automatically resume replication on the database copy. With this parameter, you can manually resume replication to the database copy.
NOT C
Not related to an indexing issue.
In Exchange 2013, the Microsoft Exchange Replication service periodically monitors the health of all mounted databases. In addition, it also monitors the Extensible Storage Engine (ESE) for any I/O errors or failures. When the service detects a failure, it notifies Active Manager. Active Manager then determines which database copy should be mounted and what it requires to mount that database. In addition, it tracks the active copy of a mailbox database (based on the last mounted copy of the database) and provides the tracking results information to the Client Access server to which the client is connected.
NOT D
Content index needs to be rebuilt
If the content index catalog for a mailbox database copy gets corrupted, you may need to reseed the catalog.
Seeding is also known as updating.
Use the Update-MailboxDatabaseCopy cmdlet to seed or reseed a mailbox database copy.
EXAMPLE 1
This example seeds a copy of the database DB1 on the Mailbox server MBX1.
Update-MailboxDatabaseCopy -Identity DB1\MBX1
The CatalogOnly parameter specifies that only the content index catalog for the database copy should be seeded.

QUESTION 9
You need to ensure that all of the email messages sent from the Internet to adatum.com are routed through the contoso.com organization. What should you create in contoso.com? (Each corrects answer presents part of the solution. Choose all that apply.)

A.    a contact object for each adatum.com recipient
B.    an internal relay accepted domain for adatum.com
C.    a Send connector that is configured to point to the contoso.com transport servers
D.    a Send connector that is configured to point to the adatum.com transport servers
E.    an authoritative accepted domain for adatum.com

Answer: BD
Explanation:
B
An accepted domain is any SMTP namespace for which a Microsoft Exchange Server 2013 organization sends or receives email.
Accepted domains include those domains for which the Exchange organization is authoritative. An Exchange organization is authoritative when it handles mail delivery for recipients in the accepted domain.
Accepted domains also include domains for which the Exchange organization receives mail and then relays it to an email server that’s outside the organization for delivery to the recipient.
D
2nd part of establishing an internal relay domain is to establish a Send Connector that is configured to point to the other organization’s mail servers (a datum)
NOT A
Better to establish an internal relay domain.
A mail-enabled Active Directory contact that contains information about people or organizations that exist outside the Exchange organization. Each mail contact has an external email address. All messages sent to the mail contact are routed to this external email address.
NOT C
Need to establish a Send connector to  adatum.com  not  contoso.com
NOT E
Need to establish an internal relay domain not an authorative accepted domain for adatum.com

QUESTION 10
You need to prevent several users in the Miami office from establishing more than two concurrent Exchange ActiveSync connections to the Exchange Server organization. The solution must affect only the users in the Miami office. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

A.    Create a new throttling policy that has the Organization scope.
B.    Create a new throttling policy that has the Global scope.
C.    Create a new throttling policy that has the Regular scope.
D.    Run the Set-ThrottlingPolicyAssociation cmdlet.
E.    Run the Set-ThrottlingPolicy cmdlet.
F.    Remove the default throttling policy.

Answer: CD
Explanation:
C
Need to establish a New Throttling policy to limit the Exchange ActiveSync connections and that has a regular scope to associate with specific users.
D
Use the Set-ThrottlingPolicyAssociation cmdlet to associate a throttling policy with a specific object. The object can be a user with a mailbox, a user without a mailbox, a contact, or a computer account.
EXAMPLE 1
This example associates a user with a user name of tonysmith to the throttling policy ITStaffPolicy that has higher limits.
Set-ThrottlingPolicyAssociation -Identity tonysmith -ThrottlingPolicy ITStaffPolicy
NOT A
Need a regular scope
NOT B
Need a regular scope
NOT E
Need to associate the new thottling policy with respective users.
Use the Set-ThrottlingPolicy cmdlet to modify the settings for a user throttling policy.
EXAMPLE 1
This example modifies a throttling policy so that users associated with this policy can have a maximum of four concurrent requests running in Exchange Web Services.
$a = Get-ThrottlingPolicy RemoteSiteUserPolicy
$a | Set-ThrottlingPolicy -EwsMaxConcurrency 4
NOT F
Need to create a new throttling policy

If you want to pass the Microsoft 70-341 Exam sucessfully, recommend to read latest Microsoft 70-341 Dump full version.

Official 2014 Latest Free Microsoft 70-247 Dump Download(91-95)!

QUESTION 91
Your company has a datacenter in Los Angeles that contains a private cloud. The private cloud is managed by using a System Center 2012 Operations Manager infrastructure. You plan to create a distributed application named Appl. You need to ensure that a folder for App1 is available from the Monitoring workspace in the Operations Manager console. What should you do?

A.    Run the Protect-SCOMManagementPack cmdlet.
B.    Save App1 in the Default Management Pack.
C.    Run the Import-SCOMManagementPack cmdlet.
D.    Save App1 as a new management pack.

Answer: D

QUESTION 92
Your company has a private cloud that is managed by using a System Center 2012 infrastructure. An administrator installs a new tape drive on a server that has Data Protection Manager (DPM) installed. You discover that the tape drive is unavailable from the DPM Administrator console. You verify that the tape drive is installed correctly on the DPM server. You need to ensure that the tape drive is available from the DPM Administrator console. What should you do from the DPM Administrator console?

A.    From the Agents view, click Install.
B.    From the Disks tab, click Add.
C.    From the Protection view, click Tape.
D.    From the Libraries view, click Rescan.

Answer: D

QUESTION 93
Your company has a private cloud that is managed by using a System Center 2012 infrastructure. The infrastructure contains multiple servers that have Data Protection Manager (DPM) installed. A DPM server named Server1 is running out of hard disk space. You add additional physical hard disks to Server1. You verify that the additional disks are available from the local Disk Management console. You need to ensure that the additional disk space can be used to store DPM backups. What should you do?

A.    From the DPM Administrator console, click Refresh.
B.    From the DPM Administrator console, click Disk Allocation.
C.    From the DPM Administrator console, click Add.
D.    From the DPM Administrator console, click Rescan.

Answer: C

QUESTION 94
Your company has a private cloud that is managed by using a System Center 2012 infrastructure. You have a web application named WebApp1 that is hosted in another datacenter. The datacenter is not part of the private cloud. You need to ensure that Service Manager incidents are generated automatically when WebApp1 is unavailable. What should you create?

A.    a Service Level Tracking object
B.    an event rule
C.    a synthetic transaction
D.    a service offering

Answer: C

QUESTION 95
Your company has a private cloud that is managed by using a System Center 2012 infrastructure. The network contains 50 virtual machines that run Windows 7. Each virtual machine has an application named Appl.exe installed. A new version of Appl.exe is released. You need to identify which virtual machines have the outdated version of App1.exe installed. What should you do?

A.    From Operations Manager, create a monitor.
B.    From Configuration Manager, deploy a Desired Configuration Management baseline.
C.    From Service Manager, create a Virtual Machine Manager (VMM) connector.
D.    From Virtual Machine Manager (VMM), deploy a service template.

Answer: B

If you want to pass the Microsoft 70-247 Exam sucessfully, recommend to read latest Microsoft 70-247 Dump full version.

Official 2014 Latest Free Microsoft 70-247 Dump Download(81-90)!

QUESTION 81
Your company has a datacenter in Seattle.
The datacenter contains a private cloud that is managed by a server named VMM1. VMM1 has System Center 2012 Virtual Machine Manager (VMM) installed.
You add three Hyper-V hosts named Host1, Host2, and Host3 to the server fabric. The hosts are connected to a SAN named STORAGE1 by using Fiber Channel connections.
You need to optimize access to the LUNs in STORAGE1 from the hosts.
What should you do first?

A.    Install the Multipath I/O (MPIO) feature on VMM1.
B.    Configure the hosts to connect to STORAGE1 by using an iSCSI channel.
C.    Install the Multipath I/O (MPIO) feature on the hosts.
D.    Configure VMM1 to connect to STORAGE1 by using an iSCSI channel.

Answer: C

QUESTION 82
You plan to deploy a System Center 2012 infrastructure.
You plan to create and deploy a service named Service1.
You need to recommend a solution to deploy Service1 to a private cloud and a Windows Azure subscription.
What should you include in the recommendation?

A.    System Center 2012 App Controller
B.    System Center 2012 Virtual Machine Manager (VMM)
C.    System Center 2012 Service Manager
D.    Virtual Machine Manager Self-Service Portal (VMMSSP) 2.0

Answer: A

QUESTION 83
Your company has a private cloud that is managed by a System Center Service Manager 2010 Service Pack 1 (SP1) infrastructure. The infrastructure contains four servers as shown in the following table.

clip_image001
You upgrade MGT1 and DATA1 to Service Manager 2012.
You need to ensure that DATA1 can continue to deploy reports to SSRS1.
Which two tasks should you perform? (Each correct answer presents part of the solution.
Choose two.)

A.    Copy the Microsoft.EnterpriseManagement.Reporting.Code.dll file to SSRS1.
B.    Modify the RSReportServer.config file on MGT1.
C.    Modify the RSReportServer.config file on SSRS1.
D.    Modify the RSSrvPolicy.config file on DATA1.
E.    Modify the RSSrvPolicy.config file on SQL1.
F.    Copy the Microsoft.EnterpriseManagement.Reporting.Code.dll file to SQL1.

Answer: AC
Explanation:
Preparing the remote computer to host SSRS involves the following steps, which are covered in detail in this section:
* (A) Copy Microsoft.EnterpriseManagement.Reporting.Code.dll from the Service Manager installation media to the computer that is hosting SSRS.
* Add a code segment to the rssrvpolicy configuration file on the computer that is hosting SSRS.
* (C) Add an Extension tag to the existing Data segment in the rsreportserver configuration file on the same computer.
Reference: Manual Steps to Configure the Remote SQL Server Reporting Services
http://technet.microsoft.com/en-us/library/hh519664

QUESTION 84
Drag and Drop Question
Your network contains an Active Directory domain named adatum.com.
You plan to install System Center 2012 Virtual Machine Manager (VMM) on a server in the domain.
You create a failover cluster that contains two nodes named Node1 and Node2.
You configure an account named adatum\scvmm as the service account for VMM.
You start installing VMM 2012 on Node1.
You need to ensure that the encryption keys used by VMM are available on Node1 and Node2.
Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

clip_image002
Answer:

clip_image002[4]

QUESTION 85
Your company has a private cloud that contains a System Center 2012 Service Manager instance. Service Manager has the Self-Service Portal installed. You create a service offering that contains a single request offering. The service offering provides logged-on users with the ability to add their user account automatically to a group named ServiceGroup1. The company’s security policy requires that an administrator named Admin1 must approve all requests for group membership change. You need to configure the infrastructure to meet the requirements of the company’s security policy.
What should you modify?

A.    the service offering
B.    the service request template
C.    the request offering
D.    the Service Offering Category list

Answer: B

QUESTION 86
Your company has a private cloud that is managed by us.ng a System Center 2012 infrastructure. You have a web application named App1 that is hosted in another datacenter. The datacenter is not part of the private cloud. You need to ensure that Service Manager incidents are generated automatically when App1 is unavailable. What should you create?

A.    a Service Level Tracking object
B.    an event subscription
C.    a channel
D.    a synthetic transaction

Answer: D

QUESTION 87
Your company has a private cloud that is managed by using a System Center 2012 infrastructure. The network contains a Microsoft SharePoint Server 2010 server farm. The server farm is hosted on 20 virtual machines. You deploy a custom solution to the SharePoint server farm. The solution requires that a new Web.config file be deployed to all of the front-end servers. You need to identify which front-end servers have an outdated version of the Web.config file. What should you do?

A.    From Operations Manager, create a monitor.
B.    From Service Manager, create a Virtual Machine Manager (VMM) connector.
C.    From Virtual Machine Manager (VMM), deploy a service template.
D.    From Configuration Manager, deploy a Desired Configuration Management baseline.

Answer: D

QUESTION 88
Your company has a private cloud that contains a System Center 2012 Service Manager infrastructure. You need to create a service level objective (SLO) for incidents that have a priority value of 1. What should you create first?

A.    a service template
B.    a queue
C.    a channel
D.    a rule

Answer: B
QUESTION 89
Your company has a private cloud that is managed by using a System Center 2012 infrastructure. You discover that several users create incidents for the same issue by using the Self-Service Portal. Over 100 incidents are created. You need to ensure that all of the incidents can be resolved as quickly as possible. What should you do?

A.    create a service level objective (SLO).
B.    Create a queue.
C.    Select the Link to New Parent Incident task.
D.    Select the Escalate or Transfer the Incidents task.

Answer: C

QUESTION 90
Your company has a private cloud that is managed by using a System Center 2012 Operations Manager infra structure. You have a line-of-business web application named App1. App1 stores its information in a dedicated Microsoft SQL Server 2008 database. You need to create a central diagram that contains the complete health information of Appl. You import the SQL, IIS, and Windows Server management packs. What should you create next?

A.    a dashboard view
B.    a distributed application model
C.    a Service Level Dashboard
D.    a diagram view

Answer: C

If you want to pass the Microsoft 70-247 Exam sucessfully, recommend to read latest Microsoft 70-247 Dump full version.

Official 2014 Latest Free Microsoft 70-247 Dump Download(72-80)!

Case Study 4 – Litware Inc (Question 72 – Question 80)
Overview
Litware, Inc. is a pharmaceutical company.
Litware has an office in Montreal. Litware has a marketing department and a research department.
Existing Environment
Network Infrastructure
The network contains a single Active Directory domain named litwareinc.com. The domain contains 1,000 physical servers that run Windows Server 2008 R2.
All of the servers are located in a leased data center that has a high-bandwidth, low-latency network. The data center contains third-party iSCSI SAN storage devices that support an SMI-S
provider.
Application Infrastructure
Users in the research department use multiple instances of a three-tier application named Appl.
App1 consists of the components shown in the following table.

clip_image001The Web Server (IIS) server role, WMI providers, Windows services, Windows drivers, and web applications will be installed on the servers that host Tier 2.
Problem Statements
Litware identifies the following issues:
– The cost of leasing data center space is increasing steadily.
– The research department users report that it takes too long to provision new instances of Appl.
Requirements
Planned Changes
Litware plans to deploy 400 additional servers that will run Windows Server 2008 R2. The servers will be configured as shown in the following table.

clip_image001[4]
Litware also plans to deploy the following System Center 2012 components:
– Orchestrator
– App Controller
– Service Manager
– Operations Manager
– Data Protection Manager (DPM)
– Virtualization Machine Manager (VMM)
Litware plans to provide the research department users with the ability to deploy instances of Appl.
Private Cloud Infrastructure Requirements
Litware identifies the following requirements for the planned private cloud infrastructure:
– VMM must be available if a server or a service fails.
– Virtual machines must be provisioning by using SAN copy cloning.
– The implementation of App Controller must support single sign-on.
– The implementation of Service Manager must support French and English.
– The implementation of VMM must support the provisioning of virtual machines by using SAN copy.
– Virtual machines hosted on Hyper-V failover clusters must remain available during the installation of Windows updates.
– Physical servers that have workloads that are suitable for a virtualized environment must be virtualized. Performance data must be taken into account when identifying which servers must
be virtualized.
Private Cloud Integration Requirements
Litware identifies the following requirements for integrating the System Center 2012 components:
– Incidents in Service Manager must be resolved automatically, whenever possible.
– Alerts generated by Operations Manager must trigger incidents in Service Manager.
– Operations Manager alerts triggered by VMM events must be remediated automatically, whenever possible.
– All of the Orchestrator components responsible for executing the activities of Service Manager workflows must be highly available.
Private Cloud Services Requirements
Litware identifies the following requirements for managing services in the private cloud:
App1 must be deployed by using a VMM service template.
– The Tier 2 of App1 must be deployed as a highly available virtual machine.
– The research department users must use App Controller to deploy virtual machines and services.
– The virtual machines deployed by the research department users must be hosted on servers in the research department.
– The virtual machines in Tier 1 of App1 must be configured as cluster nodes by using the Network Load Balancing (NLB) feature.
– A web application named WA1 in Tier 2 of App1 must use a connection string that points to a Microsoft SQL Server database in Tier 3 of App1.
– The software components included in Tier 2 of App1 must be deployed as Microsoft Server Application Visualization (Server App-V) packages, whenever possible.

QUESTION 72
You need to recommend a solution to configure the SQL Server connection strings of WA1. The solution must meet the requirements for managing services in the private cloud. What should you recommend? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Configure the Custom Properties of the App1 service template.
B.    Create multiple application profiles.
C.    Configure the Service Settings of the App1 service template.
D.    Create multiple App1 service templates.

Answer: B

QUESTION 73
You need to identify which component or components of Tier 2 of App1 can be deployed by using Server App-V. Which component or components should you identify? (Each correct answer presents part of the solution. Choose all that apply.)

A.    The Web Server (IIS) server role
B.    Web applications
C.    Windows services
D.    WMI providers
E.    Drivers

Answer: ABC
Explanation:
* From scenario:
The Web Server (IIS) server role, WMI providers, Windows services, Windows drivers, and web applications will be installed on the servers that host Tier 2.
* Not all applications are supported for use with Server App-V. Applications such as antivirus software that require device or kernel driver support are not supported. Server App-V is primarily designed for use with business applications or the business tiers of multi- tiered applications. Consequently some large server applications such as Microsoft Exchange Server, Microsoft SQL Server, and Microsoft SharePoint are not supported.
* While there is no list of supported applications for use with Server App-V, Server App-V
has been optimized to create virtual application packages for applications with the following attributes:
/ State persisted to local disk
/ (C) Microsoft Windows Services
/ (A) Internet Information Services (IIS)
/Registry
/ COM+ / DCOM
/Text-based Configuration Files
/WMI Providers
/Microsoft SQL Server Reporting Services
/Local Users and Groups
/Scheduled Tasks
/Microsoft SQL Server Databases

QUESTION 74
You need to recommend a solution to identify which servers should be virtualized. What should you include in the recommendation? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Microsoft Assessment and Planning (MAP) Toolkit
B.    Configuration Manager P2V Migration Toolkit
C.    Microsoft System Center Advisor (SCA)
D.    Windows Assessment and Deployment Kit (Windows ADK)

Answer: A

QUESTION 75
You need to recommend a configuration for the SQL Server instance that will host the Service Manager database. The solution must meet the requirements for the planned private cloud infrastructure. What should you include in the recommendation?

A.    Disable full-text search.
B.    Install the SQL Server Integration Services (SSIS).
C.    Enable case sensitivity.
D.    Change the default collation.

Answer: D

QUESTION 76
You need to recommend a patching solution for the VMM infrastructure. The solution must meet the requirements for the planned private cloud infrastructure. What should you recommend? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Cluster-Aware Updating (CAU)
B.    An Orchestrator runbook
C.    VMM update remediation
D.    A Service Manager workflow

Answer: C

QUESTION 77
You need to recommend the method for installing VMM. The solution must meet the requirements for the planned private cloud infrastructure. What should you recommend?
Case Study Title (Case Study):

A.    Install VMM as a clustered service on a Hyper-V failover cluster.
B.    Install VMM as a highly available virtual machine on a Hyper-V failover cluster.
C.    Implement a Hyper-V NLB cluster and install an instance of VMM on each cluster.
D.    Implement two non-clustered Hyper-V hosts and install an instance of VMM on a virtual machine on
each Hyper-V host.

Answer: A

QUESTION 78
You need to recommend a solution to control the provisioning of the virtual machines by the research department users. The solution must meet the requirements for managing services in the private cloud. What should you include in the recommendation? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    VMM placement rules and capability profiles
B.    VMM placement rules and Service Manager service offerings
C.    A separate VMM cloud for the research department users
D.    VMM custom properties and Orchestrator runbooks

Answer: C

QUESTION 79
You need to recommend a configuration for the App Controller portal. The solution must meet the requirements for the planned private cloud infrastructure. What should you include in the recommendation?

A.    Configure constrained delegation for the VMM computer account.
B.    Create an App Controller user role.
C.    Configure constrained delegation for the App Controller computer account.
D.    Create an App Controller subscription.

Answer: C

QUESTION 80
You need to recommend a configuration for the VMM network fabric. The solution must meet the requirements for managing services in the private cloud. What should you include in the recommendation?

A.    Create a hardware load balancer.
B.    Create a virtual IP (VIP) template.
C.    Disable the Logical network matching setting.
D.    Disable the Automatic creation of virtual networks setting.

Answer: C

Official 2014 Latest Free Microsoft 70-247 Dump Download(61-71)!

QUESTION 61
You need to recommend changes to Server9 before you upgrade to VMM 2012.
What should you include in the recommendation?

A.    Upgrade Server9 to Windows Server 2012.
B.    Install the Windows Assessment and Deployment Kit (Windows ADK).
C.    Install Microsoft .NET Framework 4.
D.    Install SQL Server 2008 R2 Service Pack 1 (SP1) Standard on Server9.

Answer: D

Case Study 3 – Proseware Inc (Question 62 – Question 71)
Scenario
Proseware, Inc. is an international publishing company.
Proseware has four data centers and 80 offices. The data centers are located in Dallas, Dublin, Bangalore, and Sydney. The offices are located worldwide.
Existing Environment
Network Infrastructure
The network contains a single-domain Active Directory forest named proseware.com.
Each server has a Baseboard Management Controller (BMC) installed.
Database administrators in the Bangalore data center manage all of the SQL Server servers in the data centers.
Dublin Data Center
The Dublin data center contains two servers. The servers are configured as shown in the following table.

clip_image001
Operations Manager 2007 R2 agents are installed on all of the servers in the Dublin data center by using the push installation method.
App1
Proseware uses a critical business application named Appl. Multiple instances of App1 are deployed to each data center. Each instance of App1 consists of the following physical servers
that run Windows Server 2012:
– A database server that runs SQL Server 2008 R2
– Two web servers that are load balanced by using the Network Load Balancing (NLB) feature.
– Each web server has a single network adapter.
New versions of App1 are released at least four times a year. When a new version of App1 is released, all of the servers in App1 must be redeployed.
Requirements
Planned Changes
Proseware plans to deploy all System Center 2012 components.
Proseware plans to implement the following changes in each data center:
– Deploy a SQL Server 2008 R2 Enterprise failover cluster.
– Store all virtual machine data in a Fibre Channel SAN infrastructure.
– Deploy a highly available Virtual Machine Manager (VMM) environment.
– Deploy one physical server that has Data Protection Manager (DPM) deployed.
Technical Requirements
Proseware identifies the following technical requirements for the implementation of a private cloud:
– All Hyper-V hosts must be added to a failover cluster automatically.
– The deployment of Hyper-V hosts to each data center must be automated.
The implementation of the DPM infrastructure must meet the following requirements:
– Backups will be stored on an iSCSI SAN.
– Virtual machines in a running state must be backed up from their respective host.
– Administrators must be able to restore individual files from host backups on virtual machines configured as file servers.
The implementation of the Operations Manager 2012 infrastructure must meet the following requirements:
– Operations Manager monitoring must not be affected if a single server fails.
– Existing data must be retained in the Operations Manager 2012 infrastructure.
– Existing agents must continue to report to Operations Manager during the upgrade process.
– All Operations Manager agents must report to a local management server in their respective data center.
– The service desk in the Dublin data center must be able to view the status of the servers in all of the data centers.
Administrative Requirements
Proseware identifies the following administrative requirements:
– An administrator must be notified when an error occurs on a server.
– An administrator must be able to assign errors to specific administrators for resolution.
Errors that remain unresolved for more than 10 hours must be escalated automatically to another administrator.
Planned Virtual Machines
The servers in each instance of App1 will be replaced with a set of virtual machines. The planned changes must meet the following requirements:
– Each instance must be redeployed when a new version of App1 is released.
– Each instance of App1 must be installed by using the minimum amount of administrative effort.
App2
An application named App2 is hosted on the virtual machines in a Windows Azure public cloud infrastructure.
The performance and availability of the components of App2 must be monitored centrally.
Administrators must be able to modify the configurations of the App2 components.
App3
A service template will be used to deploy multiple instances of a multi-tier application named App3. The vendor of App3 will provide updates to App3 every two months.
SQL Server Deployment Requirements
VMM administrators plan to deploy many virtual machines that have SQL Server deployed. The administrators identify the following deployment options for the virtual machines:
– The virtual machines will host databases that will be created by using data-tier application (DAC) packages.
– The virtual machines will have SQL Server 2008 R2 Standard deployed by using one of six different configurations.
– The operating system for the virtual machines will be either Windows Server 2008 R2 Enterprise or Windows Server 2008 R2 Standard.

QUESTION 62
You need to recommend a solution to install updates for App3 once App3 is deployed.
What should you recommend? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Sequence the new components of App3 as a Microsoft Application Virtualization (App-V) package.
Deploy the App-V package to all of the servers that run App3.
B.    Create a collection that contains all of the servers that run App3.
Create an application to deploy the updates for App3.
Deploy the application to the collection.
C.    Create a new version of the existing service template, and then modify the new service template.
Apply the template to the existing instances of App3.
D.    Create a runbook to deploy the updates to App3.
Launch the runbook from a service request.

Answer: A

QUESTION 63
You need to recommend which network configuration or configurations are required for the virtual web servers for each instance of App1. Which configuration or configurations should you recommend? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Dynamic IP
B.    Enable spoofing of MAC addresses
C.    Dynamic MAC Address
D.    Static IP
E.    Static MAC Address

Answer: ACE
Explanation:
A: From scenario:
* Each instance of App1 must be installed by using the minimum amount of administrative effort.
C:
VMM 2012 ships with two default MAC address pools From scenario:
Each instance of App1 must be installed by using the minimum amount of administrative effort.

QUESTION 64
You need to recommend a design for the Operations Manager 2012 infrastructure. What should you include in the recommendation? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    in the Dublin data center, one local management group that contains two management servers
In each of the data centers in Dublin, Bangalore, Dallas, and Sydney, one remote management
group that contains two management servers
B.    one management group that contains all of the management servers
one resource pool that contains all of the management servers
C.    In the Dublin data center, one connected management group that contains two management servers
In each of the data centers in Bangalore, Dallas, and Sydney, one local management group that
contains two management servers
D.    In the Dublin data center, one local management group that contains two management servers
In each of the data centers in Bangalore, Dallas, and Sydney, one connected management group
that contains two management servers

Answer: D

QUESTION 65
You need to recommend a solution to ensure that the database administrators can install, stop, start, and remotely control all of the virtual machines that run SQL Server from a single self service console. What should you include in the recommendation?

A.    Virtual Machine Manager Self-Service Portal (VMMSSP) 2.0
B.    Service Manager Self-Service Portal
C.    System Center 2012 App Controller
D.    Virtual Machine Manager Self-Service Portal (VMMSSP)

Answer: C

QUESTION 66
You need to configure connectors between the System Center 2012 components to meet the administrative requirements. Between which System Center 2012 components should you configure the connectors?

A.    Operations Manager and Orchestrator
B.    Service Manager and VMM
C.    Operations Manager and Service Manager
D.    Configuration Manager and Service Manager

Answer: C

QUESTION 67
You need to recommend a solution to deploy a complete instance of App1 when a new version of App1 is released. What should you include in the recommendation?

A.    A service template
B.    A virtual machine template
C.    A web deployment package
D.    A Microsoft Application Virtualization (App-V) package

Answer: B

QUESTION 68
You need to implement the planned deployment of a VMM management server in each data center. Where should you deploy each VMM management server? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    On the servers in the two-node NLB cluster
B.    On the servers in the two-node failover cluster
C.    On two independent servers that connect to a hardware load balancer
D.    On a highly available virtual machine

Answer: B

QUESTION 69
You need to recommend a solution to deploy the Hyper-V hosts. The solution must meet the technical requirements. Which System Center 2012 product should you include in the recommendation? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Virtual Machine Manager
B.    Orchestrator
C.    App Controller
D.    Configuration Manager

Answer: A

QUESTION 70
You are planning to create templates for the deployment of SQL Server. You need to identify the minimum number of SQL Server profiles and application profiles required to meet the SQL Server deployment requirements. The solution must minimize the amount of administrative effort required to create the virtual machine templates for the planned deployment. What should you identify? (To answer, select the appropriate number of SQL Server profiles and application profiles in the answer area.)

clip_image001[4]
Answer:

clip_image001[6]
QUESTION 71
You need to recommend which configurations must be performed to meet the backup requirements for Hyper-V. What should you recommend? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Install the DPM protection agent on the Hyper-V hosts only.
Install the Hyper-V server role on the DPM server.
B.    Configure the iSCSI initiator on the DPM server and on the Hyper-V hosts.
Install the DPM protection agent on the Hyper-V hosts and on each virtual machine.
Configure the iSCSI initiator on the DPM server, on the Hyper-V hosts, and on each virtual machine.
C.    Install the DPM protection agent on the Hyper-V hosts and on each virtual machine.
Install the Hyper-V server role on the DPM server.
D.    Configure the iSCSI initiator on the DPM server only.
Install the DPM protection agent on the Hyper-V hosts only.

Answer: C

If you want to pass the Microsoft 70-247 Exam sucessfully, recommend to read latest Microsoft 70-247 Dump full version.

Official 2014 Latest Free Microsoft 70-247 Dump Download(51-60)!

QUESTION 51
You need to recommend a deployment topology for the PKI. The deployment topology must meet the cloud requirements.
What should you recommend? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    An offline root certification authority (CA) and an online standalone subordinate CA
B.    An offline root certification authority (CA) and an online enterprise subordinate
C.    An online enterprise root certification authority (CA) only
D.    An online standalone root certification authority (CA) only

Answer: B
Explanation:
As Microsoft standard PKI recommendation.

Case Study 2 – Trey Research (Question 83 – Question 96)
Overview
Trey Research is a consulting company.
Trey Research has three offices.
The offices are located in Seattle, Los Angeles, and Toronto.
Trey Research has two data centers.
The data centers are located in Los Angeles and Toronto.
Existing Environment
The network contains a single-domain Active Directory forest named treyresearch.com.
The network contains switches that support either SNMPv1 or SNMPv2.
The forest contains 100 physical servers that run Windows Server 2008 R2 Service Pack 1 (SP1).
The relevant servers are configured as shown in the following table.

clip_image001
All of the System Center 2012 servers use Server5 as a database server.
All of the VMM components in the production environment are installed on Server1.
Server1 is located in the Los Angeles data center.
Ten virtual machine hosts are located in the Toronto data center and 90 virtual machine hosts are located in the Los Angeles data center.
Server9 is used to manage three virtualization hosts in a lab environment.
Requirements
Planned Changes
Trey Research plans to implement the following changes:
– Upgrade Server9 to VMM 2012.
– Discover and monitor network switches by using Operations Manager.
– Grant the network technicians the required permissions to configure the network fabric.
– Install a System Center 2012 Service Manager management server on Server7 and a Service Manager data warehouse management server on Server8.
– Provide external access to the Virtual Machine Manager Self-Service Portal (VMMSSP) by using the names ssp.treyreseach.com and vmm.treyresearch.com.
Private Cloud Infrastructure Requirements
Trey Research identifies the following requirements for the private cloud infrastructure:
– Integrate VMM 2012 and Operations Manager 2012.
– Ensure that all VMM 2012 components are highly available.
– Ensure that virtual machines use a MAC address from a custom MAC address pool.
– Ensure that Hyper-V hosts can be deployed to bare-metal computers from Server6.
– Control the placement of virtual machines based on the performance data gathered by Operations Manager.
Private Cloud Compliance Requirements
Trey Research identifies the following requirements for compliance in the private cloud infrastructure:
– Ensure that updates on the Hyper-V hosts can be remediated.
– Generate the compliance status of all the servers in the fabric.
– Ensure that update baselines for all of the servers in the fabric are created.
Private Cloud Services Requirements
Trey Research identifies the following requirements for managing services in the private cloud:
– Users in the human resources department must be able to create virtual machines that have two CPUs and 4 GB RAM by using the VMMSSP.
– Users in the marketing department must be able to create new virtual machines that will be hosted in the Toronto office. The virtual machine templates for the marketing department users must be stored in the Toronto office.

QUESTION 52
Drag and Drop Question
You need to identify which MAC address pool must be used to meet the requirements for the private cloud infrastructure.
How should you configure the address pool for the private cloud? (To answer, drag the appropriate MAC addresses to the correct location. Each MAC address may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

clip_image001[11]
Answer:

clip_image001[13]

QUESTION 53
You need to implement the planned changes for the network technicians.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Create a Run As Account.
B.    Create a classification.
C.    Deploy System Center 2012 App Controller.
D.    Deploy the VMM console.
E.    Create a user role.

Answer: CE
Explanation:
* From scenario: Grant the network technicians the required permissions to configure the network fabric
* In System Center 2012 SP1, App Controller is the self-service vehicle for managing a hybrid cloud based on SCVMM, Windows Azure, and 3rd party hosting services.
* The concept of a role-based security model in SCVMM is to package security settings and policies on who can do what, and how much on an object into a single concept, the so- called user role. The idea of a user role is to define a job function which a user performs as opposed to simply offering a logical group of selected user accounts.

QUESTION 54
You need to recommend a solution to meet the high-availability requirements for VMM 2012.
What should you include in the recommendation?

A.    Install Network Load Balancing (NLB) on Servers.
B.    Split the VMM roles between separate servers.
C.    Store all of the VMM templates in a Distributed File System (DFS) namespace.
D.    Install Failover Clustering and Network Load Balancing (NLB) on Server1.

Answer: D
Explanation:
SCVMM 2012 can user Failove Clustering and NLB.

QUESTION 55
You need to recommend a solution to meet the private cloud services requirements for the marketing department users.
What should you recommend deploying in the Toronto data center?

A.    a VMM management server
B.    a VMM library server
C.    the VMMSSP
D.    a virtual machine host that runs Windows Server 2012

Answer: B
Explanation:
The library contains files stored on library shares, and it contains operating system, hardware, and template configurations stored in the VMM database.
http://technet.microsoft.com/en-us/library/bb963732.aspx

QUESTION 56
You need to configure VMM 2012 to meet the private cloud services requirements for the human resources department users.
What should you configure?

A.    a service template
B.    a virtual machine template
C.    a capability profile
D.    a user role
E.    a cloud

Answer: BCD
Explanation:
-Create VM template
-Configure user role
http://technet.microsoft.com/library/gg610613.aspx
Custom capability profile to limit the resources that are used by virtual machines that are created in a private cloud
http://technet.microsoft.com/en-us/library/gg671825.aspx

QUESTION 57
You need to implement the planned changes for the VMMSSP.
What should you do?

A.    From Internet Information Services (IIS) Manager, modify the web site bindings.
B.    From the Services console, modify the properties of World Wide Web Publishing Service.
C.    From the Microsoft System Center Virtual Machine Manager 2012 Setup Wizard, click the Install option.
D.    From the Virtual Machine Manager console, modify the Networks Settings.

Answer: C
Explanation:
Installing the VMM Self-Service Portal. Existing environment doesn’t have VMMSSP yet.
http://technet.microsoft.com/en-us/library/bb740747.aspx

QUESTION 58
You need to configure the environment to meet the requirements for private cloud compliance.
What should you do first on Server1?

A.    Configure the Audit Collection Services (ACS).
B.    Create a Data Collector Set (DCS).
C.    Install the Network Policy and Access Services server role.
D.    Install the WSUS Administration console.

Answer: D
Explanation:
On highly available VMM management server, install a WSUS Administration Console on each node.
http://technet.microsoft.com/en-us/library/gg675099.aspx

QUESTION 59
You need to deploy Hyper-V hosts to meet the requirements for the private cloud infrastructure.
What should you install on Server6?

A.    Windows Automated Installation Kit (Windows AIK)
B.    Windows Deployment Services (WDS)
C.    Windows Assessment and Deployment Kit (Windows ADK)
D.    Microsoft Deployment Toolkit (MDT)

Answer: B

QUESTION 60
You need to configure VMM 2012 to meet the private cloud services requirements for the human resources department users. What should you configure? (Each correct answer presents part of the solution. Choose all that apply.)

A.    A cloud
B.    A capability profile
C.    A user role
D.    A virtual machine template
E.    A service template

Answer: CD
Explanation:
(D) *From scenario: Users in the human resources department must be able to create virtual machines that have two CPUs and 4 GB RAM by using the VMMSSP.
* A virtual machine template is a library resource consisting of a guest operating system profile, a hardware profile, and one or more virtual hard disks (VHDs), which can be used to create a new virtual machine.
* (C) The concept of a role-based security model in SCVMM is to package security settings and policies on who can do what, and how much on an object into a single concept, the so- called user role. The idea of a user role is to define a job function which a user performs as opposed to simply offering a logical group of selected user accounts.
– Create VM template
– Configure user role
http://technet.microsoft.com/library/gg610613.aspx Custom capability profile to limit the resources that are used by virtual machines that are created in a private cloud
http://technet.microsoft.com/en-us/library/gg671825.aspx

 

If you want to pass the Microsoft 70-247 Exam sucessfully, recommend to read latest Microsoft 70-247 Dump full version.

Official 2014 Latest Free Microsoft 70-247 Dump Download(41-50)!

QUESTION 41
You have a virtual application package named App1.
You need to deploy App1 to a test environment. Which
Windows PowerShell cmdlets should you use?

A.    New-ServerAppVSequencerPackage and Set-ServerAppVPackageConfiguration
B.    Add-ServerAppVPackage and Set-SCApplicationPackage
C.    Add-SCApplicationDeployment and Start-ServerAppVPackage
D.    Add-ServerAppVPackage and Start-ServerAppVPackage

Answer: D
Explanation:
http://technet.microsoft.com/en-us/library/gg703267
http://blogs.technet.com/b/serverappv/archive/2011/05/12/how-to-manage-virtual-applications-using-the- server-app-v-agent-cmdlets.aspx

QUESTION 42
Your company has a private cloud managed by a System Center 2012 Virtual Machine Manager (VMM) infrastructure.
You need to add a hardware load balancing solution to the private cloud. You deploy the hardware load balancer to the network.
What should you do before you add the hardware load balancer to the fabric? (Each correct answer presents part of the solution, Choose two.)

A.    Create a logical network.
B.    Create a VIP template.
C.    Create a Run As Account.
D.    Install a configuration provider.
E.    Install the Network Load Balancing (NLB) feature.
F.    Create a User Role.

Answer: BD
Explanation:
B: Before you can use a hardware load balancer or NLB, you must create associated virtual IP (VIP) templates.
D: To add supported hardware load balancers, you must install a configuration provider that is available from the load balancer manufacturer.
Reference: Configuring Load Balancing in VMM Overview

QUESTION 43
You need to recommend a solution to meet the requirements for App2.
What should you include in the recommendation?

A.    Windows Azure Active Directory Rights Management Services
B.    Microsoft Forefront Identity Manager (FIM) 2010 R2
C.    Active Directory Federation Services (AD FS)
D.    Active Directory Rights Management Services (AD RMS)

Answer: C

QUESTION 44
You need to identify which components must be created to meet the App1 deployment requirements.
Which components should you identify?

A.    A guest operating system profile and a service request template
B.    A service template and a virtual IP (VIP) template
C.    A service template and a service request template
D.    A guest operating system profile and a virtual IP (VIP) template

Answer: A

QUESTION 45
You need to recommend a solution for the management packs. The solution must meet the cloud requirements.
What should you recommend? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Export the management packs, modify the settings of the management packs, and then import
the unsealed management packs.
B.    Create a new management pack that contains overrides.
C.    Unseal the management packs, and then modify the settings of the management packs.
D.    Export the management packs, and then modify the settings of the management packs.
Seal the management packs, and then import the management packs.

Answer: B

QUESTION 46
You need to identify which UDP port or ports must be opened on any of the firewalls between Server5 and all of the subnets in the data center. The solution must minimize the number of ports opened on the firewall.
Which port or ports should you identify?

A.    67
B.    69
C.    389
D.    3389
E.    4010
F.    4011

Answer: ABF
Explanation:
Ports required by Configuration Manager: 67 and 68, 69, 4011
http://technet.microsoft.com/en-us/library/bb632618.aspx

QUESTION 47
You need to recommend a solution to meet the technical requirements for the web tier of App1.
What should you include in the recommendation?

A.    Failover Clustering
B.    Multipath I/O (MPIO)
C.    Network Load Balancing (NLB)
D.    DNS round robin

Answer: C
Explanation:
Failover clusters and Network Load Balancing (NLB).
Failover clusters primarily provide high availability
Network Load Balancing (NLB) provides scalability and at the same time helps increase availabilityof Web-based services
http://technet.microsoft.com/en-us/library/cc725946.aspx

QUESTION 48
You need to recommend the configuration settings for the SQL Server instance that will host the App Controller database. The solution must support the planned changes.
What should you include in the recommendation?

A.    Disable full-text search.
B.    Change the database collation.
C.    Install the SQL Server Reporting Services (SSRS).
D.    Enable case sensitivity.

Answer: B
Explanation:
To support Simplified Chinese change MS SQL Collation
http://msdn.microsoft.com/en-us/library/ms144250(v=sql.105).aspx

QUESTION 49
You need to identify which server or servers can be deployed as a Hyper-V host by using System Center 2012 – Virtual Machine Manager (VMM).
Which server or servers should you identify?

A.    Server1
B.    Server2
C.    Server3
D.    Server4

Answer: ACD
Explanation:
Servers must have a baseboard management controller (BMC) with a supported out-of-band management protocol.
http://technet.microsoft.com/en-us/library/gg610658.aspx

QUESTION 50
You need to identify which Microsoft SharePoint product or products support the planned deployment of the System Center 2012 Service Manager Self-Service Portal.
Which product or products should you identify?

A.    SharePoint Server 2013
B.    SharePoint Foundation 2010
C.    SharePoint 2010 for Internet Sites Enterprise
D.    SharePoint Server 2010

Answer: BCD
Explanation:
One of the following versions of Microsoft SharePoint: Microsoft SharePoint Foundation 2010 Microsoft SharePoint Server 2010 Microsoft SharePoint 2010 for Internet Sites Enterprise SharePoint 2013 is not supported on the server hosting the SharePoint Web Parts.
http://technet.microsoft.com/en-us/library/hh519608.aspx
http://www.server-log.com/blog/2011/12/29/scsm-2012how-to-install-the-self-service-portal.html

If you want to pass the Microsoft 70-247 Exam sucessfully, recommend to read latest Microsoft 70-247 Dump full version.

Official 2014 Latest Free Microsoft 70-247 Dump Download(31-40)!

QUESTION 31
Your network contains an Active Directory forest named bluyonderairlines.com. The forest contains a System Center 2012 Operations Manager infrastructure.
Your company, named Blue Yonder Airlines, has a partner company named Alpine Ski House. The Alpine Ski House network contains an Active Directory forest named alpineskihouse.com. Alpineskihouse.com does not have any trusts. A firewaII exists between the Alpine Ski House network and the Blue Yonder Airlines network.
You configure conditional forwarding on all of the DNS servers to resolve names across the forests. You plan to configure Operations Manager to monitor client computers in both of the forests. You need to recommend changes to the infrastructure to monitor the client computers in both of the forests. What should you include in the recommendation? (Each correct answer presents part of the solution.
Choose two.)

A.    Allow TCP port 5986 on the firewall.
B.    Create a DNS zone replica of biueyonderairlines.com.
C.    Create a DNS zone replica of alpineskihouse.com.
D.    Deploy a gateway server to alpineskihouse.com.
E.    Allow TCP port 5723 on the firewall.
F.    Deploy a gateway server to blueyonderairlines.com.

Answer: DE
Explanation:
E: Gateway, System Center Management service, 5723/TCP
D: if there is a firewall between the agents and management servers, multiple authorized endpoints must be defined and maintained in the firewall rules to allow communication between them.
To reduce this administrative overhead, Operations Manager has a server role called the gateway server. Gateway servers are located within the trust boundary of the agents and can participate in the mandatory mutual authentication. Because they lie within the same trust boundary as the agents, the Kerberos V5 protocol for Active Directory is used between the agents and the gateway server. Each agent then communicates only with the gateway servers that it is aware of. The gateway servers communicate with the management servers.
Reference: Operations Manager 2012 Firewall Scenarios
Reference: Distributed Deployment of Operations Manager

QUESTION 32
You have a System Center Service Manager 2010 Service Pack 1 (SP1) infrastructure that contains multiple servers.
The infrastructure contains the following:
– Multiple class workflows
– Custom Microsoft SQL Server Reporting Services reports
– Custom views of the System Center Service Manager Console
– Custom webpages on the Service Manager IT Analyst Self-Service Portal
You plan to upgrade to Service Manager 2012.
You need to identify which task must be performed after the planned upgrade.
What should you identify?

A.    Recreate the custom workflows.
B.    Recreate the custom webpages.
C.    Recreate the custom reports.
D.    Recreate the custom views.

Answer: B
Explanation:
http://technet.microsoft.com/en-us/library/hh524327

QUESTION 33
You have a System Center 2012 Virtual Machine Manager (VMM) infrastructure.
You need to prepare the infrastructure to deploy Hyper-V hosts to bare-metal servers.
What should you copy to the VMM library?

A.    an ISO that contains a generalized image of Windows Server 2008 R2
B.    a discover image and a capture image
C.    a VHD that contains a generalized image of Windows Server 2008 R2
D.    the Boot.wim file and the Install.wim file

Answer: C
Explanation:
http://technet.microsoft.com/en-us/library/gg610658.aspx

QUESTION 34
Your company has a private cloud managed by a System Center 2012 Virtual Machine Manager (VMM) infrastructure. You add a new SAN to the network, and the you run a storage discovery. You discover that the SAN resources are not discovered by VMM. You verify that the VMM server can communicate with the SAN. You need to ensure that VMM can discover the new SAN. What should you install?

A.    a third-party iSCSI initiator
B.    a Storage Management Initiative – Specification (SMI-S) provider.
C.    the Multipath I/O (MPIO) feature
D.    the Windows System Resource Manager (WSRM) feature.

Answer: B
Explanation:
http://technet.microsoft.com/en-us/library/gg610600.aspx
http://technet.microsoft.com/en-us/library/gg610563.aspx

QUESTION 35
You have a System Center 2012 Virtual Machine Manager (VMM) infrastructure that contains 20 virtualization hosts. Each host contains 20 virtual machines.
You need to configure the network fabric. The solution must prevent the virtual machines from connecting to a VLAN.
What should you do from the Network Site properties?

A.    Set the subnet to 192.168.1.0/20.
B.    Set the subnet to FD4A::/32.
C.    Set the VLAN ID to 0.
D.    Set the VLAN ID to 10.

Answer: C
Explanation:
VLAN 0 means you want VLAN disabled. Use this setting when you don’t care about VLAN IDs.

QUESTION 36
Your company has a private cloud that contains a Windows Server Update Services (WSUS) infrastructure as shown in the exhibit. (Click the Exhibit button.) – Missing Exhibit!!! You plan to add the WSUS infrastructure to the System Center 2012 Virtual Machine Manager (VMM) infrastructure. You need to identify, which WSUS servers can be added to the VMM infrastructure. Which server or servers should you identify? (Each correct answer present part of the solution. Choose all that apply.)

A.    Server1 – upstream server
B.    Server2 – downstream server
C.    Server3 – Replica server
D.    Server4 – Replica server

Answer: AB

QUESTION 37
You are the datacenter administrator for a company named Contoso Ltd. The network contains a server that has System Center 2012 Virtual Machine Manager (VMM) installed. You create two private clouds named Cloud1 and Cloud2.
Developers at Contoso have three Windows Azure subscriptions. Contoso creates a partnership with another company named Fabrikam, Inc. The Fabrikam network contains a server that has System Center 2012 Virtual Machine Manager (VMM) installed. The VMM server contains three clouds named Cloud3, Cloud4, and Cloud5.
Developers at Fabrikam have two Windows Azure subscriptions.
You deploy System Center 2012 App Controller at Contoso. You plan to manage the clouds and the Windows Azure subscriptions for both companies from the App Controller portal. You need to identify the minimum number of subscriptions and the minimum number connections required for the planned management.
How many connections and subscriptions should you identify?

A.    two connections and two subscriptions
B.    two connections and five subscriptions
C.    five connections and five subscriptions
D.    five connections and two subscriptions

Answer: B

QUESTION 38
Your network contains a server named Server1 that has System Center 2012 Virtual Machine Manager (VMM) installed. The network contains 1,000 virtual machines deployed on 100 Hyper-V hosts. The network contains a server named Server2 that has System Center 2012 Data Protection Manager (DPM) installed. You need to recommend a solution for the infrastructure to meet the following requirements:
– Automatically backup and restore Virtual machines by using workflows,
– Automatically backup and restore system states by using workflows,
What should you do? (Each correct answer presents part of the solution. Choose two.)

A.    Install the Integration Pack for System Center Virtual Machine Manager (VMM).
B.    Deploy System Center 2012 Orchestrator.
C.    Install the Integration Pack for System Center Data Protection Manager (DPM).
D.    Deploy System Center 2012 App Controller.
E.    Deploy System Center 2012 Service Manager.
F.    Deploy System Center 2012 Operations Manager.

Answer: AB
Explanation:
System Center 2012 Orchestrator is a Runbook Automation (RBA) tool, also known as an IT Process Automation (ITPA) tool.
As a practical example, a user could initiate an Orchestrator (B) runbook by requesting a service in a self-service portal. The runbook would then await approval by IT. Once approved, it would then automatically provision the necessary virtual machines through System Center Virtual Machine Manager (A), deploy the required software via Configuration Manager, arrange backup through System Center Data Protection Manager and integrate monitoring with a third-party system.
Reference: Microsoft System Center Orchestrator 2012: Lead the System Center Band

QUESTION 39
Your network contains a System Center 2012 Virtual Machine Manager (VMM) infrastructure. The infrastructure contains 50 Hyper-V hosts.You plan to deploy Power Optimization for VMM.
You need to prepare the infrastructure for the planned deployment. What should you do? (Each correct answer present part of the solution. Chose two.)

A.    Install a Baseboard Management Controller (BMC) on each Hyper-V host.
B.    Enable Dynamic Optimization.
C.    Enable Hibernation.
D.    Enable Performance and Resource Optimization (PRO).
E.    Install a configuration provider on each Hyper-V host.

Answer: AB
Explanation:
A: To use Power Optimization, the host computers must have a BMC that enables out-of- band management.
B: Power Optimization is an optional feature of Dynamic Optimization, and it is only available when a host group is configured to migrate virtual machines through Dynamic Optimization.
Reference: Configuring Dynamic Optimization and Power Optimization in VMM

QUESTION 40
You plan to deploy a service named Service1. When you deplay Service1, you plan to deploy several SQL scripts to a virtual machine named VM1 by using an Application Profile. You need that ensure that a user named User1 is prompted for the name of the SQL instance during the deployment of Service1.
Which value should you add to the Application Profile?

A.    $SQLServerInstanceName$
B.    #SQLServerInstanceName#
C.    @SQLServerInstanceName@
D.    %SQLServerInstanceName%

Answer: C
Explanation:
https://blogs.technet.com/b/scvmm/archive/2011/09/27/vmm-2012-sql-server-profile.aspx?Redirected=true

If you want to pass the Microsoft 70-247 Exam sucessfully, recommend to read latest Microsoft 70-247 Dump full version.