In a batch file:

START "7-zip" /D "C:\Program Files\7-Zip\" "7z.exe" a -o testArchive F:\test

Or, alone on the cmd as:

7z.exe a -o testArc C:users\user\desktop\test

returns "Access is denied". I would expect it to run 7-zip with the specified parameters. Why doesn't it?

Here is the code for the batch file:

@echo off 
:Variables 
set SOURCE=F:\myDocuments\ 
set DESTINATION=E:\myDocuments\ 
:If disc space is available, make tar ball or .7z or whatever of /myDocuments and place it in F:/Backups 
START "7-zip" /D "C:\Program Files\7-Zip\" "7z.exe" a -o <F:> testArchive F:\test 
pause 
:echo %SOURCE% 
:echo %DESTINATION% 
:pause 
:run create sync. on documents to H:/myDocuments 
:Otherwise, say there's not enough disc space

This doesn't happen if proper syntax is followed for the z-zip command. Access is Denied was due to a 7zip syntax error.

link|improve this question

50% accept rate
Are yoou running it as that user or as an admin? – EBGreen Feb 7 at 19:18
I've tried both; i.e., right clicking the batch file and selecting 'run as administrator', and running it in an administrator's cmd window. – stuckey Feb 7 at 19:22
Depending on the security on your machine, that may or may not give you access. Try shift right click -> Run as different User then run it as an actual admin account. – EBGreen Feb 7 at 19:25
@EBGreen Still getting access is denied. I'm adding more information here: OS is WIN7, the batch file is (a work in progress): @echo off :Variables set SOURCE=F:\myDocuments\ set DESTINATION=E:\myDocuments\ :If disc space is available, make tar ball or .7z or whatever of /myDocuments and place it in F:/Backups START "7-zip" /D "C:\Program Files\7-Zip\" "7z.exe" a -o <F:> testArchive F:\test pause :echo %SOURCE% :echo %DESTINATION% :pause :run create sync. on documents to H:/myDocuments :Otherwise, say there's not enough disc space – stuckey Feb 8 at 2:07
Ugghh...edit the question and add the new info in there please. – EBGreen Feb 8 at 15:14
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.