Windows Batch
--
Questions
--
Followers
Top Experts
Tried running the CMD also with administrator rights and the same thing. Please advise.
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
You should not be trying to copy things into this folder lest you make your system unstable later or even not working.
Click properties
Go to security
Change ths owner of the folder to yourself.
Close the properties of the folder.
Open the properties again
go to security
set yourself as having full control
Now run your robocopy from an elevated command prompt
::: Ben, I am logged in as an administrator, I have total admin rights to the system.
I still run the CMD with administrator rights but no go.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
 After taking ownership of the folder (and replacing sub itemd) and setting yourself full control (and replacing sub items)?
ROBOCOPY /COPYALL /s C:\abc C:\windows\syswow64
This did not work

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
 ROBOCOPY /COPYALL /s
RoboCopy MUST follow this format:
ROBOCOPY "C:\abc" "C:\windows\syswow64" *
The Command Requires that Source and Destination are the first two items, and that the file Glob comes 3rd, and all options follow that.
ie Usage :: ROBOCOPY source destination [file [file]...] [options]
The following Robocopy command would be functional:
ROBOCOPY "C:\abc" "C:\windows\syswow64" * /COPYALL /s
Windows Batch
--
Questions
--
Followers
Top Experts
Batch files are text files containing a script of commands that are executed by the command interpreter on DOS, OS/2 and Windows systems. Most commonly, they are used to perform a series of functions that are repeated -- copying a set of files created daily with one step, for example.