Remove duplicates mailbox Office365 powershell

How to remove double items from a office365 mailbox.

Set-ExecutionPolicy RemoteSigned

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session

Connect-MsolService –Credential $LiveCred

-Mailbox [email protected] -RecurseFolders -MatchEntireMailbox -Credentials $UserCredential

 

Then run this script with the extensions.

(more…)

Continue Reading

Change email adresses or reply adress office365 after removing last exchange server from on-premise

The operation on mailbox “User” failed because it’s out of the
current user’s write scope. The action ‘Set-Mailbox’, ‘EmailAddresses’, can’t
be performed on the object ‘User’ because the object is being
synchronized from your on-premises organization. This action should be
performed on the object in your on-premises organization.

(more…)

Continue Reading

Save and deploy Sharepoint Site as a Template

Recently I was browsing the TechNet Forums like I usually do a few times a week, and I’ve seen a question a user was asking, which intrigued me.

  • When we save a subsite as a template, can we re-use it to create a Site Collection?

I thought that was a good question, especially in SharePoint Online (where things are a bit “restricted”), and I’ve never had this request either so… What’s the best way to know if that’s possible? You got it. Try!
So I went into my own Office 365 environment, and started to play around, trying to achieve what the user was asking for.

Needless to say that I was happy to be able to help this user at the end 😉 (more…)

Continue Reading

Use WDS to boot Linux live cd’s

In a previous article, Installing Linux via PXE using Windows Deployment Services (WDS), I talked about using PXELinux to enable deployment of WDS images, Linux distros and a multitude of tools. It got a bit heavy when trying to make this all work but the system is now up & running and we have already benefitted from it on many occasions. So here is my guide for Microsoft admins wanting to enhance their existing Windows Deployment Services server.

(more…)

Continue Reading
Close Menu