Thanks for that @snibgo
I was able to create a pretty decent script once i remembered i can link CMDs with &
my final working script is:
forfiles /S /M *.bmp /D -120 /C "cmd /c echo @file & convert @file @fname.jpg & DEL @file"
Search found 2 matches
- 2019-02-27T07:52:35-07:00
- Forum: Users
- Topic: Script to convert BMP to JPG, Need help completing.
- Replies: 2
- Views: 3255
- 2019-02-25T08:11:37-07:00
- Forum: Users
- Topic: Script to convert BMP to JPG, Need help completing.
- Replies: 2
- Views: 3255
Script to convert BMP to JPG, Need help completing.
Windows 10 system, using cmd I have a NAS full of images, buried deep in a series of subfolders. I am trying to write a script to reduce all images older than 90days from BMP to jpg. What I have so far, forfiles /P [dir1\dir2\....] /S /M *.bmp /D -90 /C "cmd /c magick morgify @fname -format jpg ...