How To Stop Capcut Auto Updating
Автор: FirePro
Загружено: 2025-03-23
Просмотров: 4735
Script :
Script to block/unblock CapCut network access by IPs
Define the list of IPs to block (including new IPs and ranges)
$ipList = @(
"182.176.156.0/24", # Previous range
"59.103.92.211", # Previous IP
"151.101.107.73", # Previous IP
"23.215.7.26", # Previous Akamai IP
"104.90.6.225", # New Akamai IP
"23.65.111.9", # New Akamai IP
"146.75.54.73", # New IP
"129.226.103.197", # New IP
"129.226.102.89", # New IP
"43.154.240.13", # New IP
"185.25.183.52", # New IP
Add broader Akamai ranges (based on observed IPs)
"104.90.0.0/16", # Covers 104.90.x.x (Akamai range)
"23.65.0.0/16", # Covers 23.65.x.x (Akamai range)
"23.215.0.0/16" # Covers 23.215.x.x (Akamai range)
)
Name of the firewall rule for IPs
$ipRuleName = "Block-CapCut-IPs"
Check if the rule exists
if (Get-NetFirewallRule -DisplayName $ipRuleName -ErrorAction SilentlyContinue) {
Rule exists, so remove it (unblock)
Remove-NetFirewallRule -DisplayName $ipRuleName
Write-Host "CapCut IPs have been unblocked. Internet access is now enabled for CapCut."
}
else {
Rule does not exist, so create it (block)
New-NetFirewallRule -DisplayName $ipRuleName `
-Direction Outbound `
-Action Block `
-RemoteAddress $ipList `
-Protocol Any `
-Profile Any `
-Description "Blocks CapCut from accessing the internet by IP"
Write-Host "CapCut IPs have been blocked. Internet access is now disabled for CapCut."
}
Доступные форматы для скачивания:
Скачать видео mp4
-
Информация по загрузке: