Your company uses Microsoft Exchange Online. Employees frequently need to change their
primary email addresses.
The messaging operations team has requested a script to simplify the process of changing
email addresses.
The script must perform the following actions:
• Obtain employee information froma. csv file that has a header line of
UserPrincipalName,CurrentPrimaryAddress,NewPrimaryAddress.
• Change employees’ primary email addresses to the values in the
NewPrimaryAddress column.
• Retain employees’ current email addresses as secondary addresses.
You create the following Windows PowerShell script to read the . csv file. Line numbers are
included for reference only.
You need to complete the script to meet the requirements.
Which Windows PowerShell command should you insert at line 06?
A.
Set-Mailbox -Identity $UserPrincipalName -WindowsEmailAddress $NewPrimary
B.
Set-Mailbox -Identity $UserPrincipalName -PrimarySmtpAddress $NewPrimary
C.
Set-Mailbox -Identity $UserPrincipalName -ExternalEmailAddress $NewPrimary
D.
Set-MailUser -Identity $UserPrincipalName -EmailAddresses@{add = “SMTP:” +
“$NewPrimary”; remove=”SMTP:” + “$OldPrimary”}
Not sure as it says “Retain employees’ current email addresses as secondary addresses”
I think the script is removing the SMTP from the current (old) address. Once you remove the SMTP from the proxyAddress attribute it is non longer primary. Not sure if answer D. is deleting the OldPrimary ?
Option “A” add secondary mail address as new reply address, but is this what we have to do?
Looks like answer A is the correct one. This command doesnot delete the “current mailaddress”, like answer D will do!
what is the correct answer?
This change of Primary Address, is for Exchange Online, but the parameter WindowsEmailAddress says: “The WindowsEmailAddress parameter specifies the Windows email address for this mailbox. This address isn’t used by Exchange.”
For me it’s B. Any comments?
I believe B is the correct answer as well.
(A) uses the Windows email address property, which is not used by exchange. (http://technet.microsoft.com/en-us/library/bb123981%28v=exchg.150%29.aspx)
(B) inputs the new address as the primaryemailaddress
(C) – I’m not sure that externalemailaddress is a property of the command
(D) – Removes the old email address, which the question explicitly asks you not to do.
I was wrong about this, I think A is correct.
I think you are right about B, -PrimarySMTPAddress parameter exist and the new value may not replace the primary and make that additional address(old address).
Okay, finally:
It cannot be A because windowsemailaddress is not used by exchange.
It cannot be B because primarysmtpaddress is ONLY used by exchange on-premise < just learned this
It cannot be C because externalemailaddress is not a property of set-mailbox
I believe it is D (and the person who made the dump made a type) because EmailAddresses is an array and can be treated as one. Read the question carefully of the exam if you take it. But those are my two cents.
Agree with this. B cannot be used as it doesn’t support O365
D does work. Also capitalized SMTP is treated as primary in exchange. This script is not removing the old email address, just what is set as primary.
D is the answer…..
It is not removing the email address, its simply removing the “SMTP:” prefix. The proxyaddress with “SMTP:” in front of it is the primary.
eg.
“SMTP:[email protected]” = SMTP reply address
“smtp:[email protected]” or “[email protected]” = additional alias
D
It is A.
I did it in my trial I´m sure
The problem with D is that it’s removing the old primary address which needs to remain in place as a secondary.
The answer must be B. Here is why
The question refrains to mailboxes and NOT mail users, so Answer D is not the answer, leaving us A, B , or C.
C cannot be the answer because an -ExternalEmailAddress applies to mail users who have external email addresses.
A is not the answer because you do not set the WindowsEmailAddress on a mailbox, you set the PrimarySMTPAddress
Answer should be A!
yesman ,
what is the answer u said A is not answer then u said answer should be A
…
Im sorry I was incorrect.
Set-Mailbox -PrimarySMTPAddress does not exist.
The answer is actually A. The -WindowsEmailAddress sets the primary email address and retains the old as a secondary proxy, hence B.
Answer is A.
yesman, you say ‘The answer is actually A…’, then ‘…, hence B.’ Then you say answer is A, make up your mind!
The answer is D and heres why
A. The WindowsEmailAddress property is not used by Exchange
B. The PrimarySMTPAddress is only available for Exchange 2013 on-premise
C. The ExternalEmailAddress parameter does not exist in the set-mailbox cmdlet
D. The Set-Mailuser cmdlet is for Exchange 2013 on-line and the EmailAddresses parameter is used to specify the email alias of the mail user. It can be used to set any type of address and may be used for multiple addresses by comma delimiting the values.
This leaves D as the only possible answer, although I am not sure the syntax is correct
Except D: removes the current email address and the question states that it should remain in place as the secondary address.
A is correct. Validated by myself and at least two others in this post.
It is A I have just tested it and the -WindowsEmailAddress is available in the set-mailbox and changes the primary whilst retaining the secondary.
I agree! A is correct. B cannot be used with Exchange Online, only with Exchange 2013 on-premise.
100% A is the answer read here http://o365info.com/manage-email-address-using-powershell/
“Method 2#2 – Adding (replacing) primary E-mail address | Set the property – WindowsEmailAddress
This is the preferred method because, when using this method, the additional E-mail address of the Exchange Online recipient will not be removed.
In this method, we “address” other Exchange Online mailbox property named – WindowsEmailAddress.
The Exchange Online mailbox property – WindowsEmailAddress, “contain” the recipient Primary E-mail address.
In case that we set the value of the E-mail address stored in the WindowsEmailAddress property, the Exchange Online Recipient Primary E-mail address is also updated.”
It is definitly answer A, i’ve also tested it!
I did:
Get-Mailbox -Identity [email protected] | Select-Object emailaddresses
EmailAddresses
————–
{smtp:[email protected], SMTP:[email protected]…
As you can see, [email protected] is the primary Address.
After I do
Set-Mailbox -Identity [email protected] -WindowsEmailAddress [email protected]
and did again the Get-Mailbox cmdlet, I end up in the following:
EmailAddresses
————–
{smtp:[email protected], SMTP:[email protected],
So it changes the SMTP Prefixes of both
This is what we wanted.
I agree with Dirk A is the correct answer. Tested it as well with additional aliases to the onmicrosoft domain as that one might be treated special. I.e. I don’t think it can be removed.
The -WindowsEmailAddress makes the new address the primary but retains the old primary as a secondary.
I Agree. A is the answer.
I agree with dirk too, A is the correct answer.
http://o365info.com/manage-email-address-using-powershell/
in the article
the property in gthe cmdlet is EmailAddress not WindowsEmailAddress,
I agree with Tony
answer is fuckin A.
fuckin A. fuckin A. http://o365info.com/manage-email-address-using-powershell/
also, D is just removing the SMTP..another microsoft trick question.!
Answer would be A.
https://www.cogmotive.com/blog/office-365-tips/change-primary-smtp-address-without-changing-the-login-name-on-office-365
i cant be D because is there only a line to complete. WindowsEmailAddress is the answer, agree with dirk.
PS C:\office365\Setupfiles> get-Mailbox -Identity admin | Select-Object -ExpandProperty EmailAddresses
SMTP:[email protected]
PS C:\office365\Setupfiles> set-mailbox -Identity $viejo -WindowsEmailAddress $nuevo
PS C:\office365\Setupfiles> get-Mailbox -Identity admin | Select-Object -ExpandProperty EmailAddresses
SMTP:[email protected]
smtp:[email protected]
PS C:\office365\Setupfiles> set-mailbox -Identity $viejo -WindowsEmailAddress $viejo
PS C:\office365\Setupfiles> get-Mailbox -Identity admin | Select-Object -ExpandProperty EmailAddresses
SMTP:[email protected]
smtp:[email protected]
Answer D is not the correct one. It starts with Set-MailUser …..
The correct answer is A. This option updates the windowsemailaddress attribute AND the primary email address to the same value.
https://technet.microsoft.com/en-us/library/bb123981(v=exchg.160).aspx
Answer is B. https://itss.untsystem.edu/services/messaging-services/changing-users-display-name-and-primary-smtp-address-exchange
Answer is A. 🙂
A is correct.
Answer is A – tested. ALso see this: https://www.cogmotive.com/blog/office-365-tips/change-primary-smtp-address-without-changing-the-login-name-on-office-365
and on technet it says the same… windowsemail changes primary email in cloud, but not on onpremise. it only changes the primarysmtpaddress for exchange but not the UPN / login.
It’s A you god damn naggers!
New 70-347 Exam Questions and Answers Updated Recently (7/Nov/2016):
NEW QUESTION 162
Your company is planning to migrate to Microsoft Exchange Online. The company employs 1,000 people, each with a mailbox currently located on Exchange 2010 on-premises. You estimate that it will take a minimum of four weeks to migrate all mailboxes from on-premises Exchange to Exchange Online. The company has the following migration requirements:
– During the migration, do not change the existing Microsoft Outlook profiles and .ost files used by the employees.
– Ensure that email messages sent between on-premises mailboxes and online mailboxes during the migration are secure.
– Do not send email messages between on-premises mailboxes and online mailboxes over the Internet in plain text.
You need to select the migration strategy that meets the requirements. Which migration strategy should you use?
A. Hybrid migration only
B. IMAP migration followed by staged migration
C. Staged migration only
D. Staged migration followed by remote move migration
Answer: A
Explanation:
You can use a hybrid migration to migration from Exchange 2010 to Exchange Online.
Note: In the Deployment Assistant, a hybrid deployment is when you create a new Exchange Online Exchange organization in Microsoft Office 365 for enterprises and then connect it to your existing on- premises Exchange 2010 organization by configuring Active Directory synchronization and using the Hybrid Configuration wizards.
Incorrect Answers:
B: IMAP migration is targeted at customers who may be using non-Exchange-based mail systems in their current hosted environment or have access to the data only by using the IMAP 4 protocol.
C, D: You can’t use a staged migration to migrate Exchange 2013 or Exchange 2010 mailboxes to Office 365.
support.office.com/en-us/article/Decide-on-a-migration-path-0d4f2396-9cef-43b8-9bd6-306d01df1e27?ui=en-US&rs=en-US&ad=US
NEW QUESTION 163
You need to migrate a Microsoft Exchange Server 2007 organization that has 50 mailboxes to Exchange Online by using the cutover migration method. Which two requirements should be met before you can begin the mailbox migration? Each correct answer presents part of the solution.
A. The migration administrator account must be granted Full Access permission for each on-premises mailbox that will be migrated.
B. The migration administrator account must be granted Send As permission for each on-premises mailbox that will be migrated.
C. Exchange Web Services (EWS) must be enabled and accessible from the Internet.
D. The migration administrator account must be granted Receive As permission for each on-premises mailbox that will be migrated.
E. Outlook Anywhere must be enabled and accessible from the Internet.
Answer: AE
Explanation:
A: To migrate the mailboxes, the admin must have one of the following permissions:
The migration administrator must be assigned the FullAccess permission for each on-premises mailbox.
or
The migration administrator must be assigned the Receive As permission on the on-premises mailbox database that stores user mailboxes.
E: The email migration service uses Outlook Anywhere (also known as RPC over HTTP), to connect to your on-premises Exchange Server.
support.office.com/en-us/article/Perform-a-cutover-migration-of-email-to-Office-365-9496e93c-1e59-41a8-9bb3-6e8df0cd81b4?ui=en-US&rs=en-US&ad=US
NEW QUESTION 164
All employees at a company have Exchange Online mailboxes. You have a policy that allows users to send email messages to a maximum of 500 specific recipients per message. You need to grant User1 the ability to send email messages to 700 specific recipients per message. What should you do?
A. Add the recipients to a new distribution list. Instruct User1 to send email messages to the list.
B. Run the following Windows PowerShell cmdlet:
Set-TransportConfig
C. Run the following Windows PowerShell cmdlet and apply the policy to User1:
New-ThrottlingPolicy
D. In the Exchange Admin Center, modify the mailbox properties for User1.
Answer: A
Explanation:
For distribution groups stored in an organization’s address book, the group is counted as one recipient.
Incorrect Answers:
B: The Set-TransportConfig cmdlet is usedto modify the transport configuration settings for the whole Exchange organization, not for a single user.
C: A throttlingPolicy does not refer to the number of recipients of email messages.
technet.microsoft.com/en-us/library/exchange-online-limits.aspx#RecipientLimits
NEW QUESTION 165
You manage a Microsoft SharePoint Online deployment. You create a new site collection named ContosoSites. You attempt to modify the storage quota from the SharePoint admin center, but you discover the Storage Quota option is missing. You need to ensure that the Storage Quota option is available. What should you do?
A. From the SharePoint admin center, set Site Collection Storage Management to Manual.
B. Sign in to the Office 365 admin center by using a user account that has Global administrator privileges.
C. Sign in to the SharePoint admin center by using a user account that has Global administrator privileges.
D. From the SharePoint admin center, set Site Collection Storage Management to Automatic.
Answer: B
Explanation:
To configure a resource quota for a specific site collection, perform the following steps:
1. Sign in to the Office 365 Admin Center with a user account that has SharePoint Online administrator privileges.
2. Under Admin, click SharePoint. This will open the SharePoint Admin Center.
3. Click Site Collections.
4. Select the site collection for which you want to configure the resource quota and then click Server Resource Quota.
Etc.
NEW QUESTION 166
You manage a Microsoft SharePoint Online deployment. You need to ensure that In-Place Holds only preserve files from the moment that In-Place hold was created. You open the document library settings as shown in the exhibit.
Image URL: examgod.com/plimages/175006085377_F072/passleader-70-347-dumps-1661_thumb.png
What should you do?
A. Set Create a version each time you edit a file in this document library to No versioning.
B. Set Require documents to be checked out before they can be edited to Yes.
C. Set Create a version each time you edit a file in this document library to Create major and minor (drafts) versions.
D. Set Keep the following number of major versions option to 0.
Answer: A
Explanation:
If document versioning isn’t enabled and an item is placed on hold multiple times, SharePoint preserves the version that’s current at the time each hold is placed. For example, if version 27 of an item is the most recent when the site is placed on hold the first time, and version 51 is the most recent when the site is placed on hold the second time, versions 27 and 51 are preserved.
technet.microsoft.com/en-us/library/fp161516.aspx#in_place_holds
NEW QUESTION 167
……
Case Study – Contoso, Ltd. (NEW QUESTION 174 – NEW QUESTION 180)
……
NEW QUESTION 174
You need to modify the existing environment to meet the technical requirement for Outlook on the web. Solution: You run the Set-Mailbox command. Does this meet the goal?
A. Yes
B. No
Answer: B
Explanation:
The Set-CASMailbox command, not the Set-Mailbox command, must be used to disable Outlook Web App.
This example disables Outlook Web App for the mailbox of Yan Li.
Set-CASMailbox -Identity “Yan Li” -OWAEnabled $false
From scenario: The executive management at Contoso wants to prevent users from accessing their Exchange Online mailbox by using Outlook on the web.
Note: You can use the EAC or the Shell to enable or disable Outlook Web App for a user mailbox. When Outlook Web App is enabled, a user can use Outlook Web App to send and receive email. When Outlook Web App is disabled, the mailbox will continue to receive email messages, and a user can access it to send and receive email by using a MAPI client, such as Microsoft Outlook, or with a POP or IMAP email client, assuming that the mailbox is enabled to support access by those clients.
technet.microsoft.com/en-us/library/bb124124(v=exchg.150).aspx
NEW QUESTION 175
You need to modify the existing environment to meet the technical requirement for Outlook on the web. Solution: You run the Set-OWAMailboxPolicy command. Does this meet the goal?
A. Yes
B. No
Answer: B
Explanation:
The Set-CASMailbox command, not the Set-OWAMailboxPolicy command, must be used to disable Outlook Web App.
From scenario: The executive management at Contoso wants to prevent users from accessing their Exchange Online mailbox by using Outlook on the web.
Note: You can use the EAC or the Shell to enable or disable Outlook Web App for a user mailbox. When Outlook Web App is enabled, a user can use Outlook Web App to send and receive email. When Outlook Web App is disabled, the mailbox will continue to receive email messages, and a user can access it to send and receive email by using a MAPI client, such as Microsoft Outlook, or with a POP or IMAP email client, assuming that the mailbox is enabled to support access by those clients.
technet.microsoft.com/en-us/library/bb124124(v=exchg.150).aspx
NEW QUESTION 176
You need to modify the existing environment to meet the technical requirement for Outlook on the web. Solution: You run the Set-CASMailbox command. Does this meet the goal?
A. Yes
B. No
Answer: A
Explanation:
The Set-CASMailbox command can be used to disable Outlook Web App.
This example disables Outlook Web App for the mailbox of Yan Li.
Set-CASMailbox -Identity “Yan Li” -OWAEnabled $false
From scenario: The executive management at Contoso wants to prevent users from accessing their Exchange Online mailbox by using Outlook on the web.
Note: You can use the EAC or the Shell to enable or disable Outlook Web App for a user mailbox. When Outlook Web App is enabled, a user can use Outlook Web App to send and receive email. When Outlook Web App is disabled, the mailbox will continue to receive email messages, and a user can access it to send and receive email by using a MAPI client, such as Microsoft Outlook, or with a POP or IMAP email client, assuming that the mailbox is enabled to support access by those clients.
technet.microsoft.com/en-us/library/bb124124(v=exchg.150).aspx
NEW QUESTION 177
……
P.S. These New 70-347 Exam Questions Were Just Updated From The Real 70-347 Exam, You Can Get The Newest 70-347 Dumps In PDF And VCE From — https://tr.im/1fhmc (194q)
Good Luck !!!
BTW, NEW 70-347 PDF Dumps from Google Drive for Free: https://drive.google.com/open?id=0B-ob6L_QjGLpfjdPREVKSzl1Qk92OExLdVF0RjN1QWZJdWhhbDEycFZKNzZMMUwtQ1pxeFE
VMware Certified Advanced Professional 6 (Desktop and Mobility Deployment) – The industry-recognized VCAP6-DTM Deploy certification validates that you know how to deploy and optimize VMware Horizon 6 (with View) environments. It demonstrates that you have the knowledge and skills essential to leverage best practices to provide a scalable and dependable Business Mobility platform for your business. Some of the subjects involve: Configuring and managing Horizon View components, configuring cloud pod archituecture, configuring Group Policy settings related to Horizon View, Configuring and optimizing desktop images for Horizon View & Mirage, Configuring and managing App Volumes AppStacks, Configuring desktop pools, Configuring and deploying ThinApp packaged applications, Configuring VMWare Identity Manager, etc.Szumigalski.com was created by Sebastian to spread his enthusiasm for PowerShell & VMWare. Sebastian is an IT qualified professional employed in Singapore for longer than 15 years who’s all of the time searching for innovative expertise to sharpen his technical abilities & knowledge. Since then, Sebastian has joined PowerShell User Group & VMWare VMug group, and has also been getting involved in most of the gatherings held in Singapore. This website will highlight exactly how Sebastian are able to automate some of his day-to-day tasks using PowerShell. You will find study guides available for the VCAP6-DTM examination, which are professionally compiled by Sebastian. Sebastian is certified with VCAP6-DTM, and is skilled with virtualization & server maintenance from four years experience in automation. The need for VMWare prepared admins and technicians are ever-increasing in the modern tech marketplace. Become familiar with more details on PowerShell & VMWare at Szumigalski.com!
https://szumigalski.com
The following is the provided answers to choose from:
A. Set-Mailbox-Identity$UserPrincipalName-EmailAddresses@{add=”SMTP:”+”$NewPrimary”; remove=”SMTP:” + “$OldPrimary”}
B. Set-Mailbox-Identity$UserPrincipalName-EmailAddresses@{add=”SMTP:”+”$NewPrimary”,”smtp:”+ “$OldPrimary”; remove=”SMTP:” + “$OldPrimary”}
C. Set-Mailbox -Identity $UserPrincipalName -EmailAddresses @{add=”SMTP:” + “$NewPrimary”}
D. Set-Mailbox -Identity $UserPrincipalName -PrimarySmtpAddress $NewPrimary