Sharp MFP Scan to Network shared folder
On windows 10 in order for scan to network to work we will need to…
Stop Windows Defender Service on Windows 10
Open powershell as administrator Set-MpPreference -DisableRealtimeMonitoring $true Set-MpPreference -DisableRealtimeMonitoring $false For more information https://superuser.com/questions/1046297/how-do-i-turn-off-windows-defender-from-the-command-line
Useful Windows Commands
net stop spooler net start spooler appwiz.cpl eventvwr devmgmt.msc to open device manager…
Get Users with a specific Office 365 License
Sometimes we need to get users with a specific Get-MsolUser -MaxResults 15000 | Where-Object {($_.licenses).AccountSkuId…
Useful Powershell commands for Active Directory
> Get-ADComputer -SearchBase "OU=OU1,OU=OU2,OU=OU3,DC=domain,DC=com" -Filter * -Prop erties * | Select -Property Name,Enabled,LastLogonDate | Export-CSV…
Useful PowerShell Commands for Office 365 Administration
Users Get-MsolUser -UserPrincipalName xxxx Groups Get-Group -Identity xxxx Get-DistributionGroup -Identity xxxx Remove-UnifiedGroup -Identity Set-DistributionGroup –Identity…
Delete an object from Azure AD synced from On Premise
Sometimes we need to delete an object from Azure AD which is synced with the…
Exchange Online Error: The user’s on-premises mailbox hasn’t been migrated
Recently I came across this error when trying to provision a new mailbox for a…