Browse Source

Updated Readmes

pull/702/head
Dmitry Nefedov 3 months ago
parent
commit
b381716b1b
  1. 15
      .github/workflows/Badge_downloads.yml
  2. 2
      CHANGELOG.md
  3. 101
      README.md
  4. 107
      README_de-de.md
  5. 125
      README_ru-ru.md
  6. 124
      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

15
.github/workflows/Badge_downloads.yml

@ -15,7 +15,7 @@ jobs:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@main uses: actions/checkout@main
- name: Get the Numbers - name: Get download counts
run: | run: |
# Count downloads for the first page of the repo # Count downloads for the first page of the repo
# By default, GitHub parses only first page # By default, GitHub parses only first page
@ -24,7 +24,6 @@ jobs:
Accept = "application/vnd.github+json" Accept = "application/vnd.github+json"
Authorization = "Bearer $Token" Authorization = "Bearer $Token"
} }
$Parameters = @{ $Parameters = @{
Uri = "https://api.github.com/repos/farag2/Sophia-Script-for-Windows/releases?per_page=100&page=1" Uri = "https://api.github.com/repos/farag2/Sophia-Script-for-Windows/releases?per_page=100&page=1"
Headers = $Headers Headers = $Headers
@ -44,13 +43,21 @@ jobs:
# https://community.chocolatey.org/packages/sophia # https://community.chocolatey.org/packages/sophia
$Parameters = @{ $Parameters = @{
Uri = "https://community.chocolatey.org/api/v2/Packages()?`$filter=Id eq 'sophia' and IsLatestVersion" Uri = "https://community.chocolatey.org/api/v2/Packages()?`$filter=Id eq 'sophia' and IsLatestVersion"
UseBasicParsing = $true UseBasicParsing = $true
Verbose = $true Verbose = $true
} }
$choco = (Invoke-RestMethod @Parameters).properties.DownloadCount."#text" $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 Write-Verbose -Message $Summary -Verbose
echo "DOWNLOADS_COUNT=$Summary" >> $env:GITHUB_ENV 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](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; * Added cloud Defender scan before uploading to release page;
* https://github.com/farag2/Sophia-Script-for-Windows/blob/master/.github/workflows/Sophia.yml#L70 * 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 * https://github.com/ScoopInstaller/Extras/blob/master/bucket/sophia-script.json
* Fix for #684 * 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"> <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'> <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 # 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 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>
<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'> <img src="./img/SophiaScript.gif" width='800'>
</div> </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 ## 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 * Fully open-source project
* All archives are being built and uploaded using GitHub Actions [automatically](https://github.com/farag2/Sophia-Script-for-Windows/actions) * All archives are being built and uploaded using [GitHub Actions](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
* 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) * Has no conflict with [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Configure Windows privacy * Uninstall UWP apps displaying their localized packages names
* Configure Windows security * Script generates installed UWP apps list [dynamically](#localized-uwp-packages-names)
* Personalize Windows UI
* Display applied registry policies in the Local Group Policy Editor snap-in (gpedit.msc) * Display applied registry policies in the Local Group Policy Editor snap-in (gpedit.msc)
* Enable DNS-over-HTTPS for IPv4 * Enable DNS-over-HTTPS
* Turn off diagnostics tracking scheduled tasks with pop-up form written in [WPF](#screenshots) * Uninstall OneDrive
* Uninstall OneDrive "correctly" * Interactive [prompts and popups](#screenshots)
* Interactive [prompts](#change-user-folders-location-programmatically-using-the-interactive-menu) * <kbd>TAB</kbd> [completion](#how-to-run-the-specific-functions) for functions and their arguments (using Import-TabCompletion.ps1)
* 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 (without moving user files) using an interactive menu
* Change location of the user folders programmatically (without moving user files) within interactive menu using arrows to select a drive
* Desktop * Desktop
* Documents * Documents
* Downloads * Downloads
* Music * Music
* Pictures * Pictures
* Videos * 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 * 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 * 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)
* Script generates installed UWP apps list [dynamically](#localized-uwp-packages-names) * Set an app as default one for specific extension without "How do you want to open this" pop-up
* 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 * Export and import all Windows associations. You need to install all apps according to exported JSON file to restore all associations
* 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) * Install WSL Linux distribution with [pop-up](#screenshots) using friendly distro names
* 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)
* 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 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 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 `SoftwareDistribution` for cleaning up `%SystemRoot%\SoftwareDistribution\Download`
* Create a scheduled task `Temp` for cleaning up `%TEMP%` * Create a scheduled task `Temp` for cleaning up `%TEMP%`
* Create tasks in the Task Scheduler to clear * Install the latest provided Microsoft Visual C++ 2015–2026 x86/x64
* `%SystemRoot%\SoftwareDistribution\Download`
* `%TEMP%`
* Install the latest provided Microsoft Visual C++ 2015–2026 x86/x64 (ARM64 supported)
* Install the latest provided .NET Desktop Runtime 8, 9, 10 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 ## Table of Contents
@ -116,7 +101,7 @@ This page is also available in other languages
* [Download via PowerShell](#download-via-powershell) * [Download via PowerShell](#download-via-powershell)
* [Download via Chocolatey](#download-via-chocolatey) * [Download via Chocolatey](#download-via-chocolatey)
* [Download via WinGet](#download-via-winget) * [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 use](#how-to-use)
* [How to run the specific function(s)](#how-to-run-the-specific-functions) * [How to run the specific function(s)](#how-to-run-the-specific-functions)
* [Wrapper](#wrapper) * [Wrapper](#wrapper)
@ -127,13 +112,43 @@ This page is also available in other languages
* [Videos](#videos) * [Videos](#videos)
* [How to translate](#how-to-translate) * [How to translate](#how-to-translate)
* [Media](#media) * [Media](#media)
* [SophiApp 2](#sophiapp-2-c--winui-3) * [SophiApp 2](#sophiapp-20-c--winui-3)
## How to download ## How to download
### From release page ### 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 ### Download via PowerShell
@ -188,7 +203,7 @@ winget install --id TeamSophia.SophiaScript --location $DownloadsFolder --accept
winget uninstall --id TeamSophia.SophiaScript --force winget uninstall --id TeamSophia.SophiaScript --force
``` ```
### Download via scoop ### Download via Scoop
<https://scoop.sh> <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"> <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'> <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 # 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 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>
<br> <br>
This page is also available in other languages <img src="./img/SophiaScript.gif" width='800'>
<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'>
</div> </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 ## 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 * Vollständig quelloffenes Projekt
* Alle Archive werden [automatisch](https://github.com/farag2/Sophia-Script-for-Windows/actions) mit GitHub Actions erstellt und hochgeladen * 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 * 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) * Es besteht kein Konflikt mit [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Windows-Datenschutz konfigurieren * Deinstallieren Sie UWP-Anwendungen, mithilfe der Paketnamen
* Konfigurieren Sie die Windows-Sicherheit * Skript generiert Liste der installierten UWP-Apps [dynamisch](#lokalisierte-namen-von-uwp-paketen)
* Windows-Benutzeroberfläche personalisieren
* Zeigen Sie die angewendeten Registrierungsrichtlinien im Snap-Ins Editor für lokale Gruppenrichtlinien (gpedit.msc) an * Zeigen Sie die angewendeten Registrierungsrichtlinien im Snap-Ins Editor für lokale Gruppenrichtlinien (gpedit.msc) an
* DNS-über-HTTPS für IPv4 aktivieren * DNS-über-HTTPS aktivieren
* Deaktivieren Sie die Diagnoseverfolgung geplanter Aufgaben mit einem in [WPF] geschriebenen Popup-Formular (#screenshots) * OneDrive entfernen
* OneDrive "richtig" deinstallieren * Interaktive [Eingabeaufforderungen und Popups](#screenshots)
* Interaktive [Eingabeaufforderungen](#change-user-folders-location-programmatically-using-the-interactive-menu) * Die <kbd>TAB</kbd> [Autovervollständigung](#verwendung-von-spezifischen-funktionen) für Funktionen und ihre Argumente (mit Import-TabCompletion.ps1)
* 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)
* Ändern Sie den Speicherort der Benutzerordner programmatisch (ohne die Benutzerdateien zu verschieben) im interaktiven Menü mit Hilfe von Pfeilen zur Auswahl eines Laufwerks * Ändern Sie den Speicherort der Benutzerordner programmatisch (ohne die Benutzerdateien zu verschieben) im interaktiven Menü mit Hilfe von Pfeilen zur Auswahl eines Laufwerks
* Desktop * Desktop
* Dokumente * Dokumente
@ -90,20 +81,17 @@ This page is also available in other languages
* Bilder * Bilder
* Videos * 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 * 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 * 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
* Skript generiert Liste der installierten UWP-Apps [dynamisch](#lokalisierte-namen-von-uwp-paketen) * Eine App als Standard für eine bestimmte Dateiendung festlegen, ohne dass das Popup-Fenster „Wie möchten Sie diese Datei öffnen?“ angezeigt wird
* 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 * Exportieren und importieren Sie alle Windows-Zuordnungen. Sie müssen alle Apps gemäß der exportierten JSON-Datei installieren, um alle Zuordnungen wiederherzustellen
* 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>) * Installieren Sie die WSL-Linux-Distribution mit Popup-Fenster(#screenshots) unter Verwendung benutzerfreundlicher Distributionsnamen
* 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)
* 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 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 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 `SoftwareDistribution` zur Bereinigung von `%SystemRoot%\SoftwareDistribution\Download`
* Erstellen Sie eine geplante Aufgabe `Temp` zum Aufräumen von `%TEMP%` * 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 Microsoft Visual C++ 2015–2026 x86/x64
* Installieren Sie die neueste bereitgestellte Version von .NET Desktop Runtime 8, 9, 10 (ARM64 supported) * Installieren Sie die neueste bereitgestellte Version von .NET Desktop Runtime 8, 9, 10
* Viele weitere "tiefe" Optimierungen des Datei-Explorers und des Kontextmenüs * Viele weitere Optimierungen für den Datei-Explorer und das Kontextmenü
## Table of Contents ## Table of Contents
@ -113,7 +101,7 @@ This page is also available in other languages
* [Herunterladen über PowerShell](#herunterladen-über-powershell) * [Herunterladen über PowerShell](#herunterladen-über-powershell)
* [Herunterladen über Chocolatey](#herunterladen-über-chocolatey) * [Herunterladen über Chocolatey](#herunterladen-über-chocolatey)
* [Herunterladen über WinGet](#herunterladen-über-winget) * [Herunterladen über WinGet](#herunterladen-über-winget)
* [Herunterladen über scoop](#herunterladen-über-scoop) * [Herunterladen über Scoop](#herunterladen-über-Scoop)
* [Wie zu verwenden](#wie-zu-verwenden) * [Wie zu verwenden](#wie-zu-verwenden)
* [Verwendung von spezifischen Funktionen](#verwendung-von-spezifischen-funktionen) * [Verwendung von spezifischen Funktionen](#verwendung-von-spezifischen-funktionen)
* [Wrapper](#wrapper) * [Wrapper](#wrapper)
@ -124,15 +112,45 @@ This page is also available in other languages
* [Videos](#videos) * [Videos](#videos)
* [Wie man übersetzt](#wie-man-übersetzt) * [Wie man übersetzt](#wie-man-übersetzt)
* [Media](#media) * [Media](#media)
* [SophiApp 2](#sophiapp-2-c--winui-3) * [SophiApp 2](#sophiapp-20-c--winui-3)
## Wie kann man herunterladen ## Wie kann man herunterladen
### Von der GitHub-Versionsseite ### Von der GitHub-Versionsseite
[Download](https://github.com/farag2/Sophia-Script-for-Windows/releases/latest) depending to your Windows and PowerShell versions. <table>
<tbody>
### Download über PowerShell <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. 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 winget uninstall --id TeamSophia.SophiaScript --force
``` ```
### Herunterladen über scoop ### Herunterladen über Scoop
<https://scoop.sh> <https://scoop.sh>
@ -204,8 +222,7 @@ scoop uninstall sophia-script --purge
## Wie zu verwenden ## Wie zu verwenden
* Archiv herunterladen und erweitern * Archiv herunterladen und entpacken
* Das Archiv extrahieren
* Schauen Sie sich die Datei `Sophia.ps1` an, um die Funktionen zu konfigurieren, die Sie ausführen möchten * 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. * 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. * 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) ![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) [@BenchTweakGaming](https://github.com/BenchTweakGaming)
@ -315,11 +332,11 @@ Sophia -Functions "DiagTrackService -Enable", Uninstall-UWPApps
### Lokalisierte Namen von UWP-Paketen ### 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 ### 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 ### Native interaktive Toasts für die geplanten Aufgaben

125
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"> <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'> <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 # 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 Сделано с <img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/img/heart.svg" height="17px"/> к Windows
@ -12,7 +14,7 @@
<a href="https://github.com/farag2/Sophia-Script-for-Windows/actions"><img src="https://img.shields.io/github/actions/workflow/status/farag2/Sophia-Script-for-Windows/Sophia.yml?labelColor=151B23&color=151B23&style=for-the-badge&label=build&logo=GitHub"></a> <a href="https://github.com/farag2/Sophia-Script-for-Windows/actions"><img src="https://img.shields.io/github/actions/workflow/status/farag2/Sophia-Script-for-Windows/Sophia.yml?labelColor=151B23&color=151B23&style=for-the-badge&label=build&logo=GitHub"></a>
</kbd> </kbd>
<kbd> <kbd>
<a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Arm-support-green?labelColor=151B23&color=151B23&style=for-the-badge&logo=Arm&logoColor=white" href="#"></a> <a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Arm-support-green?labelColor=151B23&color=151B23&style=for-the-badge&logo=Arm&logoColor=white" href="#"></a>
</kbd> </kbd>
<kbd> <kbd>
<a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Human%20Coded%20100%25-green?labelColor=151B23&color=151B23&style=for-the-badge" href="#"></a> <a href="https://github.com/farag2/Sophia-Script-for-Windows/releases/latest"><img src="https://img.shields.io/badge/Human%20Coded%20100%25-green?labelColor=151B23&color=151B23&style=for-the-badge" href="#"></a>
@ -49,40 +51,29 @@
<br> <br>
<br> <br>
This page is also available in other languages <img src="./img/SophiaScript.gif" width='800'>
<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'>
</div> </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) * Все архивы собираются и загружаются на страницу релизов, используя 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, and WinGet * Поддержка ARM64 и PowerShell 7
* Не конфликтует с [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac) * Не конфликтует с [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Настройка конфиденциальности Windows * Удаление UWP-приложений с отображением локализованных имен пакетов
* Настроить безопасность Windows * Скрипт генерирует список установленных UWP-приложений [динамически](#локализованные-имена-uwp-пакетов)
* Персонализация пользовательского интерфейса Windows
* Отобразить примененные политики реестра в оснастке редактирования групповых политик (gpedit.msc) * Отобразить примененные политики реестра в оснастке редактирования групповых политик (gpedit.msc)
* Включить DNS-over-HTTPS для IPv4 * Включить DNS-over-HTTPS
* Выключить диагностические задания в Планировщике заданий с помощью всплывыющего окошка, написанного на [WPF](#скриншоты) * Удаление OneDrive
* "Правильно" удалить OneDrive * Интерактивные [подсказки и всплывающие окна](#скриншоты)
* Интерактивные [подсказки](#программно-изменить-расположение-пользовательских-папок-с-помощью-интерактивного-меню) * [Автопродление](#как-выполнить-конкретную-функциюи) функций и их аргументов с помощью <kbd>TAB</kbd> (используя Import-TabCompletion.ps1)
* [Автопродление](#автопродление-функций-с-помощью-tab-подробнее-здесь) функций и их аргументов с помощью <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) на лету (без перезагрузок) * Установить бесплатный (светлый и темный) курсор "Windows 11 Cursors Concept v2" от [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) на лету (без перезагрузок)
* Удалить UWP-приложения, отображая их локализированные имена пакетов * Архив был скачан в папку [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)
* Скрипт генерирует список установленных UWP-приложений [динамически](#локализированные-имена-пакетов) * Установить приложение по умолчанию для конкретного расширения без всплывающего окошка "Каким образом вы хотите открыть этот файл?"
* Скачать и установить [Расширения для видео HEVC от производителя](https://apps.microsoft.com/detail/9N4WGH0Z6VHQ), чтобы иметь поддержку формата [HEVC](https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding) * Экспортировать и импортировать все ассоциации в Windows. Необходимо установить все приложения в соответствии с экспортированным файлом JSON-файлом, чтобы восстановить ассоциации
* Установить приложение по умолчанию для конкретного расширения без всплывающего окошка "Каким образом вы хотите открыть этот файл?", используя специльную [функцию](https://github.com/DanysysTeam/PS-SFTA) * Установить дистрибутив Linux через WSL, используя локализованные имена дистрибутивов с помощью всплывающего [окна](#скриншоты)
* Экспортировать все ассоциации в Windows. Ассоциации будут экспортированы в файл `Application_Associations.json` в корне папки скрипта
* Импортировать выгруженный `Application_Associations.json` после чистой установки. Вам необходимо установить все приложения из списка выгруженного `Application_Associations.json`, чтобы восстановить ассоциации
* Установить любой поддерживаемый дистрибутив Linux через WSL, отображая локализированные имена дистрибутивов с помощью всплывающего окошка, написанного на [WPF](#скриншоты)
* Создать задания в Планировщике заданий с нативным тостовым уведомлением, где вы сможете запустить или отменить [выполнение](#нативные-тостовые-уведомления-для-заданий-планировщика-заданий) задания * Создать задания в Планировщике заданий с нативным тостовым уведомлением, где вы сможете запустить или отменить [выполнение](#нативные-тостовые-уведомления-для-заданий-планировщика-заданий) задания
* Создать задания `Windows Cleanup` и `Windows Cleanup Notification` для очистки Winsows от неиспользуемых файлов и файлов обновлений * Создать задания `Windows Cleanup` и `Windows Cleanup Notification` для очистки Winsows от неиспользуемых файлов и файлов обновлений
* Создать задание `SoftwareDistribution` для очистки `%SystemRoot%\SoftwareDistribution\Download` * Создать задание `SoftwareDistribution` для очистки `%SystemRoot%\SoftwareDistribution\Download`
* Создать задание `Temp` для очистки `%TEMP%` * Создать задание `Temp` для очистки `%TEMP%`
* Установить последней версии распространяемых пакетов Microsoft Visual C++ 2015–2026 x86/x64 (поддержка ARM64) * Установить последней версии распространяемых пакетов Microsoft Visual C++ 2015–2026 x86/x64
* Установить последней версии распространяемых пакетов .NET Desktop Runtime 8, 9, 10 x64 (поддержка ARM64) * Установить последней версии распространяемых пакетов .NET Desktop Runtime 8, 9, 10 x64
* Много других твиков проводника и контекстного меню * Много других твиков проводника и контекстного меню
## Содержание ## Содержание
@ -113,9 +101,9 @@ This page is also available in other languages
* [Скачать через PowerShell](#скачать-через-powershell) * [Скачать через PowerShell](#скачать-через-powershell)
* [Скачать через Chocolatey](#скачать-через-chocolatey) * [Скачать через Chocolatey](#скачать-через-chocolatey)
* [Скачать через WinGet](#скачать-через-winget) * [Скачать через WinGet](#скачать-через-winget)
* [Скачать через scoop](#скачать-через-scoop) * [Скачать через Scoop](#скачать-через-Scoop)
* [Как использовать](#как-использовать) * [Как использовать](#как-использовать)
* [Как выполнить конкретную функцию(и)](#как-выполните-конкретную-функциюи) * [Как выполнить конкретную функцию(и)](#как-выполнить-конкретную-функциюи)
* [Wrapper](#wrapper) * [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 ### Скачать через PowerShell
@ -139,6 +157,7 @@ This page is also available in other languages
```powershell ```powershell
iwr script.sophia.team -useb | iex iwr script.sophia.team -useb | iex
``` ```
Скачать и распаковать в папку Загрузки последнюю версию `Sophia Script for Windows` из актуального [коммита](https://github.com/farag2/Sophia-Script-for-Windows/commits/master/) в зависимости от версий ваших Windows и PowerShell. Скачать и распаковать в папку Загрузки последнюю версию `Sophia Script for Windows` из актуального [коммита](https://github.com/farag2/Sophia-Script-for-Windows/commits/master/) в зависимости от версий ваших Windows и PowerShell.
```powershell ```powershell
@ -184,7 +203,7 @@ winget install --id TeamSophia.SophiaScript --location $DownloadsFolder --accept
winget uninstall --id TeamSophia.SophiaScript --force winget uninstall --id TeamSophia.SophiaScript --force
``` ```
### Скачать через scoop ### Скачать через Scoop
<https://scoop.sh> <https://scoop.sh>
@ -233,7 +252,7 @@ scoop uninstall sophia-script --purge
<https://github.com/user-attachments/assets/f5bda68f-9509-41dc-b3b1-1518aeaee36f> <https://github.com/user-attachments/assets/f5bda68f-9509-41dc-b3b1-1518aeaee36f>
### Как выполните конкретную функцию(и) ### Как выполнить конкретную функцию(и)
* Выполните все шаги из пункта [Как использовать](#как-использовать) и остановитесь на пункте по изменнию политики выполнения скриптов в `PowerShell` * Выполните все шаги из пункта [Как использовать](#как-использовать) и остановитесь на пункте по изменнию политики выполнения скриптов в `PowerShell`
* Сначала загрузите файл `Import-TabCompletion.ps1` через [дот сорсинг](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_operators#dot-sourcing-operator-): * Сначала загрузите файл `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) ![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) [@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-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]: 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 11 24H2/25H2+ | [Последняя стабильная][Windows-11-24h2] | Home/Pro/Enterprise |
| Windows 10 x64 22H2 | [Latest stable][Windows-10] | Home/Pro/Enterprise | | Windows 10 x64 22H2 | [Последняя стабильная][Windows-10] | Home/Pro/Enterprise |
| Windows 11 Enterprise LTSC 2024 | [Latest stable][Windows-11-LTSC-2024] | Enterprise | | Windows 11 Enterprise LTSC 2024 | [Последняя стабильная][Windows-11-LTSC-2024] | Enterprise |
| Windows 10 x64 21H2 Enterprise LTSC 2021 | [Latest stable][Windows-10-LTSC-2021] | Enterprise | | Windows 10 x64 21H2 Enterprise LTSC 2021 | [Последняя стабильная][Windows-10-LTSC-2021] | Enterprise |
| Windows 10 x64 1809 Enterprise LTSC 2019 | [Latest stable][Windows-10-LTSC-2019] | Enterprise | | Windows 10 x64 1809 Enterprise LTSC 2019 | [Последняя стабильная][Windows-10-LTSC-2019] | Enterprise |
## Скриншоты ## Скриншоты
### Локализированные имена пакетов ### Локализованные имена UWP-пакетов
![Image](../img/uwpapps.png) ![Image](./img/uwpapps.png)
### Скачать и установить любые поддерживаемые дистрибутивые Linux через WSL в автоматическом режиме ### Скачать и установить любые поддерживаемые дистрибутивые Linux через WSL в автоматическом режиме
![Image](../img/WSL.png) ![Image](./img/WSL.png)
### Нативные тостовые уведомления для заданий Планировщика заданий ### Нативные тостовые уведомления для заданий Планировщика заданий

124
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"> <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'> <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 # 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 Зроблено з <img src="https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/img/heart.svg" height="17px"/> до Windows
@ -49,40 +51,29 @@
<br> <br>
<br> <br>
This page is also available in other languages <img src="./img/SophiaScript.gif" width='800'>
<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'>
</div> </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). * Всі архіви збираються і завантажуються на сторінку релізів, використовуючи 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) * Не конфліктує з [VAC](https://help.steampowered.com/faqs/view/571A-97DA-70E9-FF74#whatisvac)
* Налаштування конфіденційності Windows * Видалення UWP-додатків, що відображають назви пакетів
* Налаштування безпеки Windows * Скрипт генерує список встановлених UWP-додатків [динамічно](#локалізовані-назви-uwp-пакетів)
* Налаштування інтерфейсу і персоналізація
* Відобразити застосовані політики реєстру в оснащенні редагування групових політик (gpedit.msc) * Відобразити застосовані політики реєстру в оснащенні редагування групових політик (gpedit.msc)
* Активація DNS-over-HTTPS для IPv4 * Активація DNS-over-HTTPS
* Вимкнення запланованих завдань з відстеження зі спливаючою формою, написаною на [WPF](#скріншоти) * Видалення OneDrive
* "Правильне" видалення OneDrive * Інтерактивні [підказки та спливаючі вікна](#скріншоти)
* Інтерактивні [підказки](#програмна-зміна-розташування-папок-користувача-за-допомогою-інтерактивного-меню) * <kbd>TAB</kbd> [доповнення](#як-виконати-конкретну-функцію(ї)) для функцій та їх аргументів (Використовуючи Import-TabCompletion.ps1)
* <kbd>TAB</kbd> [доповнення](#автодоповнення-tab-детальніше-тут) для функцій та їх аргументів (якщо використовується файл 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) на льоту * Встановлення безкоштовних (світлий та темний) курсорів "Windows 11 Cursors Concept v2" від [Jepri Creations](https://www.deviantart.com/jepricreations/art/Windows-11-Cursors-Concept-v2-886489356) на льоту
* Видалення UWP-додатків, що відображають назви пакетів * Архів був завантажений у папку [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)
* Скрипт генерує список встановлених UWP-додатків [динамічно](#локалізовані-назви-uwp-пакетів). * Реєстрація програми, розрахунок хешу та встановлення за замовчуванням для певного розширення без спливаючого вікна "Як ви хочете відкрити це"
* Вимкнення функцій Windows для відображення дружніх назв пакетів у спливаючій формі, написаній на [WPF](#скріншоти) * Експортувати та імпортувати всі асоціації в Windows. Необхідно встановити всі програми відповідно до експортованого файлу JSON, щоб відновити асоціації.
* Видалення можливостей Windows відображати дружні назви пакетів у спливаючій формі, написаній на [WPF](#скріншоти) * Встановити дистрибутив Linux через WSL, використовуючи локалізовані імена дистрибутивів за допомогою спливаючого [вікна](#скріншоти)
* Завантаження та встановлення [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](#скріншоти)
* Створити завдання з нативним тостовим повідомленням, де ви зможете запустити або скасувати [виконання](#інтерактивні-тости-для-запланованих-завдань) завдання * Створити завдання з нативним тостовим повідомленням, де ви зможете запустити або скасувати [виконання](#інтерактивні-тости-для-запланованих-завдань) завдання
* Створити завдання `Windows Cleanup` и `Windows Cleanup Notification` для очищення Windows від невикористовуваних файлів та оновлень * Створити завдання `Windows Cleanup` и `Windows Cleanup Notification` для очищення Windows від невикористовуваних файлів та оновлень
* Створити завдання `SoftwareDistribution` для очищення `%SystemRoot%\SoftwareDistribution\Download` * Створити завдання `SoftwareDistribution` для очищення `%SystemRoot%\SoftwareDistribution\Download`
* Створити завдання `Temp` для очищення `%TEMP%` * Створити завдання `Temp` для очищення `%TEMP%`
* Встановити останню версію розповсюджуваних пакетів Microsoft Visual C++ 2015–2026 x86/x64 (підтримка ARM64) * Встановити останню версію розповсюджуваних пакетів Microsoft Visual C++ 2015–2026 x86/x64
* Встановити останню версію розповсюджуваних пакетів .NET Desktop Runtime 8, 9, 10 x64 (підтримка ARM64) * Встановити останню версію розповсюджуваних пакетів .NET Desktop Runtime 8, 9, 10 x64
* Ще багато "глибоких" налаштувань Файлового Провідника та контекстного меню * Ще багато налаштувань Файлового Провідника та контекстного меню
## Зміст ## Зміст
@ -115,7 +101,7 @@ This page is also available in other languages
* [Завантажити через PowerShell](#завантажити-через-powershell) * [Завантажити через PowerShell](#завантажити-через-powershell)
* [Завантажити через Chocolatey](#завантажити-через-chocolatey) * [Завантажити через Chocolatey](#завантажити-через-chocolatey)
* [Завантажити через WinGet](#завантажити-через-winget) * [Завантажити через WinGet](#завантажити-через-winget)
* [Завантажити через scoop](#завантажити-через-scoop) * [Завантажити через Scoop](#завантажити-через-Scoop)
* [Як використовувати](#як-використовувати) * [Як використовувати](#як-використовувати)
* [Як запустити певну функцію(ї)](#як-запустити-певну-функціюї) * [Як запустити певну функцію(ї)](#як-запустити-певну-функціюї)
* [Wrapper](#wrapper) * [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 ### Завантажити через PowerShell
@ -141,6 +157,7 @@ This page is also available in other languages
```powershell ```powershell
iwr script.sophia.team -useb | iex iwr script.sophia.team -useb | iex
``` ```
Завантажте та розпакуйте в папку Завантаження останню версію `Sophia Script for Windows` з актуального [коміту](https://github.com/farag2/Sophia-Script-for-Windows/commits/master/) залежно від версій ваших Windows і PowerShell. Завантажте та розпакуйте в папку Завантаження останню версію `Sophia Script for Windows` з актуального [коміту](https://github.com/farag2/Sophia-Script-for-Windows/commits/master/) залежно від версій ваших Windows і PowerShell.
```powershell ```powershell
@ -186,7 +203,7 @@ winget install --id TeamSophia.SophiaScript --location $DownloadsFolder --accept
winget uninstall --id TeamSophia.SophiaScript --force winget uninstall --id TeamSophia.SophiaScript --force
``` ```
### Завантажити через scoop ### Завантажити через Scoop
<https://scoop.sh> <https://scoop.sh>
@ -205,8 +222,7 @@ scoop uninstall sophia-script --purge
## Як використовувати ## Як використовувати
* Завантажте та розархівуйте архів * Завантажте та розпакуйте архів
* Розпакуйте архів
* Перегляньте файл `Sophia.ps1` для налаштування функцій, які потрібно запустити * Перегляньте файл `Sophia.ps1` для налаштування функцій, які потрібно запустити
* Помістіть символ `#` перед функцією, якщо ви не бажаєте, щоб вона виконувалась. * Помістіть символ `#` перед функцією, якщо ви не бажаєте, щоб вона виконувалась.
* Приберіть символ `#` перед функцією, якщо ви бажаєте, щоб вона виконувалась. * Приберіть символ `#` перед функцією, якщо ви бажаєте, щоб вона виконувалась.
@ -264,7 +280,7 @@ Uninstall-UWPApps, "PinToStart -UnpinAll"
![Image](https://github.com/farag2/Sophia-Script-for-Windows/raw/master/img/Wrapper.png) ![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) [@BenchTweakGaming](https://github.com/BenchTweakGaming)
@ -304,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-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]: https://support.microsoft.com/topic/windows-11-version-25h2-update-history-99c7f493-df2a-4832-bd2d-6706baa0dec0
| Версія | Збіркa | Видання | | Версія | Збіркa | Видання |
|:-----------------------------------------|:-------------------------------------:|:-------------------:| |:-----------------------------------------|:----------------------------------------:|:-------------------:|
| Windows 11 24H2/25H2+ | [Latest stable][Windows-11-24h2] | Home/Pro/Enterprise | | Windows 11 24H2/25H2+ | [Остання стабільн][Windows-11-24h2] | Home/Pro/Enterprise |
| Windows 10 x64 22H2 | [Latest stable][Windows-10] | Home/Pro/Enterprise | | Windows 10 x64 22H2 | [Остання стабільн][Windows-10] | Home/Pro/Enterprise |
| Windows 11 Enterprise LTSC 2024 | [Latest stable][Windows-11-LTSC-2024] | Enterprise | | Windows 11 Enterprise LTSC 2024 | [Остання стабільн][Windows-11-LTSC-2024] | Enterprise |
| Windows 10 x64 21H2 Enterprise LTSC 2021 | [Latest stable][Windows-10-LTSC-2021] | Enterprise | | Windows 10 x64 21H2 Enterprise LTSC 2021 | [Остання стабільн][Windows-10-LTSC-2021] | Enterprise |
| Windows 10 x64 1809 Enterprise LTSC 2019 | [Latest stable][Windows-10-LTSC-2019] | Enterprise | | Windows 10 x64 1809 Enterprise LTSC 2019 | [Остання стабільн][Windows-10-LTSC-2019] | Enterprise |
## Скріншоти ## Скріншоти
### Локалізовані назви UWP-пакетів ### Локалізовані назви UWP-пакетів
![Image](../img/uwpapps.png) ![Image](./img/uwpapps.png)
### Завантажте та встановіть будь-який підтримуваний дистрибутив Linux в автоматичному режимі ### Завантажте та встановіть будь-який підтримуваний дистрибутив 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 ### Download
<table> <table>
@ -33,27 +29,27 @@ Manual avaliable in other languages
<td align="center">Windows 11</td> <td align="center">Windows 11</td>
</tr> </tr>
<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.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-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-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr> </tr>
<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.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-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-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr> </tr>
<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.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-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-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr> </tr>
<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.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-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-green?labelColor=151B23&color=151B23&style=for-the-badge"></a></td>
</tr> </tr>
<tr> <tr>
<td align="left"></td> <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>
<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> </tr>
</tbody> </tbody>
</table> </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