AWS MGN による Windows Server の移行において、ドライブレターが割り当てられていないディスクはレプリケーション対象でしょうか

AWS MGN による Windows Server の移行において、ドライブレターが割り当てられていないディスクはレプリケーション対象でしょうか

2025.10.02

困っていること

オンプレミス環境の Windows Server では、ドライブにドライブレターを割り当てずにマウントし、その領域をデータ保管に利用しています。
AWS Application Migration Service (AWS MGN) を利用して、オンプレミス環境で稼働中の Windows Server を AWS 環境へ移行予定ですが、ドライブレターが割り当てられていないディスクの扱いはどのようになるのか教えてください。

どう対応すればいいの?

デフォルト設定で AWS Replication Agent をインストールした場合、自動検出されるのはドライブレター付きのディスクのみであり、マウントポイントのみ割り当てられたディスクは対象から外れる挙動です。
そのため、もしドライブレターなしのディスクも移行したい場合は、AWS Replication Agent インストール時にオプションを指定し、対象ディスクを明示的に指定する必要があります。
例えば以下のようにディスクを指定してインストールします。

			
			AwsReplicationWindowsInstaller.exe `
  --drives="\\.\SAMPLEDRIVE0,\\.\SAMPLEDRIVE1,\\.\SAMPLEDRIVE2" `
  --force-volumes --no-prompt

		

https://docs.aws.amazon.com/mgn/latest/ug/windows-agent.html

--devices
This parameter specifies which specific disks to replicate.

--force-volumes
This parameter must be used with the --no-prompt parameter. This parameter will cancel the automatic detection of physical disks to replicate. You will need to specify the exact disks to replicate using the --devices parameter (including the root disk, failure to specify the root disk will cause replication to fail). This parameter should only be used as a troubleshooting tool if the --devices parameter fails to identify the disks correctly.

参考資料

Installing the AWS Replication Agent on Windows servers - Application Migration Service

この記事をシェアする

FacebookHatena blogX

関連記事

AWS MGN による Windows Server の移行において、ドライブレターが割り当てられていないディスクはレプリケーション対象でしょうか | DevelopersIO