Recent Comments

Statistics

Giải nén nhiều file rar cùng password

@echo off cls ::Copyrights :P echo “Automatically extract multiple rar files” echo “^_^ Script created by ChicknSoup” ::Get filenames FOR %%1 in (*.rar) do ( ::Extract files “c:\program files\winrar\rar.exe” x -p[password] -y %%1)

Tự động chép 1 file vào các thư mục

@echo off cls ::Copyrights :P echo “Automatically copy a folder to serveral different folders” echo “^_^ Script created by ChicknSoup@UDS ^_^” :: Loop FOR /d %%1 in (*) do xcopy “D:\New Folder” /e %%1

Tự động tạo folder theo tên file

@echo off cls ::Copyrights :P echo “Automatically create folders with names=filenames and then move filesto such folders” echo “^_^ Script created by ChicknSoup@UDS_Requested by Gio_Xoay_Chieu ^_^” ::Get filenames FOR %%1 in (*.txt) do ( ::Create folders md %%~n1 ::Move files move %%1 . . . → Read More: Tự động tạo folder theo tên file