Collections:
Other Resources:
Running WinRAR in a Command Line Window
Running WinRAR in a Command Line Window
✍: Guest
WinRAR also support command line operations. This is important to allow users to incorporate WinRAR commands into automated scripts. Here is a simple script used to backup a directory, backup.bat:
@rem backup.bat
@rem Usage: backup directory zipfile password
\local\winrar\winrar a -afzip -r -p%3 %2.zip %1\*.*
The restore script is also very simple, restore.bat:
@rem restore.bat
@rem Usage: restore zipfile password
\local\winrar\winrar x -p%2 %1.zip .\
2008-10-07, ∼8442🔥, 0💬
Popular Posts:
I have a field in a MS Access form that is a foreign key pointing to another table. Can I use a comb...
What is "Visual Studio Standard Collector Service 150" in my Windows 7 service list? And how is "Vis...
A collection of 14 tutorials on Apache and PHP installation and configuration covering: How to downl...
Can I disable Windows service "Remote Procedure Call (RPC)" to speedup my computer? Windows service ...
What is causing the HTTP 403 (Forbidden) error when running PHP scripts with PHP CGI configuration? ...