<p>There is a link that describes how to use PowerShell to add an alias:</p>
<p><a href="https://answers.microsoft.com/en-us/msoffice/forum/msoffice_o365admin-mso_password-mso_o365b/add-additional-smtp-aliases-to-office-365-groups/b017e4b9-a0e2-4295-a40e-9ca2ec359965?auth=1">Add Additional SMTP Aliases to Office 365 Groups</a></p>
<p><strong>Concise Instructions</strong></p>
<p>Open PowerShell.</p>
<p>Allow Remote, Signed scripts so you can import Microsoft O365 Exchange commands. We will set this back to default when done:</p>
<pre><code class="lang-auto">Set-ExecutionPolicy RemoteSigned
</code></pre>
<p>Enter your credentials so you can manage the O365 environment you are working on. It will prompt you for your username and your password:</p>
<pre><code class="lang-auto">$UserCredential = Get-Credential
</code></pre>
<p>Create a new PowerShell session to import the Microsoft O365 Exchange commands:</p>
<pre><code class="lang-auto">$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
</code></pre>
<p>Import the session. You should see the standard PowerShell progress bar as the commands are imported:</p>
<pre><code class="lang-auto">Import-PSSession $Session
</code></pre>
<p>Now you are ready to issue your commands. First, make sure you can read the properties of the Exchange Group:</p>
<pre><code class="lang-auto">Get-UnifiedGroup -Identity humanresources@contoso.com | FL EmailAddresses
</code></pre>
<p>It should output the aliases assigned to the Outlook Group.</p>
<p>To add the alias, enter this command. I will use my example in the question above to show what it looks like:</p>
<pre><code class="lang-auto">Set-UnifiedGroup -Identity humanresources@contoso.com -EmailAddresses @{Add="jobs@contoso.com"}
</code></pre>
<p>You can then run the <code>Get-UnifiedGroup</code> command and see the alias now listed in the email addresses.</p>
<p>Return to the default execution policy:</p>
<pre><code class="lang-auto">Set-ExecutionPolicy Default
</code></pre>
<p><strong>Next Steps</strong></p>
<p>At this point the group has an alias. You can email the alias internally to your O365 account. For instance, <a href="mailto:User1@contoso.com">User1@contoso.com</a> can email <a href="mailto:jobs@contoso.com">jobs@contoso.com</a> and it will work correctly. It will be</p>
<p><em>(Réponse tronquée)</em></p>