One more thing not work
I try build Powershell script:
$i = Get-Content \\192.168.9.11\test\Greylist.txt | Measure-Object
if($i)
{
Get-Content \\192.168.9.11\test\Greylist.txt | Foreach-Object { eShell server as greylisting add domain-to-ip-whitelist $_ }
}
I put some domain to Greylist.txt but when this starts eShell server as greylisting add domain-to-ip-whitelist $_ this work but all time needs to user interaction because show every domain and wait to user (enter):
A.com
B.com
c.com
1.com
-- More -- (ENTER - Line, SPACE - Page, X - End)
What I must do to work without this informatinon
Interesting is that this eShell server as filtering add approved-domain-to-ip-list $_ not produce this information
Could you help me?