How to Configure Windows Server Storage Migration Service to Migrate Legacy File Servers

The Nightmare of File Server Migrations

Migrating a corporate file server is traditionally one of the most painful tasks in IT. If you have an aging Windows Server 2012 machine hosting 10 Terabytes of HR and Finance data, you cannot simply copy the files to a new Windows Server 2022 machine using a USB drive or standard robocopy.

If you perform a simple copy, you will destroy the complex NTFS security permissions (ACLs), sever the file ownership metadata, and break every single hidden network share configuration. Furthermore, when the new server comes online, it will have a different hostname and IP address, instantly breaking thousands of mapped network drives across the company, leading to a catastrophic Monday morning helpdesk flood.

To orchestrate a mathematically perfect, zero-downtime migration, Microsoft provides the Storage Migration Service (SMS). Built directly into the Windows Admin Center, SMS automatically inventories the old server, rapidly transfers the data while perfectly preserving all NTFS ACLs, and—most crucially—performs an identity swap (Cutover). It automatically renames the new server to the old server’s name and steals its IP address, ensuring that client computers never even realize a migration took place.

Step 1: Deploying the Orchestrator

The Storage Migration Service does not run natively on the old, legacy server. It requires an “Orchestrator” server running Windows Server 2019 or newer.

  1. Install the Windows Admin Center (WAC) on your IT administrative workstation or a dedicated management server.
  2. Log into the WAC web interface, navigate to your new Windows Server 2022 (which will act as the Orchestrator and potentially the destination), and install the Storage Migration Service role from the Roles & Features menu.
  3. Also, ensure the Storage Migration Service Proxy feature is installed on the destination server. This proxy enables a heavily multithreaded, high-speed transfer protocol that is vastly faster than legacy SMB.

Step 2: The Inventory Phase

Within the Windows Admin Center, navigate to the Storage Migration Service tab and click New Job.

The first phase is Inventory. You enter the hostname and administrator credentials for your legacy Windows Server 2012 file server. SMS will reach across the network and silently scan the entire machine.

It will return a detailed report showing:

  • Every single volume and its capacity.
  • Every single network share (including hidden administrative shares).
  • The exact configuration of the local users and groups associated with those shares.

You review this inventory and explicitly select which volumes you want to migrate to the new server.

Step 3: The Transfer Phase

Once you select the volumes, you proceed to the Transfer phase. Here, you map the old volumes to the new volumes (e.g., Map Old Server D:\ to New Server E:\).

When you click Start Transfer, SMS begins the heavy lifting. It uses a robust, block-level synchronization engine to pull the data across the network.

Crucially, during this phase, the old server remains entirely online and accessible to users. If a user modifies an Excel spreadsheet during the 10TB transfer, SMS doesn’t panic. It completes the initial baseline transfer, and then you simply click Transfer again. SMS performs a rapid delta-sync, catching only the files that changed since the first pass.

You can repeat this delta-sync every night for a week to ensure the destination server is perfectly synchronized and ready for the final cutover.

Step 4: The Cutover Phase (The Identity Swap)

This is where SMS proves its enterprise value. You schedule the Cutover for a weekend maintenance window. You will need to provide credentials that have permission to join and rename computers in Active Directory.

When you click Start Cutover, SMS executes a highly orchestrated sequence:

  1. It performs one final, hyper-fast delta sync to catch any last-minute file saves.
  2. It reaches into the old Server 2012 machine and forcefully changes its IP address to a random DHCP address.
  3. It renames the old server to a randomly generated name (e.g., OLD-FS-1) and reboots it.
  4. It reaches into the new Server 2022 machine, strips its temporary IP, and forcefully assigns it the exact static IP address of the old server.
  5. It renames the new server to the exact hostname of the old server.
  6. It updates the Active Directory computer objects and DNS records.
  7. It reboots the new server.

Step 5: Verification and Decommissioning

When Monday morning arrives, the users turn on their computers. Their Group Policy logon scripts execute, attempting to map the Z:\ drive to \\CorporateFS\Finance.

Because the new Windows Server 2022 machine is now named CorporateFS, holds the exact same IP address, and perfectly mimics the exact same NTFS permissions and network shares, the drive maps instantly. The users are completely oblivious to the fact that their data is now resting on a modernized, highly secure operating system.

Once you verify that backups are running successfully on the new server, you can safely power down and permanently decommission the legacy Windows Server 2012 machine.

Conclusion

Attempting to manually migrate an enterprise file server using robocopy scripts and manual DNS swaps is an incredibly risky, error-prone endeavor. By utilizing the Storage Migration Service within Windows Admin Center, IT architects can automate the entire lifecycle—inventory, transfer, and identity cutover—guaranteeing mathematically perfect data integrity and absolute zero impact on the end-user experience.

RELATED POSTS

  • How to Setup a SSTP (Secure Socket Tunneling Protocol) VPN in Windows Server
  • How to Clear the Windows WMI Provider Host Cache via PowerShell
  • How to Configure a Windows Server iSCSI Target using PowerShell
  • How to Clear the Windows RSAT (Remote Server Administration Tools) Cache via PowerShell
  • How to Export a Hyper-V Virtual Machine using PowerShell
  • Get the best tech tips delivered straight to your inbox.

    Join thousands of readers mastering Apple, Google, Microsoft, and Linux.