Hi,
I want to create a Powershell script that I can run periodically to automatically download the latest HP printer firmware files.
The source where I can find the path to the latest firmware file for each printer model is this URL:
http://ftp.ext.hp.com//pub/networking/software/pfirmware/pfirmware.glf
One item for example:
[HP LaserJet 600 M601/M602/M603]
SupportedModels = HP LaserJet M601n; HP LaserJet M601dn;HP LaserJet M602n; HP LaserJet M602dn; HP LaserJet M602x; HP LaserJet 600 M602;HP LaserJet M603n; HP LaserJet M603dn; HP LaserJet M603xh; HP LaserJet 600 M602; HP LaserJet 600 M603; HP LaserJet 600 M601;
Path = http://ftp.hp.com/pub/networking/software/pfirmware/ljM601_602_603_fs3.9.9_2309059_000599.bdl
Name = ljM601_602_603_fs3.9.9_2309059_000599.bdl
Size = 86072636
Version = 2309059_000599 (FutureSmart Bundle Version 3.9.9)
Revision = 2309059_000599
Date = 20220214
Asset Identifier = 736664-0015
I would like the script to download the firmware of some printer models that I can specify beforehand, so I don't need all the firmware files.
Unfortunately I don't have much knowledge of how to create Powershell script, so I hope someone has an example for me similar to this that I can reuse.