It is possible to either create a dummy Users directory on the Windows drive temporarily (method 1) or create a symbolic link (method 2).
To complete Method 1, create a mid-level task with the following:
--- beginning of script ---
@echo off
for %%I in (Z W V U S R Q P O N M L K J I H G F E D C) do (
if exist %%I:\WINDOWS set WINDOWS_DRIVE=%%I:
)
for %%I in (Z W V U S R Q P O N M L K J I H G F E D C) do (
if exist %%I:\USERS set PROFILE_DRIVE=%%I:
)
xcopy /seiyh %PROFILE_DRIVE%\Users\DEFAULT %WINDOWS_DRIVE%\Users\DEFAULT
y:\hta\copy_drivers.vbs
rmdir /s /q %WINDOWS_DRIVE%\Users\DEFAULT
--- end of file ---
To complete Method 2, create a mid-level task with the following:
@echo off
for %%I in (Z W V U S R Q P O N M L K J I H G F E D C) do (
if exist %%I:\WINDOWS set WINDOWS_DRIVE=%%I:
)
for %%I in (Z W V U S R Q P O N M L K J I H G F E D C) do (
if exist %%I:\USERS set PROFILE_DRIVE=%%I:
)
mklink /d %WINDOWS_DRIVE%\Users\DEFAULT %PROFILE_DRIVE%\Users\DEFAULT
--- end of file ---