服务器 频道

Win2008 R2实战之分支缓存迁移过程篇

  二、从源服务器迁移分支缓存的步骤

  1、在源服务器上,使用提升的用户权限打开 Windows PowerShell 会话。若要执行此操作,请依次单击「开始」、"所有程序"、"附件"和 Windows PowerShell,右键单击 Windows PowerShell 快捷方式,然后单击"以管理员身份运行"。

  2、将 Windows Server 迁移工具加载到 Windows PowerShell 会话。

  如果您使用「开始」菜单上的 Windows Server 迁移工具快捷方式打开了当前 Windows PowerShell 会话,则跳过该步骤并转到下一步。仅将 Windows Server 迁移工具管理单元加载到已使用其他一些方法打开且尚未加载该管理单元的某个 Windows PowerShell 会话。

  若要加载 Windows Server 迁移工具,请运行以下 cmdlet:

  Add-PSSnapin Microsoft.Windows.ServerManager.Migration

  3、在源服务器上的 Windows PowerShell 会话中,如果安装了分支缓存功能,请运行以下命令确定分支缓存服务的启动类型:

  netsh branchcache show status all

  通常返回的启动类型为 Automatic Start。记录该服务启动类型,以备将来参考。服务启动类型可能是下列任意一种:"禁用"、"按需启动"或"自动启动"。

  4、若要禁用分支缓存服务,请运行以下命令:

  Set-Service PeerDistSvc -StartupType Disabled

  5、若要停止分支缓存服务,请在 Windows PowerShell 会话中,运行以下命令:

  Stop-Service PeerDistSvc

  6、若要验证该服务的"当前状态"是否为停止以及"开始键入"是否为"禁用",请运行以下命令:

  netsh branchcache show status all

  7、此步骤完成后,在源服务器上运行 Export-SmigServerSetting cmdlet,其中 storepath 是包含 Svrmig.mig 的路径。该路径的一个示例为 \\fileserver\users\username\branchcachestore

  Export-SmigServerSetting -featureID BranchCache -path <storepath> -IPConfig -Verbose

  三、将分支缓存设置导入目标服务器的步骤

  1、使用提升的用户权限打开 Windows PowerShell 会话。若要执行此操作,请依次单击「开始」、"所有程序"、"附件"和"Windows PowerShell",右键单击"Windows PowerShell"快捷方式,然后单击"以管理员身份运行"。

  2、将 Windows Server 迁移工具加载到 Windows PowerShell 会话。

  如果您使用「开始」菜单上的 Windows Server 迁移工具快捷方式打开了当前 Windows PowerShell 会话,则跳过该步骤并转到下一步。仅将 Windows Server 迁移工具管理单元加载到已使用其他一些方法打开且尚未加载该管理单元的某个 Windows PowerShell 会话。

  若要加载 Windows Server 迁移工具,请运行以下命令:

  Add-PSSnapin Microsoft.Windows.ServerManager.Migration

  3、在目标服务器上,运行以下命令,其中 storepath 是含有 Svrmig.mig 文件的路径:

  Import-SmigServerSetting -featureid BranchCache -Path <storepath> -Force -Verbose

    参考:微软技术支持库。

0
相关文章