DOWNLOAD IMAGES WITH BAT FILES
Method 2: Manual Download (Browser)
If you prefer a manual approach:
Download each image:
Right-click each link → "Save image as..." (Chrome/Firefox/Edge).
Save all images in a folder (e.g.,
AliExpress_Images
).
Create a ZIP file:
Select all images → Right-click → "Send to" → "Compressed (zipped) folder".
Name the ZIP file (e.g.,
AliExpress_Images.zip
).
Let me know if you need help with any step! 🚀
Here’s a Windows Batch File (download_images.bat
) that will download all the images and automatically zip them into a folder:
Batch Script:
@echo off setlocal enabledelayedexpansion :: Create folders mkdir "downloaded_images" 2>nul :: List of image URLs set "URL[1]=https://ae-pic-a1.aliexpress-media.com/kf/S4f1871df5a7a46ba9022fcbd1a5fc48am.jpg" set "URL[2]=https://ae-pic-a1.aliexpress-media.com/kf/Sed6bbaacb1924186b7241d455aa4acede.jpg" set "URL[3]=https://ae-pic-a1.aliexpress-media.com/kf/S2f76b79191bd40da89c7fc357e8b2395O.jpg" set "URL[4]=https://ae-pic-a1.aliexpress-media.com/kf/S86aa57d804a0486e906c48d78bd2d78bZ.jpg" set "URL[5]=https://ae-pic-a1.aliexpress-media.com/kf/S5c8bdf55da1a4e6c9a956b73e6ea30685.jpg" set "URL[6]=https://ae-pic-a1.aliexpress-media.com/kf/S78327cfd96ac4c7abf31448a37d358dcb.jpg" set "URL[7]=https://ae-pic-a1.aliexpress-media.com/kf/S8d4b07d1f0da457fa96affaca7d08325r.jpg" set "URL[8]=https://ae-pic-a1.aliexpress-media.com/kf/S09ab7d58ffa54ef8a29aa97fd5ec70f7N.jpg" set "URL[9]=https://ae-pic-a1.aliexpress-media.com/kf/S5f51c85a2cf14c429fe0329dfd8a86f99.jpg" set "URL[10]=https://ae-pic-a1.aliexpress-media.com/kf/Sab012214f6354f358167f27c5123ca30P.jpg" set "URL[11]=https://ae-pic-a1.aliexpress-media.com/kf/Scd3c0c8368c44740b815da317349c4e77.jpg" set "URL[12]=https://ae-pic-a1.aliexpress-media.com/kf/S3063699134644437b8dea5ea017fb0beL.jpg" set "URL[13]=https://ae-pic-a1.aliexpress-media.com/kf/S021bda4084124037bb0a0d3bd383373di.jpg" set "URL[14]=https://ae-pic-a1.aliexpress-media.com/kf/S579d74b0b8c9417b944558bc31301179s.jpg" set "URL[15]=https://ae-pic-a1.aliexpress-media.com/kf/Seef184ed24734bd09e2457e5ebfafe6eB.jpg" set "URL[16]=https://ae-pic-a1.aliexpress-media.com/kf/S56d1aa61edac4641babe98b83eaacbdax.jpg" set "URL[17]=https://ae-pic-a1.aliexpress-media.com/kf/S124720bf191345278042740ab3d8b72ah.jpg" set "URL[18]=https://ae-pic-a1.aliexpress-media.com/kf/S7255d0402ed541d6bd419b42d3f0a480X.jpg" set "URL[19]=https://ae-pic-a1.aliexpress-media.com/kf/Sb51e6d81f2da4f36a4c7cf05c2bc8e42n.jpg" set "URL[20]=https://ae-pic-a1.aliexpress-media.com/kf/Sb44a3112c481449a95d030cade03fa63h.jpg" set "URL[21]=https://ae-pic-a1.aliexpress-media.com/kf/Sfb7ff0f7b8e944d3aa56dbf9c09b77834.jpg" set "URL[22]=https://ae-pic-a1.aliexpress-media.com/kf/Sdf633355b65f409eb7cd77a9ea61a605y.jpg" set "URL[23]=https://ae-pic-a1.aliexpress-media.com/kf/S95e47d259cd5410fa71a502b7c81899eU.jpg" :: Download images using PowerShell (works on Win7+) echo Downloading images... for /L %%i in (1,1,23) do ( powershell -command "(New-Object Net.WebClient).DownloadFile('!URL[%%i]!', 'downloaded_images\image_%%i.jpg')" echo Downloaded: !URL[%%i]! ) :: Zip the downloaded images echo Creating ZIP file... powershell -command "Compress-Archive -Path 'downloaded_images\*' -DestinationPath 'AliExpress_Images.zip' -Force" echo Done! Check "AliExpress_Images.zip". pause
How to Use:
Copy the script above into Notepad.
Save as
download_images.bat
(ensure "Save as type" is set to All Files).Run the batch file (double-click).
It will:
Create a
downloaded_images
folder.Download all images using PowerShell.
Compress them into
AliExpress_Images.zip
.
Notes:
✅ Works on Windows 7, 8, 10, and 11 (requires PowerShell).
🔹 If some URLs fail, check for typos (e.g., https://
vs https:/
).
🔹 To add more URLs, extend the URL[24]
, URL[25]
, etc., and adjust the loop (1,1,23)
.
Let me know if you need adjustments! 🚀
Comments
Post a Comment