0
Arkadii007

Помогите написать батник

Рекомендуемые сообщения

Добрый день, помогите создать батник для backup по сети 

 

Вот текст строки создания архива

 

"C:\Program Files (x86)\7-Zip\7zG.exe" a -t7z KAMIN-%date%.7z -mx9 C:\Patch -scsWIN -ssw

@echo off

pause

 

Вопрос N1 Архив создаётся в том же месте, где лежит bat файл, какой параметр дописать что бы он создавал архив по пути C:\1  

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах

Ой извиняюсь затупил, строка приняла конечный вид  "C:\Program Files (x86)\7-Zip\7zG.exe" a -t7z C:\1\KAMIN-%date%.7z -mx9 C:\Patch -scsWIN -ssw

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах

-w (set Working directory) switch

Sets the working directory for the temporary base archive. By default, 7-Zip builds a new base archive file in the same directory as the old base archive file. By specifying this switch, you can set the working directory where the temporary base archive file will be built. After the temporary base archive file is built, it is copied over the original archive; then, the temporary file is deleted.

Syntax

-w[{dir_path}]

{dir_path}

Specifies the destination directory path. It's not required that a path end with a backslash.

If <dir_path> is not assigned, then 7-Zip will use the Windows temporary directory.

Example

7z a -tzip archive.zip *.cpp -wc:\temp

adds *.cpp files to the archive.zip archive, creating a temporary archive in c:\temp folder.

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах

Создайте аккаунт или войдите для комментирования

Вы должны быть пользователем, чтобы оставить комментарий

Создать аккаунт

Зарегистрируйтесь для получения аккаунта. Это просто!

Зарегистрировать аккаунт

Войти

Уже зарегистрированы? Войдите здесь.

Войти сейчас
0