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, ∼8083🔥, 0💬
Popular Posts:
How to Verify Apache server configuration for PHP scripts support? If you have followed our Configur...
Can I disable Windows service "Google Updater Service" to speedup my computer? GoogleUpdaterService....
What is wrong if you get an execution error: "The procedure entry point _zval_dtor could not be loca...
How to terminate a program that does not respond to its interface? Sometimes applications may encoun...
How to view system properties on Windows Server 2016? I just want to get some basic information abou...