http://www.youtube.com/watch?v=A4YM_ZSXqPk
This video shows how to add a disclaimer to messages in Office 365
http://www.youtube.com/watch?v=A4YM_ZSXqPk
This video shows how to add a disclaimer to messages in Office 365
OK, so you have managed to get yourself through the nice issue of being able to export email from exchange2007 via Power-shell http://technet.microsoft.com/en-us/library/bb266964(v=exchg.80).aspx , Where you needed a whole list of things (32 bit machine,Powershell,.net framework,Exchange Management Tools (2007),Outlook,IIS components enabled etc… but you still have the problem of needing to export ALL mailboxes at once (seperatingContinue reading “Export All Mailboxes from Exchange2007 without the Fuss…”
Manually configure Outlook for Office 365 Exchange Online
For many reasons, you might want to manually configure Outlook to work with Office 365.
Here are some obstacles you may encounter:
This link shows you how to do it:
Create a CSV file with the following format: UPN,Password mary@mycompany.ie,Ireland1002* save it as resetuserpassword.csv $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session Connect-Msolservice Import-CSV “c:\users\pgilbride\desktop\resetuserpassword.csv” | foreach {Set-MsolUserPassword -userPrincipalName $_.UPN -NewPassword $_.Password -ForceChangePassword $false1} Obviously change the location above (in bold) to be that of yourContinue reading “PowerShell Script to set all passwords to be the same in Office365”
To create bulk distribution groups at one time, and add multiple members to each distribution group, please take to the following steps: 1. Install and configure Windows PowerShell. 2. Connect Windows PowerShell to Exchange Online. ========= Create bulk distribution groups at one time 1. Prepare a CSV file to import multiple distribution groups, and store it inContinue reading “Add multiple members to a distribution group in O365”
Following on from the previous post, here is the complete script. Copy and paste it into Powershell. It will ask for Id and PW twice, please input. $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session Connect-Msolservice Get-MsolUser | Set-MsolUser -PasswordNeverExpires $true Get-MsolUser | Select UserPrincipalName, PasswordNeverExpires
For users who are not synchronized through directory synchronization In Office 365, customers can use the Microsoft Online Services Module for Windows PowerShell (MOSMWP) to configure their user passwords to never expire. The following steps can be provided to customers who want to configure these settings for their users. Get-ExecutionPolicy If set to unrestricted continue,Continue reading “Turn off password expiration for domain in Office365”
Delegation of MailBox Access Rights allows users to designate another user to send mail on their behalf. For example, the service administrator can modify a user’s mailbox settings to grant “send as” permissions to administrative assistants or to enable full mailbox access for third-party applications, such as archiving applications and fax servers.Exchange Online allows serviceContinue reading “(O365) Delegation of Mailbox Access Rights to another user using PowerShell Commands:”
Many small businesses have printers that will scan to e-mail, phone systems that will send e-mail status updates, and really a number of other e-mail enabled devices. When converting to a cloud based e-mail system, like Office 365, sometimes these devices cannot be configured to send e-mail over encrypted links to the cloud. Office 365Continue reading “How to get Scanner’s emailing after moving to Office365”