Hi
I am trying to migrate from IIS 7.0 on windows 2008 DC Edition x86 to IIS 8 windows 2012 Pro x64.
OLD 2008 MACHINE NAME: WSPWEB-1
NEW 2012 MACHINE NAME: WSPWEB-1NEW
on WSPWEB-1 on Web Deploy V3 folder I run:
msdeploy -verb:sync -source:metakey=lm/w3svc/442,computername=WSPWEB-1 -dest:auto -enableLink:appPool -whatif > c:\msdeploysync.log
then i move the folder over the network to WSPWEB-1NEW machine and run command:
msdeploy -verb:sync -source:package=c:\Site1.zip -dest:auto -enableLink:appPool > WebDeploySync.log
I then add a binding to the site to test it, the application pool gives a 503 error as the user that the application pools runs as is not migrated.
Can the tool also migrate the users and passwords??
I tried using Windows migration tool, exported users/groups from WSPWEB-1 to WSPWEB1-NEW but it still didnt work so i think its not moving the users correctly.
Moving users script i run:
WSPWEB-1: Export-SmigServerSetting -User All -Group -Path c:\MigratedUsers\ -Verbose
WSPWEB-1NEW: Import-SmigServerSetting -User All -Group -Path c:\MigratedUsers\ -Verbose
HELP! :)