lucius100 Posted February 2, 2015 Posted February 2, 2015 I found this >zip.au3 , so i want to ask if that script support for password protected zip? For example, here i have test.zip with 12345 as password , inside that contain test.txt So how do i script it to unzip protected test.zip to %systemdrive% and open test.txt after finished unzip ?
Solution oapjr Posted February 2, 2015 Solution Posted February 2, 2015 I don't know how to use zip.au3 but you can try 7za http://www.dotnetperls.com/7-zip-examples lucius100 and javiwhite 2
lucius100 Posted February 2, 2015 Author Posted February 2, 2015 (edited) Okay, so i decided to create it without autoit How do i script autoit to open zip and enter the password? Here is example of my file box.zip - inside > box.exe - inside > after enter password it will extract box.jpg to system drive. i try to script auto open and enter password, because i don't want anybody to know the password. Run ("Box.exe") Global $App = "Enter password" WinWait($App) ControlSend($App, "", "Edit1", "{test}") i try to use this, but doesn't do anything after open the file. Edit : Lack administrator, problem solved box.zip Edited February 2, 2015 by lucius100
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now