Run SharePoint Online Management Shell as Administrator. Connect to SPO Once connected use the following scripts (change identifiers to the target user) to increase OneDrive Storage. Get - For you to know the current state of the user's OneDrive Get-SPOSite -Identity https://delightgarrovillo-my.sharepoint.com/personal/Delight_delightgarrovillo_com | fl Set- to change the state of the user's OneDrive. Set-SPOSite -Identity... Continue Reading →
Connect PowerShell to Office 365 services
Unlike the on-premise set-up, it pretty easy to start the session, but with Office 365, you need to connect to each services and you also need to use the right module. Connect to Exchange Online (use windows Exchange PS or Azure AD PS) Set-ExecutionPolicy RemoteSigned /Use global admin credential/ $cred = get-credential $Session = New-PSSession... Continue Reading →
How to Get the o365 Enabled SKU of a User through PowerShell
1. Run Microsoft Azure Active Directory Module for Windows PowerShell as administrator. 2. Connect to O365 by using the following scripts. Install-Module -Name AzureAD Connect-MsolService #Log-in using your global administrator account (Other roles can also be used). (Get-MsolUser -UserPrincipalName username@domain.com).Licenses.ServiceStatus # This will return a list of SKUs that are enabled to the user's account... Continue Reading →