Difference between revisions of "Office 365 Exchange Online"

From Michael's Information Zone
Jump to navigation Jump to search
Line 1: Line 1:
 
<ref>https://technet.microsoft.com/en-us/library/dn975125.aspx</ref>
 
<ref>https://technet.microsoft.com/en-us/library/dn975125.aspx</ref>
 
<ref>https://technet.microsoft.com/en-us/library/mt736914.aspx</ref>
 
<ref>https://technet.microsoft.com/en-us/library/mt736914.aspx</ref>
 +
==Install Module==
 +
In an elevated prompt, run<ref>https://docs.microsoft.com/en-us/office365/enterprise/powershell/connect-to-office-365-powershell</ref>
 +
<pre>
 +
Install-Module MSOnline
 +
</pre>
 
==Office 365 Administrator Roles==
 
==Office 365 Administrator Roles==
 
When you need to allow someone to access billing information in the 365 account.
 
When you need to allow someone to access billing information in the 365 account.

Revision as of 10:25, 28 September 2018

[1] [2]

Install Module

In an elevated prompt, run[3]

Install-Module MSOnline

Office 365 Administrator Roles

When you need to allow someone to access billing information in the 365 account.

$usercred = get-credential
connect-msolservice -credential $usercred
#get-msolrole
add-msolroles -rolename "Billing Administrators" -rolememberemailaddress <email of user to be assigned role>