Hello,
I need help with script that I can run as a batch file that would replace a certain file in the user folder for all users on a terminal server. This file contains settings I needed everyone to have. See my attempt below.
@echo off
XCOPY "C:\Documents and Settings\admin\Application Data\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\settings.sol"
"C:\Documents and Settings\%username%\Application Data\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\settings.sol" /y /f /e
End
I need help with script that I can run as a batch file that would replace a certain file in the user folder for all users on a terminal server. This file contains settings I needed everyone to have. See my attempt below.
@echo off
XCOPY "C:\Documents and Settings\admin\Application Data\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\settings.sol"
"C:\Documents and Settings\%username%\Application Data\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\settings.sol" /y /f /e
End