Subscribe to Blog via Email
Join 773 other subscribers
|
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
Sometimes, an Office 365 migration results in some mailboxes in the wrong language.
You can bulk set the language and time zone for all users in Office 365 by using these Powershell scripts:
Dont, forget to connect to Office 365 first.
get-mailbox -ResultSize unlimited | Set-MailboxRegionalConfiguration -Language -TimeZone
In the
Read more… [Solved] Office 365: Bulk set Language and Time Zone for all users in Office 365
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
Bulk create mailbox :
First search al users and filter on UPN name, to make sure you don’t use system accounts, en pipe the result to Enable-Mailbox
Get-User -RecipientTypeDetails User -Filter { UserPrincipalName -ne $Null } | Enable-Mailbox
You can also bulk mail enable multiple users :
Use this command
Read more… E2013: Bulk create mailbox or mail enable multiple users [Solved]
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
First create Full-Access-SendAS.csv :
Column1,Column2 Richard,Ronald Ronald,Fred
This scripts gives the user Ronald Full Access and SendAs rights on the mailbox of user Richard, and the user Fred, Full Access and SendAs rights on the mailbox of user Ronald.
The option “-AutoMapping $false” prevents auto creation
Read more… Bulk give Full Access and SendAs rights
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
After creating new users, you have to set the mailbox regional settings, before importing the e-mail by .pst file
You can set the regional settings for an individual user to English (US):
Read more… Exchange 2013 : How to set the regional settings for a mailbox, or multiple mailboxes, before importing .pst files.
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
When you want to import pst files, you need to create a csv file, containing the user e-mail address and the file location of the pstfile, and of course the correct name of the pst file :
Csv file:
user,userpath
administrator@domain.nl,\\xch1\ImportPST\administrator.pst
test@ domain.nl,\\xch1\ImportPST\test.pst
To start the import
Read more… Exchange 2013 : How to bulk import pst files
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
Here you will find the powershell scripts, which were very useful for me.
All scripts are free of charge, use them at your own risk :
Today I had to export multiple mailboxes to pst files, for backup.
I’ve done this with powershell :
Use the script at your one
Read more… Bulk export to pst files
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
Maak een overzicht van de huidige gebruikers
get-mailbox | select-object name | export-CSV C:scriptsps1Bulk-Move-Mailbox.csv
Hierna krijg je een csv bestand waarin je de gebruikersnamen krijgt.
Bulk move mailbox Exchange 2010
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
Here you find the powershell script which were very useful for me.
All scripts are free of charge, use them at your own risk :
Hier is een methode om meerdere pst files in 1 maal in te laden in Exchange 2007.
Lokatie van de pst files: E:email Benodigdheden: Outlook
Read more… Powershell: Bulk import PST files in exchange 2007
Like this:Like Loading...
Here you find a powershell script which was very useful for me.
All scripts are free of charge, use them at your own risk :
Here you find the powershell script which were very useful for me.
All scripts are free of charge, use them at your own risk :
Met onderstaande script kun je gebruikers vanuit een csv bestand importeren.
Script :
Function secureit( $string ) { $ss = New-object System.Security.SecureString $string.GetEnumerator() | foreach-object
Read more… Powershell script voor Bulk import van users voor server 2008 en Exchange 2007
Like this:Like Loading...
|
|