6
1
In a batch file:
START "7-zip" /D "C:\Program Files\7-Zip\" "7z.exe" a -o <F:> testArchive F:\test
Or, alone on the cmd as:
7z.exe a -o <C:\users\user\Desktop> 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.
Are yoou running it as that user or as an admin? – EBGreen – 2012-02-07T19:18:45.197
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. – eichoa3I – 2012-02-07T19:22:19.480
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 – 2012-02-07T19:25:35.377
@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` – eichoa3I – 2012-02-08T02:07:49.587
Ugghh...edit the question and add the new info in there please. – EBGreen – 2012-02-08T15:14:26.950
What is the permission on this file? who is the owner? – Bibhas – 2012-02-08T16:40:53.800
Does the -o parameter not need to be followed by the name of the folder, as in -oe:\mydocuments ? – sgmoore – 2012-02-08T20:29:33.063