I created this powershell script to create one from a CSV. $inputCSV =
"c:\Servers.csv"$outputFile = "c:\Addresses.txt"Add-Content -PassThru
$outputFile -Value "config firewall address"Import-Csv $inputCSV |
ForEach-Object { $Name = $_.Assetname $IP ...