Upgrade and Migrate Flashcards
What is used to perform migrations?
Windows Server Migration Tools
*installed on destination server
What is used to deploy a package to the source server?
smigdeploy.exe
What is a dependency of smigdeploy.exe?
.NET 3.5
During in place upgrade, what happens to the original windows directory?
Gets renamed windows.old
What are the only configuration paths supported with in place upgrade?
Server2012/R2 > Server 2016 (directly)
Standard > Datacenter
What is the PoSH command to install Windows Server Migration Tools?
Install-WindowsFeature -Name Migration
What is the PoSH command to generate the distribution package on the destination machine
cd windows\system32\servermigrationtools
.\smigdeploy.exe /package /architecture amd64 / os WS12R2 /path C:\
*then send to source machine
What is the PoSH command to register migration tools on the source machine?
Register: .\SMT_WS12R2_amd64\SmigDeploy.exe
Import smig cmdlets: Add-PSSnapin Microsoft.Windows.ServerManager.Migration
What is the PoSH command to view roles and features eligible for migration?
Get-SmigServerFeature
What is the PoSH command to create the migration store on the source machine?
Export-SmigServerSetting -FeatureID -Path
*then send to destination machine
What is the PoSH command to import the migration store on the destination machine?
Import-SmigServerSetting -FeatureID -Path -Force