2
not work:
netsh advfirewall firewall delete rule program="C\Program Files (x86)\utorrent\uTorrent.exe"
not work:
netsh advfirewall firewall delete rule name=program="C\Program Files (x86)\utorrent\uTorrent.exe"
not work:
netsh advfirewall firewall delete rule name program="C\Program Files (x86)\utorrent\uTorrent.exe"
not work
netsh advfirewall firewall delete rule name program "C\Program Files (x86)\utorrent\uTorrent.exe"
not work:
netsh advfirewall firewall delete rule name "program=C\Program Files (x86)\utorrent\uTorrent.exe"
and not work:
netsh advfirewall firewall delete rule name="program=C\Program Files (x86)\utorrent\uTorrent.exe"
What is the correct syntax for this?
I have Windows 7 Ultimate 64-bit.
2You need to delete the rule "*name*" and not the program you are pointing the rule to ... For example -->
netsh advfirewall firewall delete rule name="<Rule Name>"
– Pimp Juice IT – 2017-08-05T13:49:30.017Try running
netsh advfirewall firewall show rule status=enabled name=all
and this will show you a list of all the enabled rules you have setup. Find the "*name*" of the applicable rule for uTorrent and then rule the command like I listed in the above comment but with the rule name where that is supposed to be. – Pimp Juice IT – 2017-08-05T13:53:19.333in the command guide there is the program parameter:
C:\Windows>netsh advfirewall firewall delete rule ?
Sintassi: delete rule name= [dir=in|out] [profile=public|private|domain|any[,...]] [program=] [service=|any] [localip=any||||| ] [remoteip=any|localsubnet|dns|dhcp|wins|defaultgateway| ||||] [localport=0-65535|[,...]|RPC|RPC-EPMap|any] [remoteport=0-65535|[,...]|any] [protocol=0-255|icmpv4|icmpv6|icmpv4:type,code|icmpv6:type,code| tcp|udp|any] – Riccardo La Marca – 2017-08-05T13:58:02.223
netsh advfirewall firewall show rule status=enabled name=all | FINDSTR Torrent
...........................................There is in rule. Now i try. – Riccardo La Marca – 2017-08-05T14:08:22.477