Quick script to Block Cortana on the Windows Firewall by using PowerShell: $path = "$env:windir\systemapps\Microsoft.Windows.Cortana_cw5n1h2txyewy\SearchUI.exe" If (Test-Path $path) { If ($(Get-NetFirewallRule -DisplayName DisableCortana)) { Write-Host("Firewall rule for 'DisableCortana' already exists") } else { New-NetFirewallRule -DisplayName DisableCortana -Action Block -Direction Outbound -Profile Any -Description "Blocks outbound network connections originated from […]
firewall
1 post