I'm banning IPs using the Windows Firewall with these commands in cmd (actually in C# but using the cmd):
pushd advfirewall firewall
set rule name="BlockedIPs" new remoteip="1.2.3.4" action=block protocol=any dir=in
popd
How do I remove a single IP from that rule using cmd again, without deleting the whole rule? Thanks.