How to get all end devices from the CLI in Windows

We have about 2000 devices in an application. I am using the lorawan-stack-cli_3.22.0_windows_amd64 in windows to search for all the devices.
The issue is that the search returns only the last 800 devices from the cli Interface. How do I see the entire devices from the command line interface in windows?

I used this command ttn-lw-cli end-devices search [application id]

You could do

ttn-lw-cli end-devices list [application] --limit 1000 > devices1000
ttn-lw-cli end-devices list [application] --limit 1000 --page=2 > devices2000
ttn-lw-cli end-devices list [application] --limit 1000 --page=3 > devices3000

1 Like

I suggest you talk to @rish1 about a migration to TTI with support plan as 2,000 devices is way more than envisaged for TTN.

PS, I don’t think Windows is relevant - it’s the same Go code on all platforms - there should be some paging options to look at.

1 Like

Thanks a lot. Your suggestion helped.