Difference between revisions of "Office 365 Exchange Online"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) |
Michael.mast (talk | contribs) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | *<b><u>NOTE : THIS IS NOT CORRECT, THIS IS FOR OFFICE 365 MANAGEMENT AND NOT EXCHANGE ONLINE</u></b> | ||
<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. | ||
Line 6: | Line 12: | ||
$usercred = get-credential | $usercred = get-credential | ||
connect-msolservice -credential $usercred | connect-msolservice -credential $usercred | ||
− | get-msolrole | + | #get-msolrole |
+ | add-msolroles -rolename "Billing Administrators" -rolememberemailaddress <email of user to be assigned role> |
Latest revision as of 11:21, 28 September 2018
- NOTE : THIS IS NOT CORRECT, THIS IS FOR OFFICE 365 MANAGEMENT AND NOT EXCHANGE ONLINE
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>