This limit also seems to exist from the Prism console when selecting the export to csv option.
Best answer by sandeepmp
mandg
Currently, this is a hard limit which we set.
You can use the below method to grab the data and export to CSV.
$result = @()$i = 1;do{$result += Get-NTNXEvent -Page $i -count 1000$i++}until((Get-NTNXEvent -Page $i -count 1000).count -eq 0 )
$result | export-csv "Path & filname to save the csv file"
Regards,
Sandeep MP
View original
Currently, this is a hard limit which we set.
You can use the below method to grab the data and export to CSV.
$result = @()$i = 1;do{$result += Get-NTNXEvent -Page $i -count 1000$i++}until((Get-NTNXEvent -Page $i -count 1000).count -eq 0 )
$result | export-csv "Path & filname to save the csv file"
Regards,
Sandeep MP