How I get 100,000 unique profile images for FREE (SCRIPT INSIDE)

200

Power Member
Premium Member
Joined
Jul 15, 2020
Messages
707
Reaction score
476
Hi there

This little script is what i used to get 100,000 unique profile images from thispersondoesnotexist.
Create a folder in c:\people (or change the script below)

Run the following in PowerShell on Windows.

Code:
#200 from BHW little script

$url = "https://www.thispersondoesnotexist.com/image"
$i = 0

For ($i=0; $i -le 1000000; $i++) {
        $wc = New-Object System.Net.WebClient
    $wc.DownloadFile($url, "C:\people\200 from BHW is not a bot _" + $i + ".jpg")
        Start-Sleep -Seconds 2.1
    Write-Host $i
}
That's it - have a great day.
 

200

Power Member
Premium Member
Joined
Jul 15, 2020
Messages
707
Reaction score
476
Oh and please let me know how it works out for you guys.

Thanks.
 

200

Power Member
Premium Member
Joined
Jul 15, 2020
Messages
707
Reaction score
476
Got it working yet or do need some more details from me?

Just wanted to help out as I used these images a lot.
 

Icepillar

Newbie
Joined
Oct 10, 2019
Messages
24
Reaction score
5
i would love to get some images, but don't know how to run this in windows, further guide will be highly appreciated.
 

Crazyfire

Jr. VIP
Jr. VIP
Premium Member
Joined
Apr 16, 2020
Messages
160
Reaction score
241
I would not advise using these as they are now a bit oversaturated and can be easily detected.
 

Crazyfire

Jr. VIP
Jr. VIP
Premium Member
Joined
Apr 16, 2020
Messages
160
Reaction score
241
Yes. Of course, it depends on the purpose. If you need to use them for forums or social networks that do not check the source of the image, then it's fine.
 

Kommando

Jr. VIP
Jr. VIP
Joined
Jan 14, 2020
Messages
121
Reaction score
103
They won't be unique. The website hosts a limited number of pregenerated images.
 

200

Power Member
Premium Member
Joined
Jul 15, 2020
Messages
707
Reaction score
476
They won't be unique. The website hosts a limited number of pregenerated images.
Really. Where do you have info from?

Yes. Of course, it depends on the purpose. If you need to use them for forums or social networks that do not check the source of the image, then it's fine.
I use them for ADS. Works like a charm.
 

favconnection

Newbie
Joined
Aug 27, 2020
Messages
7
Reaction score
0
I don't think the images are pre-generated, there are a lot of services with AI and it's live not generated.
 

favconnection

Newbie
Joined
Aug 27, 2020
Messages
7
Reaction score
0
I'm generating the 100k photos the script.
I found 1 or 2 photos that are "failed" (most of the time if it fails the issues will be in the background of the image), a good proof that they are generated.
 
Top