A client within the same domain that can access the server can also access the admin images using the shortcut icon. A client in a different domain cannot access the server. The use of the shortcut icon by a client in a different domain "Domain2" fails because the location path in the .lnk points to a location within the server Domain1. In order to make it accessible to the clients in Domain2, where Domain2 is any domain other than Domain1, remove the original deployment location and use a relative path to allow deployment image location change.
Create a deployment image called, for example MyDeployConfig.
After the Admin image creation process is completed, browse to \\ServerLocation\Shared Folder\ MyDeployConfig
Copy the entire deployment image folder MyDeployConfig to the new location such as a different server or a USB drive .
In the next step you modify the location Target and Start paths in the INK file to correspond to the new location.
Right click MyDeployConfig.INK in the new location and select Properties.
Modify the Target and Start paths to correspond to the new location as follows:
New server domain –
Replace \\Server_Location\Shared_Folder \MyDeployConfig\Img\Setup.exe /qb /I \\Server_Location\Shared_Folder\MyDeployConfig\Img\MyDeployConfig.ini /language en-us
with
\\New Server_Location\New_Shared_Folder\MyDeployConfig\Img\Setup.exe /qb /I \\New Server_Location\New Shared_Folder\MyDeployConfig\Img\MyDeployConfig.ini /language en-us
USB or DVD drive – Where E:\ represents the letter drive:
Replace \\Server_Location\Shared_Folder\MyDeployConfig\Img\Setup.exe /qb /I \\Server_Location\Shared_Folder\MyDeployConfig\Img\MyDeployConfig.ini /language en-us
with
E:\ MyDeployConfig\Img\Setup.exe /qb /I E:\ MyDeployConfig\Img\MyDeployConfig.ini /language en-us
An alternative workflow for using relative paths in an INK file is to create a .BAT file from the Target line deployment shortcut and then make the path in the .BAT file relative:
\\Server_Location\Shared_Folder\MyDeployConfig\Img\Setup.exe /qb /I \\Server_Location\Shared_Folder\MyDeployConfig\Img\MyDeployConfig.ini /language en-us
.\ MyDeployConfig\Img\Setup.exe /qb /I .\ MyDeployConfig\Img\MyDeployConfig.ini /language en-us