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

200

Senior Member
Joined
Jul 15, 2020
Messages
1,139
Reaction score
939
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.
 
Oh and please let me know how it works out for you guys.

Thanks.
 
Got it working yet or do need some more details from me?

Just wanted to help out as I used these images a lot.
 
i would love to get some images, but don't know how to run this in windows, further guide will be highly appreciated.
 
I would not advise using these as they are now a bit oversaturated and can be easily detected.
 
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.
 
They won't be unique. The website hosts a limited number of pregenerated images.
 
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.
 
I don't think the images are pre-generated, there are a lot of services with AI and it's live not generated.
 
I don't think the images are pre-generated, there are a lot of services with AI and it's live not generated.
I have more than 100k uniques for sure
 
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.
 
Back
Top