使用powershell建立恢复存储组

1、创建恢复存储组:
new-storagegroup -server mail.test.com -logfolderpath c:\rsg\rsglog -name  -systemfolderpath c:\rsg\rsgdata -recovery
命令执行后会在下方看到:
name        server    replicated    recovery
rsgstore    mail       none           true
2、在恢复存储组中创建你要恢复的数据库(就是你要为恢复存储组创建一个数据库)
new-mailboxdatabase -mailboxdatabasetorecover “mail\first storage group\mailbox(新建的数据库的名字)”-storagegroup mail\rsgstore -edbfilepath c:\rsg\rsgdata\database.edb
命令执行后会在下方看到:
name        server    replicated    recovery
mailbox    mail       rsgstore           true
当然powershell命令还为我们提供了更方便的的方式:
你只用输入:new-mailboxdatabase后回车按照提示输入数据库名称和存储组名称即可。(我建议用这条不容易出错)
3、设置新数据库可以被覆盖
set-mailboxdatabase -identity "mail\rsgstore\mailbox" -allowfilerestore:$true
4、挂载数据库
mount-database -identity "mail\rsgstore\mailbox"
5、现在可通过windows ntbackup工具或者其他工具如“微软的dpm”来恢复邮箱了。
6、恢复结束后进行恢复数据库的停用及删除工作
停用dismount-database“mail\rsgstore\mailbox”
删除数据库remove-mailboxdatabase “mail\rsgstore\mailbox”
删除恢复存储组remove-storagegroup “mail\regstore”
 
exchange2007恢复存储组的建立过程就说到这!

你可能感兴趣的:(职场,powershell,休闲,建立,恢复存储组)