Hi,
today I moved a simple Website from one Sharepoint farm to another. The difference between the two farms is that the source farm has SPF2010 SP1 installed whereas the destination farm doesn't have, i.e. just SPF 2010.
I exported the website on the source farm using:
Export-SPWeb -Identity $SourceWeb -Path $BackupFile -IncludeUserSecurity -includeversions All -Force
On the destination farm I imported the website using:
Import-SPWeb -Identity $destinationWeb -Path $BackupFile -IncludeUserSecurity -Force
The import stoped because source and destination Website had different languages.
After that I discovered, that the user "NT Authority\Authenticated Users" has been removed from the Site Collection where the destination Website sits.
I have more than 1000 websites in that Site Collection almost all with broken permission inheritance and "NT Authority\Authenticated Users" used in hundrets of them.
Question: do you think the uncomplete Import-SPWeb command could have that issue caused?
Many thanks
Mauimart