Can't Repair or Change Application after MDT Deployment without locating source media
-
10. května 2012 13:38
Post-deployment of a Windows 7 x64 OS, if an end-user attempts to repair or change an application installed by an MDT Task Sequence, they are prompted to enter the source media location.
That pop-up is prepopulated with Z:\Applications by default. Most of our installs are handled by a batch file and using the %deployroot% variable. Are there any suggestions on how to resolve this?
Všechny reakce
-
10. května 2012 17:34
If the instaler is a MSI it will use the UNC path. But for all others that cannot find the UNC path you need to run the installer using the UNC path. Since your are using batch file here's an example.
setlocal set cmd=setup.exe /q set drv=%~d0 FOR /F "usebackq tokens=1,2" %%a IN (`net use %drv% ^|findstr \\`) DO set UNC=%%b start "" /D %unc% /wait ".\%cmd%" echo %unc% endlocal
-
12. května 2012 19:13Applications installed from the deployment share should use the deployment share UNC, you're not hard-coding a Z: path with your install script are you?