Each product group at your company must show a distinct product logo in encrypted emails instead of the standard Microsoft Office 365 logo. What should you do to create the branding templates?
D is correct. You use New-OMEConfiguration to CREATE the branding template (as the question asks). A transport rule is needed to apply it, but not to CREATE it.
To create a new branding configuration for use with a specific domain, run the New-OMEConfiguration cmdlet:
New-OMEConfiguration -Identity "Office 365 IT Pros"
You then use the Set-OMEConfiguration cmdlet to update the configuration to tweak different aspects of the notification message created using the template such as the image in the notification heading (shown instead of the Office 365 logo) and text displayed in different places in the message. For example, this command sets four different text strings, adds a different picture, and sets a 10-day expiration period for any message sent using the template. The picture should be no more than 170 x 170 pixels.
Set-OMEConfiguration -Identity "Office 365 IT Pros" -DisclaimerText "Office 365 for IT Pros takes no responsibility for this portal." -PortalText "Office 365 for IT Pros Secure Messaging" -EmailText "Good things happen when you protect email" -ExternalMailExpiryInDays 10 -IntroductionText "has sent you a secret message" -Image (Get-Content "C:\Temp\SmallBookCover.jpg" -Encoding byte)
You should run the New-OMEConfiguration cmdlet to create a new OME configuration. Then, modify the branding template using Set-OMEConfiguration cmdlet.
When you want to configure the your organizations emails you want to user New-OMEConfiguration cmdlet.
This cmdlet can give you the possibility to create a custom look for the emails that you send from your organization, you can do the following,
Background color of the email
Dislaimer text for recievers
Image
Introduction text
When the email will get expired
Configure the "read button" text etc
Logo
Set-OMEConfiguration -Identity "<OMEConfigurationName>" -Image <Byte[]>
Example:
Set-OMEConfiguration -Identity "Branding Template 1" -Image (Get-Content "C:\Temp\contosologo.png" -Encoding byte)
Supported file formats: .png, .jpg, .bmp, or .tiff
Optimal size of logo file: less than 40 KB
Optimal size of logo image: 170x70 pixels. If your image exceeds these dimensions, the service resizes your logo for display in the portal. The service doesn't modify the graphic file itself. For best results, use the optimal size.
To create a new branding template you need to run New-OMEConfiguration and in order to use it, you must first run Set-OMEConfiguration and them create a Transport Rule. Here there is a good explanation: https://www.petri.com/advanced-ome-branding
This section is not available anymore. Please use the main Exam Page.SC-400 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Deeksix
Highly Voted 3 years, 7 months agosergioandreslq
3 years, 5 months agohusamshahin
Highly Voted 10 months, 2 weeks agoblokechettri
Most Recent 8 months, 3 weeks agohsinchang
1 year, 9 months agoxswe
2 years, 2 months agoBluebaron520
2 years, 6 months agowooyourdaddy
2 years, 11 months agoAli_557
3 years, 5 months agojcgonzalez1978
3 years, 10 months agoPiper
4 years ago