more winutil website update and new features (#4030)

* updated theme to the latest version

* Update en.yaml

* removed all the order from the docs

* add the store link

* update homepage

* add filename and line number to all the code blocks and also removed pages

* auto pull the code from the json files

* Merge branch 'main' into winutil-new-features

* the script updated linenostart=

* Delete LaptopHibernation.md
This commit is contained in:
Sean (ANGRYxScotsman)
2026-02-12 20:33:11 +00:00
committed by GitHub
parent 9d841687e3
commit 9b03b94435
94 changed files with 1046 additions and 963 deletions

View File

@@ -2,21 +2,20 @@
title: "Adobe Network Block"
description: ""
---
```json
"WPFTweaksBlockAdobeNet": {
```json {filename="config/tweaks.json",linenos=inline,linenostart=1982}
"WPFTweaksBlockAdobeNet": {
"Content": "Adobe Network Block",
"Description": "Reduce user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs",
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a021_",
"InvokeScript": [
"
$hostsUrl = \"https://github.com/Ruddernation-Designs/Adobe-URL-Block-List/raw/refs/heads/master/hosts\"
$hosts = \"$env:SystemRoot\\System32\\drivers\\etc\\hosts\"
Copy-Item $hosts \"$hosts.bak\"
Copy-Item $hosts \"$env:SystemRoot\\System32\\drivers\\etc\\hosts\\$hosts.bak\"
Invoke-WebRequest $hostsUrl -OutFile $hosts
ipconfig flushdns
ipconfig /flushdns
Write-Host \"Added Adobe url block list from host file\"
"
@@ -24,11 +23,10 @@ description: ""
"UndoScript": [
"
$hosts = \"$env:SystemRoot\\System32\\drivers\\etc\\hosts\"
$backup = \"$hosts.bak\"
$backup = \"$env:SystemRoot\\System32\\drivers\\etc\\hosts\\$hosts.bak\"
Copy-Item $backup $hosts
Remove-Item $backup
ipconfig flushdns
Remove-Item $hosts
ipconfig /flushdns
Write-Host \"Removed Adobe url block list from host file\"
"