Help me exorcise my demon possessed logon script
Posted
by
Detritus Maximus
on Server Fault
See other posts from Server Fault
or by Detritus Maximus
Published on 2011-01-12T17:16:10Z
Indexed on
2011/01/12
17:55 UTC
Read the original article
Hit count: 328
I have a user logon script that copies a file over to a subfolder of the current user's profile path:
Script (only showing the line that isn't working):
copy /Y c:\records\javasettings_Windows_x86.xml "%USERPROFILE%\Application Data\OpenOffice.org\3\user\config">>c:\records\OOo3%USERNAME%.txt 2>&1
To diagnose why it wasn't working, I did a >somelogfile.log parameter on the group policy script and found that what the above command is translating to is this:
C:\WINDOWS>copy /Y c:\records\javasettings_Windows_x86.xml "C:\Documents and Settings\test2\Application Data\OpenOffice.org\3\user\config" 1>>c:\records\OOo3test2.txt 2>&1
So the question is, how do I get rid of (exorcise) the " 1" in that line?
Update 1:
So the reason the script wasn't working was that the creator didn't have any permissions on the directory. I fixed the permissions, and now the file works but! I still have the " 1" showing on all the logs and would like to know why.
© Server Fault or respective owner