2014-01-14 94 views
1

我被要求“帮助”客户将他们的内部AD/Exchange 2010实施迁移到云(Office 365)。使用Windows Azure进行Office 365迁移练习

我不知道从哪里开始,虽然我已经通过technet观看了关于该主题的不少视频,但我觉得我需要一些实践经验。

因此,我想知道是否有人知道如何在Windows Azure上设置模拟环境(建立一个具有多个用户的新AD服务器)的一些分步指南,然后将该环境迁移到Office 365?

回答

1

我肯定会建议在Azure IaaS上设置一个实验室环境,以便您可以遍历整个过程。

以下是基本过程中,我使用...

  • 通过门户网站
  • 建立一个新的虚拟网络建立亲和关系组,以确保资源的协同定位
  • 创建一个存储帐户托管您的VHD的
  • 创建PowerShell脚本设置在AD VM的AD VM
  • 安装AD DS和您的域配置
  • 创建PowerShell脚本其他加入域的虚拟机的
  • 如果你想联合认证,创建AD FS VM
  • 创建一个虚拟机主机目录同步
  • 在Office
  • 配置目录同步365
  • 从Office安装目录同步在你的目录同步VM 365门户
  • 创建一个VM作为一个测试客户端或配置点到站点虚拟机和现有的计算机添加到您的实验室域

下面是一个示例脚本ŧ o创建AD VM ...

Import-Module "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\Azure\Azure.psd1" 
Import-AzurePublishSettingsFile 'C:\Lab\credentials.publishsettings' 
Set-AzureSubscription -SubscriptionName '{your Azure subscription}' -CurrentStorageAccount {your storage account name} 
Select-AzureSubscription -SubscriptionName '{your Azure subscription}' 

#Deploy the Domain Controller in a virtual network 
#------------------------------------------------- 


#Specify my DC's DNS IP (127.0.0.1) 
$myDNS = New-AzureDNS -Name 'LabDNS' -IPAddress '127.0.0.1' 
$vmname = 'LabDC' 

# OS Image to Use 

# Get the latest Windows Server 2008 R2 SP1 image 
$family = "*Windows Server 2008 R2 SP1*" 

$images = Get-AzureVMImage ` 
| where { $_.ImageFamily -like $family } ` 
| Sort-Object -Descending -Property PublishedDate 

$image = $images[0].ImageName 

Write-Host "Using image: " + $image 

Read-Host "Continue or Ctrl-C to cancel" 

$service = 'LabDomain' 
$AG = 'LabAffinityGroup' 
$vnet = 'LabNetwork' 
$user = "LabAdmin" 
$password = 'LabPassword123' 
$subnet = 'Subnet-1' 

#VM Configuration 
$MyDC = New-AzureVMConfig -name $vmname -InstanceSize 'Small' -ImageName $image | 
    Add-AzureProvisioningConfig -Windows -AdminUsername $user -Password $password | 
     Set-AzureSubnet -SubnetNames $subnet 

New-AzureVM -ServiceName $service -AffinityGroup $AG -VMs $MyDC -DnsSettings $myDNS -VNetName $vnet 
+0

Thanks! 这正是我正在寻找的指南! – user2727893

+0

很高兴为您服务!如果您需要更具体的指导,大声说出来,我会尽我所能扩大答案。 –

相关问题