Search found 14 matches
- 08 Dec 2013 01:18
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
Hey guys, how about from portable drive to these protected directories? I mean, something like this: "\MyFolder\File.txt" "C:\Windows\MyFolder\File.txt" This works perfect for me on Windows XP, Vista and Windows 7, but not on Windows 8. I get the Access Denied issue, any idea? Th...
- 05 Dec 2013 18:35
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
You right Squashman, I just did, and guess what, the file was copied with no issues! But that was a 0 bytes file, and was just one, but no excuses, the file was copied! I just tried from a pen-drive but did not worked, but thats because I included the path in this order: "COPY "\MyPendrive...
- 05 Dec 2013 17:42
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
The system cannot find the file specified. Error occurred while processing: C:\Users\Documents\Desktop\Copy. The system cannot find the file specified. Error occurred while processing: File.CMD. C:\Users\Documents\Desktop Input File exists Folder: C:\Windows\MyFolder\ exists Access is denied. 0 file...
- 05 Dec 2013 16:45
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
No Shadow, the files are there, the files were behind the cmd window,
the error point to a path "The system cannot find the path specified."
but the path is there, this is due to a elevate permision needed
the error point to a path "The system cannot find the path specified."
but the path is there, this is due to a elevate permision needed
- 05 Dec 2013 16:40
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
Squashman, I have nothing to hide from my script, all I need is to be able to copy from one location to another, but in this case is to these system directories: Windows & System32 and as for the "Alt+Prtscreen" I know that since Windows 98, then reason I'm posting the whole screen is ...
- 05 Dec 2013 16:34
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
Windows 8 include the Snipping Tool the same from Windows Vista and Windows 7
Then is not, you can also use the [ Print ] button and then just paste it on Paint and save it.
Why ?
Then is not, you can also use the [ Print ] button and then just paste it on Paint and save it.
Why ?
- 05 Dec 2013 16:26
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
This is the error I get if I try to copy files:


- 05 Dec 2013 16:11
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
My bad, here is an screenshot, and yes, I was able to make the dir with no issues, but I have no problem doing this with a batch file as long as I run the batch as an admin, But not the copy proccess, that even if I run the batch normal or as an admin, it will not do the trick. http://i.imgur.com/69...
- 05 Dec 2013 15:40
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
Shadow, I knew it, yeah, look, if you try this on a laptop or desktop with Windows 8 that comes with it, for some reasons I get this access denied issue, But if I take a laptop and I install Windows 8 on it and try, I don't get this issue. I even post this question on expert-exchange and they tried ...
- 05 Dec 2013 12:32
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
The weird thing on your example is that I don't see the name of the batch script running. I mean, your example look like when you run cmd and then type a command and hit enter. and by the way, here is one thing that I noticed, if you install Windows 8 on Windows 7, you don't get to see this error th...
- 04 Dec 2013 19:38
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
Shadow, this is what I want to accomplish...
Run my batch script and a folder is create under C:\WINDOWS\MyFolder
Right after that my File.txt will be copied to that directorie
Thats it
But I'm stuck cuz I need a batch script with elevate privileges in order to do this task.
Run my batch script and a folder is create under C:\WINDOWS\MyFolder
Right after that my File.txt will be copied to that directorie
Thats it
But I'm stuck cuz I need a batch script with elevate privileges in order to do this task.
- 04 Dec 2013 19:23
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
Is a variable reference
- 04 Dec 2013 17:05
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Re: Batch COPY not working on Windows 8
I know that...
This is my script:
This is my script:
Code: Select all
Set MyFolder=%~dp0
Set DestDir=C:\WINDOWS\MyFolder
Mkdir "%DestDir%" 2>NUL
COPY "C:\users\%username%\desktop\File.txt" "C:\WINDOWS\MyFolder\File.txt"
- 04 Dec 2013 13:06
- Forum: DOS Batch Forum
- Topic: Batch COPY not working on Windows 8
- Replies: 28
- Views: 26176
Batch COPY not working on Windows 8
Hi everyone, I always been using batch scrinting to: COPY, MOVE, DELETE, etc. Somehow all my attempts with my scripts seem to fail on Windows 8. Here is what am doing, I want to copy files right from the desktop to: "C:\WINDOWS\MyFolder" but I get an "ACCESS DENIED" I am aware th...