Office365的若干问题

Office365作为Microsoft的企业云办公领域的作品,还是蛮有竞争力的。尤其是在中国这个特殊国情下,google不得力,其他巨头还没有进来的大局下。

online exchange/online lync/online sharepoint作为了Office365的三个主打产品。以E1 plan来讲,一个月一个user 10美金,不包含online office的编辑功能,但是exchagne/owa/lync/lync voice/lync colaboration/sharepoint基本都齐了。每个user storage 50G。

说几个比较细的地方:

1. mail怎么做归档?

有几个思路,新建一个archiving邮箱,然后新建rule,所有进出message都BCC到archiving这个邮箱;通过journal功能,配置一个邮箱来接收所有进出的message,不过必须是外部的邮箱,比如gmail。

2. 怎么备份mail?

还是通过exchange吧,通过导出功能,备份到硬盘上的pst。

3. 用户密码永不过期?

缺省office365 3个月必须更换密码,但是每次都是让outlook用户摸不着头脑,不像AD里面,用户在登录机器的时候会提示,在cloud环境,只知道outlook不能用… 那就密码永不过期吧。

有些复杂,必须用到power shell。

1) $Cred = Get-Credential

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

Import-PSSession $Session

2) Import-Module MSOnline

$Creds = Get-Credential

Connect-MsolService –Credential $Creds

3) Set-MsolUser -UserPrincipalName contoso@microsoft.com -PasswordNeverExpires $true

Note If you want to change the setting for all the users in an organization, run the following command:

Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true

4) Remove-PSSession $Session

先说这么多,以后再补充。

 

发表回复