Hi,
I'm trying to copy a directory with files with the WinReducerPI.cmd
This did not work, because of not enough rights.
First I simply try this,
but I get the message, that the directory is not there.
So I thought I had to create them first,
but now I get the error, that I do not have the rights to do that.
What can I do ?
I'm trying to copy a directory with files with the WinReducerPI.cmd
This did not work, because of not enough rights.
First I simply try this,
Code:
call xcopy "%CDROM%\WinReducerPI\autoruns\*" "c:\Program Files\AutoRuns" /s /e /c /y /q > NUL
but I get the message, that the directory is not there.
So I thought I had to create them first,
Code:
md "c:\Program Files\AutoRuns"
call xcopy "%CDROM%\WinReducerPI\autoruns\*" "c:\Program Files\AutoRuns" /s /e /c /y /q > NUL
but now I get the error, that I do not have the rights to do that.
What can I do ?