Instalar Steam
iniciar sesión
|
idioma
简体中文 (Chino simplificado)
繁體中文 (Chino tradicional)
日本語 (Japonés)
한국어 (Coreano)
ไทย (Tailandés)
български (Búlgaro)
Čeština (Checo)
Dansk (Danés)
Deutsch (Alemán)
English (Inglés)
Español - España
Ελληνικά (Griego)
Français (Francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (Húngaro)
Nederlands (Holandés)
Norsk (Noruego)
Polski (Polaco)
Português (Portugués de Portugal)
Português - Brasil (Portugués - Brasil)
Română (Rumano)
Русский (Ruso)
Suomi (Finés)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Informar de un error de traducción
i tried allowing and disallowing some programs on my potato pc with windows 10 b1903 and it works fine on my local admin windows account.
https://support.microsoft.com/en-us/search?query=windows%20firewall
Im not trying to allow or disallow programs, Im trying to remove items that I uninstalled. And what I am saying, is that the Remove part works, and I hit OK, but the fact the programs show up again, thats what I am trying to fix.
are you the only admin user account in your PC?
have you tried deleting firewall entry in another admin account?
For inbound - netsh advfirewall firewall delete rule name=”your rule name” dir=in
For outbound - netsh advfirewall firewall delete rule name=”your rule name” dir=out
Explains a bit here if you want to read up on the netsh command..
https://support.microsoft.com/en-gb/help/947709/how-to-use-the-netsh-advfirewall-firewall-context-instead-of-the-netsh
Admin account, and yes, I am the only user.
I will try this and report back.
I used CCleamer after uninstallation. Still there. I guess I m not one to just leave items on my system that are dead. I like to at least try to keep a clean system and not have old entries linger. I will keep trying to figure this out and try get rid of these.
Problem is, Ive never had issues with this. After uninstalling a game, removing the Firewall entry was done, but now, Far Cry 5, Ghost Recon Breakthrough Beta, VLC, Post Scriptum, are all very uninstalled, but still on the list. Plus whats worse, I cant change the setting on anything, I tried to uncheck Maps for instance, nothing else, hit OK, close it, open it back up, and its rechecked.
This is what Im running in to. Its not just games that are uninstalled.
This did not work unfortunately
The search continues.
you can probably install windows 10 b1803 (or the latest b1903) in less than 30 minutes.
install all motherboard chipset and reboot as needed.
install gpu driver and reboot.
install antivirus/antimalware and reboot.
restoring files from backup may take 2-4 hours, depending on how large your files/folders.
Batch script that does that:
@echo off
echo - Resetting To Default
netsh advfirewall reset >nul 2>&1
echo - Deleting Rules (In)
netsh advfirewall firewall show rule name=all dir=in | find /i "Rule Name:" > "%tmp%\1.txt"
for /f "tokens=3*" %%A in ('type "%tmp%\1.txt"') do (
netsh advfirewall firewall delete rule Name="%%A %%B" >nul 2>&1)
echo - Deleting Rules (Out)
netsh advfirewall firewall show rule name=all dir=out | find /i "Rule Name:" > "%tmp%\1.txt"
for /f "tokens=3*" %%A in ('type "%tmp%\1.txt"') do (
netsh advfirewall firewall delete rule Name="%%A %%B" >nul 2>&1)
Would this basically reset it all and remove everything that I approved and so on?
Yes, it will completely remove any "custom" rules, and reset FW back to defaults.. will also delete the rules you cannot remove..
You can try the script after backing up your current rules:
https://winaero.com/blog/how-to-backup-and-restore-firewall-rules-in-windows-10/
I will this and report back, thank you
This worked perfectly, thank you.
Now that everything is off the list, shouldnt programs need permission now? I have started up Netflix, Vudu, iTunes, etc. So far, nothing has asked for my permission. Steam auto added itself, which is fine, but so far, nothing has popped up.
This doesnt seem normal.