Browse Source

Updated Readmes

pull/702/head
Dmitry Nefedov 3 months ago
parent
commit
b381716b1b
  1. 13
      .github/workflows/Badge_downloads.yml
  2. 2
      CHANGELOG.md
  3. 101
      README.md
  4. 107
      README_de-de.md
  5. 123
      README_ru-ru.md
  6. 122
      README_uk-ua.md
  7. 24
      ReleaseNotesTemplate.md
  8. BIN
      img/germany.png
  9. BIN
      img/russia.png
  10. BIN
      img/ukraine.png
  11. BIN
      img/united-states.png

13
.github/workflows/Badge_downloads.yml

@ -15,7 +15,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@main
- name: Get the Numbers
- name: Get download counts
run: |
# Count downloads for the first page of the repo
# By default, GitHub parses only first page
@ -24,7 +24,6 @@ jobs:
Accept = "application/vnd.github+json"
Authorization = "Bearer $Token"
}
$Parameters = @{
Uri = "https://api.github.com/repos/farag2/Sophia-Script-for-Windows/releases?per_page=100&page=1"
Headers = $Headers
@ -50,7 +49,15 @@ jobs:
}
$choco = (Invoke-RestMethod @Parameters).properties.DownloadCount."#text"
$Summary = "{0:N3} Million" -f (($page1 + $page2 + $choco)/1000000)
# https://sourceforge.net/projects/sophia-script-windows.mirror/
$Parameters = @{
Uri = "https://sourceforge.net/projects/sophia-script-windows.mirror/files/stats/json?start_date=2025-09-11&end_date=$(Get-Date -Format "yyyy-MM-dd")"
UseBasicParsing = $true
Verbose = $true
}
$sourceforge = (Invoke-RestMethod @Parameters).total
$Summary = "{0:N3} Million" -f (($page1 + $page2 + $choco + $sourceforge)/1000000)
Write-Verbose -Message $Summary -Verbose
echo "DOWNLOADS_COUNT=$Summary" >> $env:GITHUB_ENV

2
CHANGELOG.md

@ -31,7 +31,7 @@ Fixed XAML markup in `Uninstall-UWPApps` function. Thanks to Gugenot Murm for bu
* [Added](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml) CI/CD config to download always up-to-date jepricreations' cursors via a DeviantArt API to the [Cursors folder](https://github.com/farag2/Sophia-Script-for-Windows/tree/master/Cursors).
* Added cloud Defender scan before uploading to release page;
* https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Sophia.yml#L70
* Added `Sophia Script` to [scoop](https://scoop.sh)
* Added `Sophia Script` to [Scoop](https://scoop.sh)
* https://github.com/ScoopInstaller/Extras/blob/master/bucket/sophia-script.json
* Fix for #684

101
README.md

@ -1,10 +1,12 @@
🌐 [English](/README.md) | [Deutsche](/README_de-de.md) | [Русский](/README_ru-ru.md) | [Українська](/README_uk-ua.md)
<div align="center">
<img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/Sophia.png" alt="Sophia Script for Windows" width='150'>
# Sophia Script for Windows
**The most powerful PowerShell module for fine-tuning Windows on GitHub**
The most powerful PowerShell module for fine-tuning Windows on GitHub
Made with <img src="./img/heart.svg" height="17px"/> of Windows
@ -49,64 +51,47 @@ Made with <img src="./img/heart.svg" height="17px"/> of Windows
<br>
<br>
This page is also available in other languages
<a href="./docs/README_uk-ua.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/ukraine.png" height="70px"/></a>
<a href="./docs/README_de-de.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/germany.png" height="70px"/></a>
<a href="./docs/README_ru-ru.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/russia.png" height="70px"/></a>
<img src="./img/SophiaScript.gif" width='800'>
</div>
## About Sophia Script
`Sophia Script for Windows` is the most powerful PowerShell module for fine-tuning `Windows` and automating the routine tasks on `GitHub`. It offers more than 150 unique tweaks, and shows how Windows can be configured without making any harm to it.
> [!IMPORTANT]
> Every tweak in the preset file has its corresponding function to restore default settings.
## Key features
* More than 150 unique functions to configure Windows using Microsoft's officially documented ways without making any harm to it
* Every tweak has its corresponding function to restore default settings
* Configure Windows AI
* Configure Windows privacy, security, personalization
* Fully open-source project
* All archives are being built and uploaded using GitHub Actions [automatically](https://github.com/farag2/Sophia-Script-for-Windows/actions)
* Cursors from [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) was downloaded using [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml)
* Available via scoop, Chocolatey, and WinGet
* All archives are being built and uploaded using [GitHub Actions](https://github.com/farag2/Sophia-Script-for-Windows/actions)
* Available via Scoop, Chocolatey, and WinGet
* Supports ARM64 and PowerShell 7
* Has no conflict with [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Configure Windows privacy
* Configure Windows security
* Personalize Windows UI
* Uninstall UWP apps displaying their localized packages names
* Script generates installed UWP apps list [dynamically](#localized-uwp-packages-names)
* Display applied registry policies in the Local Group Policy Editor snap-in (gpedit.msc)
* Enable DNS-over-HTTPS for IPv4
* Turn off diagnostics tracking scheduled tasks with pop-up form written in [WPF](#screenshots)
* Uninstall OneDrive "correctly"
* Interactive [prompts](#change-user-folders-location-programmatically-using-the-interactive-menu)
* The <kbd>TAB</kbd> [completion](#the-tab-autocomplete-read-more-here) for functions and their arguments (if using the Import-TabCompletion.ps1 file)
* Change location of the user folders programmatically (without moving user files) within interactive menu using arrows to select a drive
* Enable DNS-over-HTTPS
* Uninstall OneDrive
* Interactive [prompts and popups](#screenshots)
* <kbd>TAB</kbd> [completion](#how-to-run-the-specific-functions) for functions and their arguments (using Import-TabCompletion.ps1)
* Change location of the user folders (without moving user files) using an interactive menu
* Desktop
* Documents
* Downloads
* Music
* Pictures
* Videos
* Install free (light and dark) "Windows 11 Cursors Concept v2" cursors from [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) on-the-fly
* Uninstall UWP apps displaying their localized packages names
* Script generates installed UWP apps list [dynamically](#localized-uwp-packages-names)
* Download and install the [HEVC Video Extensions from Device Manufacturer](https://apps.microsoft.com/detail/9N4WGH0Z6VHQ) to be able to open [HEVC](https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding) format
* Set an app as default one for specific extension without the "How do you want to open this" pop-up using special [function](https://github.com/DanysysTeam/PS-SFTA)
* Export all Windows associations. Associations will be exported as Application_Associations.json file in script root folder
* Import exported JSON file after a clean installation. You need to install all apps according to exported JSON file to restore all associations
* Install any supported Linux distribution for WSL displaying friendly distro names with pop-up form written in [WPF](#screenshots)
* Install free (light and dark) `Windows 11 Cursors Concept v2` cursors from [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) on-the-fly
* Archive was downloaded to [Cursors](https://github.com/farag2/Sophia-Script-for-Windows/tree/master/Cursors) folder using [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml)
* Set an app as default one for specific extension without "How do you want to open this" pop-up
* Export and import all Windows associations. You need to install all apps according to exported JSON file to restore all associations
* Install WSL Linux distribution with [pop-up](#screenshots) using friendly distro names
* Create scheduled tasks with a native toast notification, where you will be able to run or [dismiss](#native-interactive-toasts-for-the-scheduled-tasks) tasks
* Create scheduled tasks `Windows Cleanup` and `Windows Cleanup Notification` for cleaning up Windows of unused files and Windows updates files
* Create a scheduled task `SoftwareDistribution` for cleaning up `%SystemRoot%\SoftwareDistribution\Download`
* Create a scheduled task `Temp` for cleaning up `%TEMP%`
* Create tasks in the Task Scheduler to clear
* `%SystemRoot%\SoftwareDistribution\Download`
* `%TEMP%`
* Install the latest provided Microsoft Visual C++ 2015–2026 x86/x64 (ARM64 supported)
* Install the latest provided Microsoft Visual C++ 2015–2026 x86/x64
* Install the latest provided .NET Desktop Runtime 8, 9, 10 x64
* Many more File Explorer and context menu "deep" tweaks
* Many more File Explorer and context menu tweaks
## Table of Contents
@ -116,7 +101,7 @@ This page is also available in other languages
* [Download via PowerShell](#download-via-powershell)
* [Download via Chocolatey](#download-via-chocolatey)
* [Download via WinGet](#download-via-winget)
* [Download via scoop](#download-via-scoop)
* [Download via Scoop](#download-via-Scoop)
* [How to use](#how-to-use)
* [How to run the specific function(s)](#how-to-run-the-specific-functions)
* [Wrapper](#wrapper)
@ -127,13 +112,43 @@ This page is also available in other languages
* [Videos](#videos)
* [How to translate](#how-to-translate)
* [Media](#media)
* [SophiApp 2](#sophiapp-2-c--winui-3)
* [SophiApp 2](#sophiapp-20-c--winui-3)
## How to download
### From release page
[Download](https://github.com/farag2/Sophia-Script-for-Windows/releases/latest) depending to your Windows and PowerShell versions.
<table>
<tbody>
<tr>
<td align="center">Windows 10</td>
<td align="center">Windows 11</td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202019-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20LTSC%202024-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202021-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="center" colspan="2"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Sophia%20Script%20Wrapper-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
</tbody>
</table>
### Download via PowerShell
@ -188,7 +203,7 @@ winget install --id TeamSophia.SophiaScript --location $DownloadsFolder --accept
winget uninstall --id TeamSophia.SophiaScript --force
```
### Download via scoop
### Download via Scoop
<https://scoop.sh>

107
docs/README_de-de.md → README_de-de.md

@ -1,10 +1,12 @@
🌐 [English](/README.md) | [Deutsche](/README_de-de.md) | [Русский](/README_ru-ru.md) | [Українська](/README_uk-ua.md)
<div align="center">
<img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/Sophia.png" alt="Sophia Script for Windows" width='150'>
# Sophia Script for Windows
**Das leistungsstärkste PowerShell-Modul zur Feinabstimmung von Windows auf GitHub**
Das leistungsstärkste PowerShell-Modul zur Feinabstimmung von `Windows` auf `GitHub`
Mit <img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/img/heart.svg" height="17px"/> zu Windows hergestellt
@ -49,39 +51,28 @@ Mit <img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows
<br>
<br>
This page is also available in other languages
<a href="../README.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/united-states.png" height="70px"/></a>
<a href="../docs/README_uk-ua.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/ukraine.png" height="70px"/></a>
<a href="../docs/README_ru-ru.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/russia.png" height="70px"/></a>
<img src="../img/SophiaScript.gif" width='800'>
<img src="./img/SophiaScript.gif" width='800'>
</div>
## About Sophia Script
`Sophia Script for Windows` ist das größte PowerShell-Modul auf `GitHub` für `Windows 10` & `Windows 11` zur Feinabstimmung und Automatisierung von Routineaufgaben. Es bietet mehr als 150 einzigartige Tweaks und zeigt, wie Windows konfiguriert werden kann, ohne Windows dabei zu schaden.
> [!IMPORTANT]
> Für jede Änderung in der Voreinstellungsdatei gibt es eine entsprechende Funktion zum Wiederherstellen der Standardeinstellungen.
## Haupt-Features
* Mehr als 150 einzigartige Funktionen zur Konfiguration von Windows unter Verwendung der offiziell von Microsoft dokumentierten Methoden, ohne das System zu beschädigen.
* Für jede Änderung in der Voreinstellungsdatei gibt es eine entsprechende Funktion zum Wiederherstellen der Standardeinstellungen
* Konfigurieren Sie Windows AI
* Konfigurieren Sie die Privatsphäre, Sicherheit und Personalisierung von Windows
* Vollständig quelloffenes Projekt
* Alle Archive werden [automatisch](https://github.com/farag2/Sophia-Script-for-Windows/actions) mit GitHub Actions erstellt und hochgeladen
* Cursor von [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) wurden mithilfe der [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml) heruntergeladen
* Verfügbar über Scoop, Chocolatey und WinGet
* Unterstützt ARM64 und PowerShell 7
* Es besteht kein Konflikt mit [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Windows-Datenschutz konfigurieren
* Konfigurieren Sie die Windows-Sicherheit
* Windows-Benutzeroberfläche personalisieren
* Deinstallieren Sie UWP-Anwendungen, mithilfe der Paketnamen
* Skript generiert Liste der installierten UWP-Apps [dynamisch](#lokalisierte-namen-von-uwp-paketen)
* Zeigen Sie die angewendeten Registrierungsrichtlinien im Snap-Ins Editor für lokale Gruppenrichtlinien (gpedit.msc) an
* DNS-über-HTTPS für IPv4 aktivieren
* Deaktivieren Sie die Diagnoseverfolgung geplanter Aufgaben mit einem in [WPF] geschriebenen Popup-Formular (#screenshots)
* OneDrive "richtig" deinstallieren
* Interaktive [Eingabeaufforderungen](#change-user-folders-location-programmatically-using-the-interactive-menu)
* Die <kbd>TAB</kbd> [Autovervollständigung](#the-tab-autocomplete-read-more-here) für Funktionen und ihre Argumente (bei Verwendung der Datei Import-TabCompletion.ps1)
* DNS-über-HTTPS aktivieren
* OneDrive entfernen
* Interaktive [Eingabeaufforderungen und Popups](#screenshots)
* Die <kbd>TAB</kbd> [Autovervollständigung](#verwendung-von-spezifischen-funktionen) für Funktionen und ihre Argumente (mit Import-TabCompletion.ps1)
* Ändern Sie den Speicherort der Benutzerordner programmatisch (ohne die Benutzerdateien zu verschieben) im interaktiven Menü mit Hilfe von Pfeilen zur Auswahl eines Laufwerks
* Desktop
* Dokumente
@ -90,20 +81,17 @@ This page is also available in other languages
* Bilder
* Videos
* Installieren Sie den kostenlosen (helle und dunkle) "Windows 11 Cursors Concept v2" Cursor von [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) on-the-fly
* Deinstallieren Sie UWP-Anwendungen, mithilfe der Paketnamen
* Skript generiert Liste der installierten UWP-Apps [dynamisch](#lokalisierte-namen-von-uwp-paketen)
* Laden Sie die [HEVC Video Extensions from Device Manufacturer](https://apps.microsoft.com/detail/9N4WGH0Z6VHQ) herunter und installieren Sie sie, um das Format [HEVC](https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding) öffnen zu können
* Registrieren Sie Anwendung, berechnen Sie den Hash und legen Sie ihn als Standard für eine bestimmte Erweiterung fest, ohne das Popup-Fenster "Wie möchten Sie dies öffnen?" sehen zu müssen. All das mit einer speziellen [Funktion] (<https://github.com/DanysysTeam/PS-SFTA>)
* Exportieren Sie alle Windows-Verknüpfungen in die Datei Application_Associations.json in den Skriptstammordner
* Importieren Sie alle Windows-Zuordnungen aus einer JSON-Datei. Sie müssen alle Anwendungen gemäß einer exportierten JSON-Datei installieren, um alle Zuordnungen wiederherzustellen
* Installieren Sie eine beliebige unterstützte Linux-Distribution für WSL, die lokalisierten Distro-Namen nutzt, mit einem in [WPF] geschriebenen Popup-Formular(#screenshots)
* Das Archiv wurde mit der [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml) in den Ordner [Cursors](https://github.com/farag2/Sophia-Script-for-Windows/tree/master/Cursors) heruntergeladen
* Eine App als Standard für eine bestimmte Dateiendung festlegen, ohne dass das Popup-Fenster „Wie möchten Sie diese Datei öffnen?“ angezeigt wird
* Exportieren und importieren Sie alle Windows-Zuordnungen. Sie müssen alle Apps gemäß der exportierten JSON-Datei installieren, um alle Zuordnungen wiederherzustellen
* Installieren Sie die WSL-Linux-Distribution mit Popup-Fenster(#screenshots) unter Verwendung benutzerfreundlicher Distributionsnamen
* Erstellen Sie geplante Aufgaben mit einer nativen Toast-Benachrichtigung, mit der Sie Aufgaben ausführen oder [abbrechen können](#native-interactive-toasts-for-the-scheduled-tasks)
* Erstellen Sie die geplanten Aufgaben `Windows Cleanup` und `Windows Cleanup Notification`, um Windows von ungenutzten Dateien und Windows-Updates zu bereinigen
* Erstellen Sie eine geplante Aufgabe `SoftwareDistribution` zur Bereinigung von `%SystemRoot%\SoftwareDistribution\Download`
* Erstellen Sie eine geplante Aufgabe `Temp` zum Aufräumen von `%TEMP%`
* Installieren Sie die neueste bereitgestellte Version von Microsoft Visual C++ 2015–2026 x86/x64 (ARM64 supported)
* Installieren Sie die neueste bereitgestellte Version von .NET Desktop Runtime 8, 9, 10 (ARM64 supported)
* Viele weitere "tiefe" Optimierungen des Datei-Explorers und des Kontextmenüs
* Installieren Sie die neueste bereitgestellte Version von Microsoft Visual C++ 2015–2026 x86/x64
* Installieren Sie die neueste bereitgestellte Version von .NET Desktop Runtime 8, 9, 10
* Viele weitere Optimierungen für den Datei-Explorer und das Kontextmenü
## Table of Contents
@ -113,7 +101,7 @@ This page is also available in other languages
* [Herunterladen über PowerShell](#herunterladen-über-powershell)
* [Herunterladen über Chocolatey](#herunterladen-über-chocolatey)
* [Herunterladen über WinGet](#herunterladen-über-winget)
* [Herunterladen über scoop](#herunterladen-über-scoop)
* [Herunterladen über Scoop](#herunterladen-über-Scoop)
* [Wie zu verwenden](#wie-zu-verwenden)
* [Verwendung von spezifischen Funktionen](#verwendung-von-spezifischen-funktionen)
* [Wrapper](#wrapper)
@ -124,15 +112,45 @@ This page is also available in other languages
* [Videos](#videos)
* [Wie man übersetzt](#wie-man-übersetzt)
* [Media](#media)
* [SophiApp 2](#sophiapp-2-c--winui-3)
* [SophiApp 2](#sophiapp-20-c--winui-3)
## Wie kann man herunterladen
### Von der GitHub-Versionsseite
[Download](https://github.com/farag2/Sophia-Script-for-Windows/releases/latest) depending to your Windows and PowerShell versions.
### Download über PowerShell
<table>
<tbody>
<tr>
<td align="center">Windows 10</td>
<td align="center">Windows 11</td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202019-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20LTSC%202024-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202021-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="center" colspan="2"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Sophia%20Script%20Wrapper-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
</tbody>
</table>
### Herunterladen über PowerShell
Laden Sie die neueste Version von `Sophia Script for Windows` entsprechend Ihrer Windows- und PowerShell-Version herunter und entpacken Sie sie in den Ordner Downloads.
@ -185,7 +203,7 @@ winget install --id TeamSophia.SophiaScript --location $DownloadsFolder --accept
winget uninstall --id TeamSophia.SophiaScript --force
```
### Herunterladen über scoop
### Herunterladen über Scoop
<https://scoop.sh>
@ -204,8 +222,7 @@ scoop uninstall sophia-script --purge
## Wie zu verwenden
* Archiv herunterladen und erweitern
* Das Archiv extrahieren
* Archiv herunterladen und entpacken
* Schauen Sie sich die Datei `Sophia.ps1` an, um die Funktionen zu konfigurieren, die Sie ausführen möchten
* Setzen Sie das `#`-Zeichen vor die Funktion, wenn Sie nicht möchten, dass sie ausgeführt wird.
* Entfernen Sie das `#`-Zeichen vor der Funktion, wenn sie ausgeführt werden soll.
@ -263,7 +280,7 @@ Uninstall-UWPApps, "PinToStart -UnpinAll"
![Image](https://github.com/farag2/Sophia-Script-for-Windows/raw/master/img/Wrapper.png)
Lesen Sie [hier mehr dazu](../Wrapper/README.md)
Lesen Sie [hier mehr dazu](./Wrapper/README.md)
[@BenchTweakGaming](https://github.com/BenchTweakGaming)
@ -315,11 +332,11 @@ Sophia -Functions "DiagTrackService -Enable", Uninstall-UWPApps
### Lokalisierte Namen von UWP-Paketen
![Image](../img/uwpapps.png)
![Image](./img/uwpapps.png)
### Herunterladen und Installieren einer beliebigen unterstützten Linux-Distribution im automatischen Modus
![Image](../img/WSL.png)
![Image](./img/WSL.png)
### Native interaktive Toasts für die geplanten Aufgaben

123
docs/README_ru-ru.md → README_ru-ru.md

@ -1,10 +1,12 @@
🌐 [English](/README.md) | [Deutsche](/README_de-de.md) | [Русский](/README_ru-ru.md) | [Українська](/README_uk-ua.md)
<div align="center">
<img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/Sophia.png" alt="Sophia Script for Windows" width='150'>
# Sophia Script for Windows
**Самый мощный PowerShell-модуль на GitHub для тонкой настройки Windows**
Самый мощный PowerShell-модуль на `GitHub` для тонкой настройки `Windows`
Сделано с <img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/img/heart.svg" height="17px"/> к Windows
@ -49,40 +51,29 @@
<br>
<br>
This page is also available in other languages
<a href="../README.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/united-states.png" height="70px"/></a>
<a href="../docs/README_uk-ua.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/ukraine.png" height="70px"/></a>
<a href="../docs/README_de-de.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/germany.png" height="70px"/></a>
<img src="../img/SophiaScript.gif" width='800'>
<img src="./img/SophiaScript.gif" width='800'>
</div>
## О Sophia Script
`Sophia Script for Windows` — это самый мощный PowerShell-модуль на `GitHub` для тонкой настройки `Windows 10` и `Windows 11` и автоматизации рутинных задач. Он предлагает более 150 уникальных твиков и показывает, как можно настоить Windows, ничего не сломав.
> [!IMPORTANT]
> Каждый функция в пресет-файле (файл предустановок) имеет соответствующую функцию для возврата значений по умолчанию.
## Ключевые возможности
* Более 150 уникальных функций для настройки Windows с использованием официально задокументированных методов Microsoft без вреда системе
* Каждая настройка имеет соответствующую функцию для восстановления значений по умолчанию
* Настройка Windows AI
* Настройка приватности, безопасности и персонализации Windows
* Проект с полностью открытым исходным кодом
* Все архивы собираются и загружаются на страницу релизов, используя GitHub Actions, в [автоматическом режиме](https://github.com/farag2/Sophia-Script-for-Windows/actions)
* Курсоры от [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) были скачаны, используя [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml)
* Доступен через scoop, Chocolatey, and WinGet
* Доступен через Scoop, Chocolatey и WinGet
* Поддержка ARM64 и PowerShell 7
* Не конфликтует с [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Настройка конфиденциальности Windows
* Настроить безопасность Windows
* Персонализация пользовательского интерфейса Windows
* Удаление UWP-приложений с отображением локализованных имен пакетов
* Скрипт генерирует список установленных UWP-приложений [динамически](#локализованные-имена-uwp-пакетов)
* Отобразить примененные политики реестра в оснастке редактирования групповых политик (gpedit.msc)
* Включить DNS-over-HTTPS для IPv4
* Выключить диагностические задания в Планировщике заданий с помощью всплывыющего окошка, написанного на [WPF](#скриншоты)
* "Правильно" удалить OneDrive
* Интерактивные [подсказки](#программно-изменить-расположение-пользовательских-папок-с-помощью-интерактивного-меню)
* [Автопродление](#автопродление-функций-с-помощью-tab-подробнее-здесь) функций и их аргументов с помощью <kbd>TAB</kbd> (при условии использования файла Import-TabCompletion.ps1)
* Программно изменить расположение пользовательских папок с помощью интерактивного меню (без перемещения пользовательских файлов), используя стрелки для выбора диска
* Включить DNS-over-HTTPS
* Удаление OneDrive
* Интерактивные [подсказки и всплывающие окна](#скриншоты)
* [Автопродление](#как-выполнить-конкретную-функциюи) функций и их аргументов с помощью <kbd>TAB</kbd> (используя Import-TabCompletion.ps1)
* Изменить расположение пользовательских папок (без перемещения пользовательских файлов) с помощью интерактивного меню
* Рабочий стол
* Документы
* Загрузки
@ -90,19 +81,16 @@ This page is also available in other languages
* Изображения
* Видео
* Установить бесплатный (светлый и темный) курсор "Windows 11 Cursors Concept v2" от [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) на лету (без перезагрузок)
* Удалить UWP-приложения, отображая их локализированные имена пакетов
* Скрипт генерирует список установленных UWP-приложений [динамически](#локализированные-имена-пакетов)
* Скачать и установить [Расширения для видео HEVC от производителя](https://apps.microsoft.com/detail/9N4WGH0Z6VHQ), чтобы иметь поддержку формата [HEVC](https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding)
* Установить приложение по умолчанию для конкретного расширения без всплывающего окошка "Каким образом вы хотите открыть этот файл?", используя специльную [функцию](https://github.com/DanysysTeam/PS-SFTA)
* Экспортировать все ассоциации в Windows. Ассоциации будут экспортированы в файл `Application_Associations.json` в корне папки скрипта
* Импортировать выгруженный `Application_Associations.json` после чистой установки. Вам необходимо установить все приложения из списка выгруженного `Application_Associations.json`, чтобы восстановить ассоциации
* Установить любой поддерживаемый дистрибутив Linux через WSL, отображая локализированные имена дистрибутивов с помощью всплывающего окошка, написанного на [WPF](#скриншоты)
* Архив был скачан в папку [Cursors](https://github.com/farag2/Sophia-Script-for-Windows/tree/master/Cursors), используя [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml)
* Установить приложение по умолчанию для конкретного расширения без всплывающего окошка "Каким образом вы хотите открыть этот файл?"
* Экспортировать и импортировать все ассоциации в Windows. Необходимо установить все приложения в соответствии с экспортированным файлом JSON-файлом, чтобы восстановить ассоциации
* Установить дистрибутив Linux через WSL, используя локализованные имена дистрибутивов с помощью всплывающего [окна](#скриншоты)
* Создать задания в Планировщике заданий с нативным тостовым уведомлением, где вы сможете запустить или отменить [выполнение](#нативные-тостовые-уведомления-для-заданий-планировщика-заданий) задания
* Создать задания `Windows Cleanup` и `Windows Cleanup Notification` для очистки Winsows от неиспользуемых файлов и файлов обновлений
* Создать задание `SoftwareDistribution` для очистки `%SystemRoot%\SoftwareDistribution\Download`
* Создать задание `Temp` для очистки `%TEMP%`
* Установить последней версии распространяемых пакетов Microsoft Visual C++ 2015–2026 x86/x64 (поддержка ARM64)
* Установить последней версии распространяемых пакетов .NET Desktop Runtime 8, 9, 10 x64 (поддержка ARM64)
* Установить последней версии распространяемых пакетов Microsoft Visual C++ 2015–2026 x86/x64
* Установить последней версии распространяемых пакетов .NET Desktop Runtime 8, 9, 10 x64
* Много других твиков проводника и контекстного меню
## Содержание
@ -113,9 +101,9 @@ This page is also available in other languages
* [Скачать через PowerShell](#скачать-через-powershell)
* [Скачать через Chocolatey](#скачать-через-chocolatey)
* [Скачать через WinGet](#скачать-через-winget)
* [Скачать через scoop](#скачать-через-scoop)
* [Скачать через Scoop](#скачать-через-Scoop)
* [Как использовать](#как-использовать)
* [Как выполнить конкретную функцию(и)](#как-выполните-конкретную-функциюи)
* [Как выполнить конкретную функцию(и)](#как-выполнить-конкретную-функциюи)
* [Wrapper](#wrapper)
* [Как откатить изменения](#как-откатить-изменения)
* [Пожертвования](#пожертвования)
@ -124,13 +112,43 @@ This page is also available in other languages
* [Видео](#видео)
* [Перевод](#перевод)
* [Ссылки](#ссылки)
* [SophiApp 2](#sophiapp-2-c--winui-3)
* [SophiApp 2](#sophiapp-20-c--winui-3)
## Как скачать
### Со страницы релиза
Скачайте [архив](https://github.com/farag2/Sophia-Script-for-Windows/releases/latest) в зависимости от версий ваших Windows и PowerShell.
<table>
<tbody>
<tr>
<td align="center">Windows 10</td>
<td align="center">Windows 11</td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202019-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20LTSC%202024-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202021-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="center" colspan="2"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Sophia%20Script%20Wrapper-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
</tbody>
</table>
### Скачать через PowerShell
@ -139,6 +157,7 @@ This page is also available in other languages
```powershell
iwr script.sophia.team -useb | iex
```
Скачать и распаковать в папку Загрузки последнюю версию `Sophia Script for Windows` из актуального [коммита](https://github.com/farag2/Sophia-Script-for-Windows/commits/master/) в зависимости от версий ваших Windows и PowerShell.
```powershell
@ -184,7 +203,7 @@ winget install --id TeamSophia.SophiaScript --location $DownloadsFolder --accept
winget uninstall --id TeamSophia.SophiaScript --force
```
### Скачать через scoop
### Скачать через Scoop
<https://scoop.sh>
@ -233,7 +252,7 @@ scoop uninstall sophia-script --purge
<https://github.com/user-attachments/assets/f5bda68f-9509-41dc-b3b1-1518aeaee36f>
### Как выполните конкретную функцию(и)
### Как выполнить конкретную функцию(и)
* Выполните все шаги из пункта [Как использовать](#как-использовать) и остановитесь на пункте по изменнию политики выполнения скриптов в `PowerShell`
* Сначала загрузите файл `Import-TabCompletion.ps1` через [дот сорсинг](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_operators#dot-sourcing-operator-):
@ -261,7 +280,7 @@ Uninstall-UWPApps, "PinToStart -UnpinAll"
![Image](https://github.com/farag2/Sophia-Script-for-Windows/raw/master/img/Wrapper.png)
Подробнее [здесь](../Wrapper/README.md)
Подробнее [здесь](./Wrapper/README.md)
[@BenchTweakGaming](https://github.com/BenchTweakGaming)
@ -301,23 +320,23 @@ Sophia -Functions "DiagTrackService -Enable", Uninstall-UWPApps
[Windows-11-LTSC-2024]: https://support.microsoft.com/topic/windows-11-version-24h2-update-history-0929c747-1815-4543-8461-0160d16f15e5
[Windows-11-24h2]: https://support.microsoft.com/topic/windows-11-version-25h2-update-history-99c7f493-df2a-4832-bd2d-6706baa0dec0
| Версия | Билд | Издание |
|:-----------------------------------------|:-------------------------------------:|:-------------------:|
| Windows 11 24H2/25H2+ | [Latest stable][Windows-11-24h2] | Home/Pro/Enterprise |
| Windows 10 x64 22H2 | [Latest stable][Windows-10] | Home/Pro/Enterprise |
| Windows 11 Enterprise LTSC 2024 | [Latest stable][Windows-11-LTSC-2024] | Enterprise |
| Windows 10 x64 21H2 Enterprise LTSC 2021 | [Latest stable][Windows-10-LTSC-2021] | Enterprise |
| Windows 10 x64 1809 Enterprise LTSC 2019 | [Latest stable][Windows-10-LTSC-2019] | Enterprise |
| Версия | Сборка | Издание |
|:-----------------------------------------|:--------------------------------------------:|:-------------------:|
| Windows 11 24H2/25H2+ | [Последняя стабильная][Windows-11-24h2] | Home/Pro/Enterprise |
| Windows 10 x64 22H2 | [Последняя стабильная][Windows-10] | Home/Pro/Enterprise |
| Windows 11 Enterprise LTSC 2024 | [Последняя стабильная][Windows-11-LTSC-2024] | Enterprise |
| Windows 10 x64 21H2 Enterprise LTSC 2021 | [Последняя стабильная][Windows-10-LTSC-2021] | Enterprise |
| Windows 10 x64 1809 Enterprise LTSC 2019 | [Последняя стабильная][Windows-10-LTSC-2019] | Enterprise |
## Скриншоты
### Локализированные имена пакетов
### Локализованные имена UWP-пакетов
![Image](../img/uwpapps.png)
![Image](./img/uwpapps.png)
### Скачать и установить любые поддерживаемые дистрибутивые Linux через WSL в автоматическом режиме
![Image](../img/WSL.png)
![Image](./img/WSL.png)
### Нативные тостовые уведомления для заданий Планировщика заданий

122
docs/README_uk-ua.md → README_uk-ua.md

@ -1,10 +1,12 @@
🌐 [English](/README.md) | [Deutsche](/README_de-de.md) | [Русский](/README_ru-ru.md) | [Українська](/README_uk-ua.md)
<div align="center">
<img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/Sophia.png" alt="Sophia Script for Windows" width='150'>
# Sophia Script for Windows
**Найпотужніший PowerShell-модуль на GitHub для тонкого настроювання Windows**
Найпотужніший PowerShell-модуль на `GitHub` для тонкого налаштування `Windows`
Зроблено з <img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/img/heart.svg" height="17px"/> до Windows
@ -49,40 +51,29 @@
<br>
<br>
This page is also available in other languages
<a href="../README.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/united-states.png" height="70px"/></a>
<a href="../docs/README_de-de.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/germany.png" height="70px"/></a>
<a href="../docs/README_ru-ru.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/russia.png" height="70px"/></a>
<img src="../img/SophiaScript.gif" width='800'>
<img src="./img/SophiaScript.gif" width='800'>
</div>
## Про Sophia Script
`Sophia Script для Windows` - це найпотужніший модуль PowerShell на `GitHub` для тонкого налаштування і автоматизації рутинних завдань в `Windows 10` і `Windows 11`. Він пропонує сучасні UI/UX, більше 150 різних функцій і показує, як можна налаштувати Windows, не ламаючи функціонал.
> [!IMPORTANT]
> Кожна зміна у файлі налаштувань має відповідну функцію для відновлення налаштувань за замовчуванням.
## Ключові особливості
* Понад 150 унікальних функцій для налаштування Windows з використанням офіційно задокументованих методів Microsoft без шкоди для системи
* Кожне налаштування має відповідну функцію для відновлення значень за замовчуванням
* Налаштування Windows AI
* Налаштування приватності, безпеки та персоналізації Windows
* Проект с полностью открытым исходным кодом
* Всі архіви збираються і завантажуються на сторінку релізів, використовуючи GitHub Actions, в [автоматичному режимі](https://github.com/farag2/Sophia-Script-for-Windows/actions).
* Курсоры от [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) были скачаны, используя [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml)
* Доступний через scoop, Chocolatey та WinGet
* Доступний через Scoop, Chocolatey та WinGet
* Підтримка ARM64 і PowerShell 7
* Не конфліктує з [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Налаштування конфіденційності Windows
* Налаштування безпеки Windows
* Налаштування інтерфейсу і персоналізація
* Видалення UWP-додатків, що відображають назви пакетів
* Скрипт генерує список встановлених UWP-додатків [динамічно](#локалізовані-назви-uwp-пакетів)
* Відобразити застосовані політики реєстру в оснащенні редагування групових політик (gpedit.msc)
* Активація DNS-over-HTTPS для IPv4
* Вимкнення запланованих завдань з відстеження зі спливаючою формою, написаною на [WPF](#скріншоти)
* "Правильне" видалення OneDrive
* Інтерактивні [підказки](#програмна-зміна-розташування-папок-користувача-за-допомогою-інтерактивного-меню)
* <kbd>TAB</kbd> [доповнення](#автодоповнення-tab-детальніше-тут) для функцій та їх аргументів (якщо використовується файл Import-TabCompletion.ps1)
* Зміна розташування користувацьких папок програмно (без переміщення користувацьких файлів) в інтерактивному меню за допомогою стрілок для вибору диска
* Активація DNS-over-HTTPS
* Видалення OneDrive
* Інтерактивні [підказки та спливаючі вікна](#скріншоти)
* <kbd>TAB</kbd> [доповнення](#як-виконати-конкретну-функцію(ї)) для функцій та їх аргументів (Використовуючи Import-TabCompletion.ps1)
* Змінити розташування папок користувача (без переміщення файлів користувача) за допомогою інтерактивного меню зі стрілками
* Робочий стіл
* Документи
* Завантаження
@ -90,22 +81,17 @@ This page is also available in other languages
* Зображення
* Відео
* Встановлення безкоштовних (світлий та темний) курсорів "Windows 11 Cursors Concept v2" від [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) на льоту
* Видалення UWP-додатків, що відображають назви пакетів
* Скрипт генерує список встановлених UWP-додатків [динамічно](#локалізовані-назви-uwp-пакетів).
* Вимкнення функцій Windows для відображення дружніх назв пакетів у спливаючій формі, написаній на [WPF](#скріншоти)
* Видалення можливостей Windows відображати дружні назви пакетів у спливаючій формі, написаній на [WPF](#скріншоти)
* Завантаження та встановлення [HEVC Video Extensions від виробника пристрою](https://apps.microsoft.com/detail/9N4WGH0Z6VHQ) для відкриття формата [HEVC](https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding)
* Реєстрація програми, розрахунок хешу та встановлення за замовчуванням для певного розширення без спливаючого вікна "Як ви хочете відкрити це" за допомогою спеціальної [функції](https://github.com/DanysysTeam/PS-SFTA)
* Експортувати всі асоціації в Windows у корінь папки у вигляді файлу Application_Associations.json
Імпортувати всі асоціації в Windows з файлу Application_Associations.json. Вам необхідно встановити всі програми згідно з експортованим файлом Application_Associations.json, щоб відновити всі асоціації
* Встановлення будь-якого підтримуваного дистрибутива Linux для WSL з відображенням дружніх назв дистрибутивів у спливаючій формі, написаній на [WPF](#скріншоти)
* Архів був завантажений у папку [Cursors](https://github.com/farag2/Sophia-Script-for-Windows/tree/master/Cursors), за допомогою [DeviantArt API](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Cursors.yml)
* Реєстрація програми, розрахунок хешу та встановлення за замовчуванням для певного розширення без спливаючого вікна "Як ви хочете відкрити це"
* Експортувати та імпортувати всі асоціації в Windows. Необхідно встановити всі програми відповідно до експортованого файлу JSON, щоб відновити асоціації.
* Встановити дистрибутив Linux через WSL, використовуючи локалізовані імена дистрибутивів за допомогою спливаючого [вікна](#скріншоти)
* Створити завдання з нативним тостовим повідомленням, де ви зможете запустити або скасувати [виконання](#інтерактивні-тости-для-запланованих-завдань) завдання
* Створити завдання `Windows Cleanup` и `Windows Cleanup Notification` для очищення Windows від невикористовуваних файлів та оновлень
* Створити завдання `SoftwareDistribution` для очищення `%SystemRoot%\SoftwareDistribution\Download`
* Створити завдання `Temp` для очищення `%TEMP%`
* Встановити останню версію розповсюджуваних пакетів Microsoft Visual C++ 2015–2026 x86/x64 (підтримка ARM64)
* Встановити останню версію розповсюджуваних пакетів .NET Desktop Runtime 8, 9, 10 x64 (підтримка ARM64)
* Ще багато "глибоких" налаштувань Файлового Провідника та контекстного меню
* Встановити останню версію розповсюджуваних пакетів Microsoft Visual C++ 2015–2026 x86/x64
* Встановити останню версію розповсюджуваних пакетів .NET Desktop Runtime 8, 9, 10 x64
* Ще багато налаштувань Файлового Провідника та контекстного меню
## Зміст
@ -115,7 +101,7 @@ This page is also available in other languages
* [Завантажити через PowerShell](#завантажити-через-powershell)
* [Завантажити через Chocolatey](#завантажити-через-chocolatey)
* [Завантажити через WinGet](#завантажити-через-winget)
* [Завантажити через scoop](#завантажити-через-scoop)
* [Завантажити через Scoop](#завантажити-через-Scoop)
* [Як використовувати](#як-використовувати)
* [Як запустити певну функцію(ї)](#як-запустити-певну-функціюї)
* [Wrapper](#wrapper)
@ -126,13 +112,43 @@ This page is also available in other languages
* [Відео](#відео)
* [Як перекласти](#як-перекласти)
* [Медіа](#медіа)
* [SophiApp 2](#sophiapp-2-c--winui-3)
* [SophiApp 2](#sophiapp-20-c--winui-3)
## Як завантажити
### Зі сторінки релізу
Завантажте [архів](https://github.com/farag2/Sophia-Script-for-Windows/releases/latest) відповідно до версій ваших Windows і PowerShell.
<table>
<tbody>
<tr>
<td align="center">Windows 10</td>
<td align="center">Windows 11</td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202019-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20LTSC%202024-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202021-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="center" colspan="2"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Sophia%20Script%20Wrapper-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
</tbody>
</table>
### Завантажити через PowerShell
@ -141,6 +157,7 @@ This page is also available in other languages
```powershell
iwr script.sophia.team -useb | iex
```
Завантажте та розпакуйте в папку Завантаження останню версію `Sophia Script for Windows` з актуального [коміту](https://github.com/farag2/Sophia-Script-for-Windows/commits/master/) залежно від версій ваших Windows і PowerShell.
```powershell
@ -186,7 +203,7 @@ winget install --id TeamSophia.SophiaScript --location $DownloadsFolder --accept
winget uninstall --id TeamSophia.SophiaScript --force
```
### Завантажити через scoop
### Завантажити через Scoop
<https://scoop.sh>
@ -205,8 +222,7 @@ scoop uninstall sophia-script --purge
## Як використовувати
* Завантажте та розархівуйте архів
* Розпакуйте архів
* Завантажте та розпакуйте архів
* Перегляньте файл `Sophia.ps1` для налаштування функцій, які потрібно запустити
* Помістіть символ `#` перед функцією, якщо ви не бажаєте, щоб вона виконувалась.
* Приберіть символ `#` перед функцією, якщо ви бажаєте, щоб вона виконувалась.
@ -264,7 +280,7 @@ Uninstall-UWPApps, "PinToStart -UnpinAll"
![Image](https://github.com/farag2/Sophia-Script-for-Windows/raw/master/img/Wrapper.png)
Детальніше [тут](../Wrapper/README.md)
Детальніше [тут](./Wrapper/README.md)
[@BenchTweakGaming](https://github.com/BenchTweakGaming)
@ -305,22 +321,22 @@ Sophia -Functions "DiagTrackService -Enable", Uninstall-UWPApps
[Windows-11-24h2]: https://support.microsoft.com/topic/windows-11-version-25h2-update-history-99c7f493-df2a-4832-bd2d-6706baa0dec0
| Версія | Збіркa | Видання |
|:-----------------------------------------|:-------------------------------------:|:-------------------:|
| Windows 11 24H2/25H2+ | [Latest stable][Windows-11-24h2] | Home/Pro/Enterprise |
| Windows 10 x64 22H2 | [Latest stable][Windows-10] | Home/Pro/Enterprise |
| Windows 11 Enterprise LTSC 2024 | [Latest stable][Windows-11-LTSC-2024] | Enterprise |
| Windows 10 x64 21H2 Enterprise LTSC 2021 | [Latest stable][Windows-10-LTSC-2021] | Enterprise |
| Windows 10 x64 1809 Enterprise LTSC 2019 | [Latest stable][Windows-10-LTSC-2019] | Enterprise |
|:-----------------------------------------|:----------------------------------------:|:-------------------:|
| Windows 11 24H2/25H2+ | [Остання стабільн][Windows-11-24h2] | Home/Pro/Enterprise |
| Windows 10 x64 22H2 | [Остання стабільн][Windows-10] | Home/Pro/Enterprise |
| Windows 11 Enterprise LTSC 2024 | [Остання стабільн][Windows-11-LTSC-2024] | Enterprise |
| Windows 10 x64 21H2 Enterprise LTSC 2021 | [Остання стабільн][Windows-10-LTSC-2021] | Enterprise |
| Windows 10 x64 1809 Enterprise LTSC 2019 | [Остання стабільн][Windows-10-LTSC-2019] | Enterprise |
## Скріншоти
### Локалізовані назви UWP-пакетів
![Image](../img/uwpapps.png)
![Image](./img/uwpapps.png)
### Завантажте та встановіть будь-який підтримуваний дистрибутив Linux в автоматичному режимі
![Image](../img/WSL.png)
![Image](./img/WSL.png)
### Інтерактивні тости для запланованих завдань

24
ReleaseNotesTemplate.md

@ -20,10 +20,6 @@ Diff from vOldVersion
***
Manual avaliable in other languages
<a href="./README.md#how-to-use"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/united-states.png" height="70px"/></a> <a href="https://github.com/farag2/Sophia-Script-for-Windows/blob/master/docs/README_uk-ua.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/ukraine.png" height="70px"/></a> <a href="https://github.com/farag2/Sophia-Script-for-Windows/blob/master/docs/README_de-de.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/germany.png" height="70px"/></a> <a href="https://github.com/farag2/Sophia-Script-for-Windows/blob/master/docs/README_ru-ru.md"><img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/refs/heads/master/img/russia.png" height="70px"/></a>
### Download
<table>
@ -33,27 +29,27 @@ Manual avaliable in other languages
<td align="center">Windows 11</td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.vSophia_Script_Windows_10_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%205.1-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.vSophia_Script_Windows_11_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%205.1-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.vSophia_Script_Windows_10_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.vSophia_Script_Windows_11_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.PowerShell.7.vSophia_Script_Windows_10_PowerShell_7.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%207-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.PowerShell.7.vSophia_Script_Windows_11_PowerShell_7.zip"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%207-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.PowerShell.7.vSophia_Script_Windows_10_PowerShell_7.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.PowerShell.7.vSophia_Script_Windows_11_PowerShell_7.zip"><img src="https://img.shields.io/badge/Windows%2011-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.LTSC.2019.vSophia_Script_Windows_10_LTSC2019.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202019-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.LTSC.2024.vSophia_Script_Windows_11_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2011%20LTSC%202024-PowerShell%205.1-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.LTSC.2019.vSophia_Script_Windows_10_LTSC2019.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202019-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.LTSC.2024.vSophia_Script_Windows_11_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2011%20LTSC%202024-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.LTSC.2021.vSophia_Script_Windows_10_LTSC2021.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202021-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.Arm.vSophia_Script_Windows_11_Arm_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%205.1-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.10.LTSC.2021.vSophia_Script_Windows_10_LTSC2021.zip"><img src="https://img.shields.io/badge/Windows%2010%20x64-LTSC%202021-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.Arm.vSophia_Script_Windows_11_Arm_PowerShell_5_1.zip"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%205.1-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="left"></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.Arm.PowerShell.7.vSophia_Script_Windows_11_Arm_PowerShell_7.zip"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%207-67b7d1.svg"></a></td>
<td align="left"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.for.Windows.11.Arm.PowerShell.7.vSophia_Script_Windows_11_Arm_PowerShell_7.zip"><img src="https://img.shields.io/badge/Windows%2011%20Arm-PowerShell%207-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
<tr>
<td align="center" colspan="2"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.Wrapper.vSophia_Script_Wrapper.zip"><img src="https://img.shields.io/badge/Sophia%20Script%20Wrapper-67b7d1.svg"></a></td>
<td align="center" colspan="2"><a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/download/NewVersion/Sophia.Script.Wrapper.vSophia_Script_Wrapper.zip"><img src="https://img.shields.io/badge/Sophia%20Script%20Wrapper-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr>
</tbody>
</table>

BIN
img/germany.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

BIN
img/russia.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

BIN
img/ukraine.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

BIN
img/united-states.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Loading…
Cancel
Save