Download of all windows logos

Jeff Borelli Partner 1 Reputation point
2021-03-26T18:13:01.307+00:00

I am looking for a download area of all windows logos for an article. Is there such a place> I've been looking for days.

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
36,254 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Pranam K 6 Reputation points
    2021-03-29T15:48:12.913+00:00

    var images = document.getElementsByTagName('img');
    var srcList = [];
    var i = 0;

    setInterval(function(){
    if(images.length > i){
    srcList.push(images[i].src);
    var link = document.createElement("a");
    link.id=i;
    link.download = images[i].src;
    link.href = images[i].src;
    link.click();
    i++;
    }
    },1500);

    0 comments No comments

  2. Jeff Borelli Partner 1 Reputation point
    2021-03-30T13:00:55.187+00:00

    I was hoping for a link. I'm not sure where to even run this. Can you elaborate?

    Thanks so much.

    0 comments No comments