How can I move the Automated Deployment Services (ADS) image store to a different disk?

John Savill

March 23, 2004

1 Min Read
ITPro Today logo in a gray background | ITPro Today

A. By default, ADS stores OS images in the C:images folder. To change this location, perform the following steps:

  1. Log on to the ADS server as an administrator.

  2. Start a command prompt.

  3. Stop the ADS Image Distribution service by typing

    net stop adsimgsvc
  4. Remove the ADS share by typing

    net share ADSImages$ /d
  5. Move the images folder to the new disk.

  6. Create a new ADS share by typing

    net share ADSImage$=:

    For example, to create a new share called "images" on the E drive, type

    net share ADSImage$=E:images
  7. After you create the new share, you must change the permissions so the Administrators and System groups have Full Control privileges and Network Service has Change and Read privileges. No other permissions should exist.

  8. Modify the registry so the Image Distribution service knows where you want to store the images. Start a registry editor (e.g., regedit.exe).

  9. Navigate to the HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesadsimgsvcParameters registry subkey.

  10. Double-click ImageRoot and change the value to the new path. Note that you must add an extra backslash () to the end of the string (e.g., E:images).

  11. Click OK.

  12. Restart the Image Distribution service by typing

    net start adsimgsvc

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like