Browse Source

02.03.2021 v5.6

pull/149/head
Dmitry Nefedov 4 years ago
committed by GitHub
parent
commit
dbc0eeff52
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 62
      Sophia/PowerShell 5.1/Sophia.ps1
  2. BIN
      Sophia/PowerShell 5.1/Sophia.psd1
  3. 1022
      Sophia/PowerShell 5.1/Sophia.psm1
  4. 16
      Sophia/PowerShell 5.1/cn-CN/Sophia.psd1
  5. 4
      Sophia/PowerShell 5.1/de-DE/Sophia.psd1
  6. 4
      Sophia/PowerShell 5.1/en-US/Sophia.psd1
  7. 4
      Sophia/PowerShell 5.1/es-ES/Sophia.psd1
  8. 4
      Sophia/PowerShell 5.1/fr-FR/Sophia.psd1
  9. 4
      Sophia/PowerShell 5.1/it-IT/Sophia.psd1
  10. 4
      Sophia/PowerShell 5.1/ru-RU/Sophia.psd1
  11. 4
      Sophia/PowerShell 5.1/tr-TR/Sophia.psd1
  12. 4
      Sophia/PowerShell 5.1/uk-UA/Sophia.psd1

62
Sophia/PowerShell 5.1/Sophia.ps1

@ -2,8 +2,8 @@
.SYNOPSIS
Default preset file for "Windows 10 Sophia Script"
Version: v5.5
Date: 20.02.2021
Version: v5.6
Date: 02.03.2021
Copyright (c) 20152021 farag & oZ-Zo
https://github.com/farag2
@ -21,7 +21,7 @@
.\Sophia.ps1
.EXAMPLE
.\Sophia.ps1 -Functions "DiagTrackService -Disable", "DiagnosticDataLevel -Minimal", InstallHEIF
.\Sophia.ps1 -Functions "DiagTrackService -Disable", "DiagnosticDataLevel -Minimal", UninstallUWPApps
.NOTES
https://forum.ru-board.com/topic.cgi?forum=62&topic=30617#15
@ -57,7 +57,7 @@ param
Clear-Host
$Host.UI.RawUI.WindowTitle = "Windows 10 Sophia Script v5.5 | $([char]0x00A9) farag & oz-zo, 2015–2021"
$Host.UI.RawUI.WindowTitle = "Windows 10 Sophia Script v5.6 | $([char]0x00A9) farag & oz-zo, 2015–2021"
Remove-Module -Name Sophia -Force -ErrorAction Ignore
Import-Module -Name $PSScriptRoot\Sophia.psd1 -PassThru -Force
@ -70,7 +70,7 @@ Import-LocalizedData -BindingVariable Global:Localization -FileName Sophia
Добавляет возможность запускать скрипт, указывая в качестве параметров функции модуля
.EXAMPLE
.\Sophia.ps1 -Functions "DiagTrackService -Disable", "DiagnosticDataLevel -Minimal", InstallHEIF
.\Sophia.ps1 -Functions "DiagTrackService -Disable", "DiagnosticDataLevel -Minimal", UninstallUWPApps
.NOTES
Regardless of the functions entered as an argument, the "Checkings" function will be executed first, and the "Refresh" and "Errors" functions will be executed at the end
@ -557,8 +557,8 @@ StorageSenseRecycleBin -Enable
# StorageSenseRecycleBin -Disable
#endregion StorageSense
# Disable hibernation if the device is not a laptop
# Отключить режим гибернации, если устройство не является ноутбуком
# Disable hibernation
# Отключить режим гибернации
Hibernate -Disable
# Enable hibernate (default value)
@ -687,8 +687,8 @@ LatestInstalled.NET -Enable
# Не использовать последнюю установленную версию .NET для всех приложений (значение по умолчанию)
# LatestInstalled.NET -Disable
# Do not allow the computer (if device is not a laptop) to turn off the network adapters to save power
# Запретить отключение всех сетевых адаптеров для экономии энергии (если устройство не является ноутбуком)
# Do not allow the computer to turn off the network adapters to save power
# Запретить отключение всех сетевых адаптеров для экономии энергии
PCTurnOffDevice -Disable
# Allow the computer to turn off the network adapters to save power (default value)
@ -849,8 +849,25 @@ SmartActiveHours -Enable
DeviceRestartAfterUpdate -Enable
# Do not restart this device as soon as possible when a restart is required to install an update (default value)
# Не перезапуск этого устройства как можно быстрее, если для установки обновления требуется перезагрузка (значение по умолчанию)
# Не перезапускать это устройство как можно быстрее, если для установки обновления требуется перезагрузка (значение по умолчанию)
# DeviceRestartAfterUpdate -Disable
<#
Register app, calculate hash, and set as default for specific extension without the "How do you want to open this?" pop-up
Зарегистрировать приложение, вычислить хэш и установить как приложение по умолчанию для конкретного расширения без всплывающего окошка "Каким образом вы хотите открыть этот файл?"
Examples:
Примеры:
Set-Association -ProgramPath "C:\SumatraPDF.exe" -Extension .pdf -Icon "shell32.dll,100"
Set-Association -ProgramPath "C:\Program Files\Notepad++\notepad++.exe" -Extension .psm1 -Icon "C:\Program Files\Notepad++\notepad++.exe,0"
The app must be installed
Приложение должно быть установлено
Do not use relative paths like "%Program Files%"
Не используйте относительные пути вида "%Program Files%"
#>
# Set-Association -ProgramPath "C:\Program Files\Notepad++\notepad++.exe" -Extension .psm1 -Icon "C:\Program Files\Notepad++\notepad++.exe,0"
#endregion System
#region WSL
@ -900,16 +917,23 @@ RunPowerShellShortcut -Elevated
# RunPowerShellShortcut -NonElevated
<#
Assign what shortcuts pin to Start
Valid values: ControlPanel, DevicesPrinters and PowerShell
Assign what shortcuts to pin to Start
Valid shortcuts: ControlPanel, DevicesPrinters and PowerShell
Указать, какие ярлыки закрепить на начальном экране
PinToStart -Tiles ControlPanel, DevicesPrinters, PowerShell
Валидные ярлыки: ControlPanel, DevicesPrinters and PowerShell
#>
PinToStart -Tiles ControlPanel, DevicesPrinters, PowerShell
<#
Unpin all tiles first and pin necessary ones
Открепить все ярлыки сначала и закрепить необходимые
#>
# PinToStart -UnpinAll -Tiles ControlPanel, DevicesPrinters, PowerShell
# Unpin all the Start tiles
# Открепить все ярлыки от начального экрана
# PinToStart -UnpinAllStartTiles
# PinToStart -UnpinAll
#endregion Start menu
#region UWP apps
@ -923,13 +947,17 @@ RunPowerShellShortcut -Elevated
UninstallUWPApps
<#
Open Microsoft Store "HEVC Video Extensions from Device Manufacturer" page to install this extension manually to be able to open .heic and .heif image formats
Open Microsoft Store "HEVC Video Extensions from Device Manufacturer" page to install this extension manually to be able to open .heic and .heif formats
The extension can be installed without Microsoft account
Открыть страницу "Расширения для видео HEVC от производителя устройства" в Microsoft Store, чтобы вручную установить расширение для открытия изображений в форматах .heic и .heif
Открыть страницу "Расширения для видео HEVC от производителя устройства" в Microsoft Store, чтобы вручную установить расширение для открытия форматов .heic и .heif
Расширение может быть установлено бесплатно без учетной записи Microsoft
#>
InstallHEIF
# HEIF -Manual
# Download and install "HEVC Video Extensions from Device Manufacturer" to be able to open .heic and .heif formats
# Скачать и установить "Расширения для видео HEVC от производителя устройства", чтобы иметь возможность открывать форматы .heic и .heif
HEIF -Install
# Disable Cortana autostarting
# Выключить автозагрузку Кортана

BIN
Sophia/PowerShell 5.1/Sophia.psd1

Binary file not shown.

1022
Sophia/PowerShell 5.1/Sophia.psm1

File diff suppressed because it is too large

16
Sophia/PowerShell 5.1/cn-CN/Sophia.psd1

@ -4,7 +4,7 @@ UnsupportedOSBuild = 该脚本支持Windows 10版本2004 / 2
UnsupportedRelease = 找到新版本
ControlledFolderAccessDisabled = 受控文件夹访问禁用
ScheduledTasks = 计划任务
OneDriveUninstalling = 卸载OneDrive...
OneDriveUninstalling = 卸载OneDrive
OneDriveNotEmptyFolder = "{0}"文件夹不为空手动将其删除
OneDriveFileSyncShell64dllBlocked = "{0}"被阻止手动将其删除
OneDriveInstalling = OneDrive正在安装...
@ -16,7 +16,7 @@ WindowsFeaturesTitle = Windows功能
OptionalFeaturesTitle = 可选功能
EnableHardwareVT = UEFI中开启虚拟化
UserShellFolderNotEmpty = 一些文件留在了"{0}"文件夹.请手动将它们移到一个新位置
RetrievingDrivesList = 取得驱动器列表...
RetrievingDrivesList = 取得驱动器列表
NewUserShellFolderLocation = 新位置"{0}"
DesktopDriveSelect = 请选择一个驱动器,桌面文件夹将创建在其根目录
DocumentsDriveSelect = 请选择一个驱动器,文档文件夹将创建在其根目录
@ -45,9 +45,10 @@ VideosDefaultFolder = 是否要将视频文件夹位置改为
ReservedStorageIsInUse = 保留存储空间正在使用时不支持此操作. 请等待所有服务操作完成后再重试
ShortcutPinning = "{0}"快捷方式将被固定到开始菜单
UninstallUWPForAll = 对于所有用户
UninstallUWPTitle = 需要卸载的UWP应用
WSLUpdateDownloading = Linux内核更新包下载中... ~14 MB
WSLUpdateInstalling = 安装Linux内核更新包...
UninstallUWPTitle = UWP应用
WSLUpdateDownloading = Linux内核更新包下载中 ~14 MB
WSLUpdateInstalling = 安装Linux内核更新包
HEVCDownloading = Downloading 来自设备制造商的 HEVC 视频扩展... ~2,8 MB
GraphicsPerformanceTitle = 图形性能偏好
GraphicsPerformanceRequest = 是否将所选应用程序的图形性能设置设为"高性能"?
CleanUpTaskToast = 将在一分钟内清理未使用的Windows文件和更新
@ -73,7 +74,7 @@ Add = 添加
AllFilesFilter = 所有文件 (*.*)|*.*
Change = 更改
Continue = 接续
DialogBoxOpening = 显示对话窗口...
DialogBoxOpening = 显示对话窗口
Disable = 禁用
Enable = 启用
EXEFilesFilter = *.exe|*.exe|所有文件 (*.*)|*.*
@ -81,7 +82,8 @@ FolderSelect = 选择一个文件夹
FilesWontBeMoved = 文件将不会被移动
NoData = 无数据
NoInternetConnection = 无网络连接
Patient = 请等待...
NoResponse = 无法建立https://store.rg-adguard.net连接
Patient = 请等待
Select = 选择
Skip = 跳过
Skipped = 已跳过

4
Sophia/PowerShell 5.1/de-DE/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Möchten Sie den Speicherort des Ordner
ReservedStorageIsInUse = Dieser Vorgang wird nicht unterstützt, wenn reservierter Speicher verwendet wird `nBitte warten Sie, bis alle Wartungsvorgänge abgeschlossen sind, und versuchen Sie es dann später erneut
ShortcutPinning = Die Verknüpfung "{0}" wird an Start angeheftet
UninstallUWPForAll = Für alle Benutzer
UninstallUWPTitle = Zu deinstallierende UWP-Pakete
UninstallUWPTitle = UWP-Pakete
WSLUpdateDownloading = Herunterladen des Update-Pakets für den Linux-Kernel... ~14 MB
WSLUpdateInstalling = Installation des Aktualisierungspakets für den Linux-Kernel...
HEVCDownloading = Herunterladen von HEVC-Videoerweiterungen vom Gerätehersteller... ~2,8 MB
GraphicsPerformanceTitle = Bevorzugte Grafikleistung
GraphicsPerformanceRequest = Möchten Sie die Einstellung der Grafikleistung einer App Ihrer Wahl auf "Hohe Leistung" setzen?
CleanUpTaskToast = Das Bereinigen ungenutzter Windows-Dateien und Updates beginnt in einer Minute
@ -81,6 +82,7 @@ FolderSelect = Wählen Sie einen Ordner aus
FilesWontBeMoved = Dateien werden nicht verschoben
NoData = Nichts anzuzeigen
NoInternetConnection = Keine Internetverbindung
NoResponse = Eine Verbindung mit https://store.rg-adguard.net konnte nicht hergestellt werden
Patient = Bitte Warten...
Select = Wählen Sie
Skip = Überspringen

4
Sophia/PowerShell 5.1/en-US/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Would you like to change the location o
ReservedStorageIsInUse = This operation is not supported when reserved storage is in use\nPlease wait for any servicing operations to complete and then try again later
ShortcutPinning = The "{0}" shortcut is being pinned to Start
UninstallUWPForAll = For All Users
UninstallUWPTitle = UWP Packages to Uninstall
UninstallUWPTitle = UWP Apps
WSLUpdateDownloading = Downloading the Linux kernel update package... ~14 MB
WSLUpdateInstalling = Installing the Linux kernel update package...
HEVCDownloading = Downloading HEVC Video Extensions from Device Manufacturer... ~2,8 MB
GraphicsPerformanceTitle = Graphics performance preference
GraphicsPerformanceRequest = Would you like to set the graphics performance setting of an app of your choice to "High performance"?
CleanUpTaskToast = Cleaning up unused Windows files and updates starts in a minute
@ -81,6 +82,7 @@ FolderSelect = Select a folder
FilesWontBeMoved = Files will not be moved
NoData = Nothing to display
NoInternetConnection = No Internet connection
NoResponse = A connection could not be established with https://store.rg-adguard.net
Patient = Please wait...
Select = Select
Skip = Skip

4
Sophia/PowerShell 5.1/es-ES/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Quieres cambiar la ubicación de la car
ReservedStorageIsInUse = Esta operación no está disponible cuando el almacenamiento reservado está en uso\nPorfavor, espere a que se complete alguna operación de algún servicio e inténtelo de nuevo más tarde
ShortcutPinning = El acceso directo "{0}" se está acoplando al inicio
UninstallUWPForAll = Para todas las usuarias
UninstallUWPTitle = Paquetes UWP a desinstalar
UninstallUWPTitle = Aplicaciones UWP
WSLUpdateDownloading = Descargando el paquete de actualización del kernel de Linux... ~14 MB
WSLUpdateInstalling = Instalando el paquete de actualización del kernel de Linux...
HEVCDownloading = Descargando Extensiones de vídeo HEVC del fabricante del dispositivo... ~2,8 MB
GraphicsPerformanceTitle = Preferencia de rendimiento de gráficos
GraphicsPerformanceRequest = Quieres establecer el nivel de rendimiento de gráficos a "Alto rendimiento" en alguna aplicación?
CleanUpTaskToast = Limpiando archivos no usados y actualizaciones de Windows comienza en un minuto
@ -81,6 +82,7 @@ FolderSelect = Seleccione una carpeta
FilesWontBeMoved = Los archivos no se moverán
NoData = Nada que mostrar
NoInternetConnection = No hay conexión a Internet
NoResponse = No se pudo establecer una conexión con https://store.rg-adguard.net
Patient = Por favor espere...
Select = Seleccionar
Skip = Omitir

4
Sophia/PowerShell 5.1/fr-FR/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Souhaitez-vous changer l'emplacement du
ReservedStorageIsInUse = Cette opération n'est pas suppportée le stockage réservé est en cours d'utilisation `nVeuillez attendre la fin des opérations de maintenance, puis réessayer plus tard
ShortcutPinning = Le raccourci "{0}" est épinglé sur Démarrer
UninstallUWPForAll = Pour tous les utilisateurs
UninstallUWPTitle = Packages UWP à désinstaller
UninstallUWPTitle = Applications UWP
WSLUpdateDownloading = Téléchargement du package de mise à jour du noyau Linux... ~14 Mo
WSLUpdateInstalling = Installation du package de mise à jour du noyau Linux...
HEVCDownloading = Téléchargement de Extensions vidéo HEVC du fabricant de l'appareil... ~2,8 MB
GraphicsPerformanceTitle = Préférence de performances graphiques
GraphicsPerformanceRequest = Souhaitez-vous définir le paramètre de performances graphiques d'une application de votre choix sur "Haute performance"?
CleanUpTaskToast = Le nettoyage des fichiers Windows inutilisés et des mises à jour débute dans une minute
@ -81,6 +82,7 @@ FolderSelect = Sélectionner un dossier
FilesWontBeMoved = Les fichiers ne seront pas déplacés
NoData = Rien à afficher
NoInternetConnection = Pas de connexion Internet
NoResponse = Une connexion n'a pas pu être établie avec https://store.rg-adguard.net
Patient = Veuillez patienter...
Select = Sélectionner
Skip = Passer

4
Sophia/PowerShell 5.1/it-IT/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Desideri modificare la posizione della
ReservedStorageIsInUse = Questa operazione non è supportata quando reserved storage è in uso\nAttendere il completamento delle operazioni di manutenzione e riprovare più tardi
ShortcutPinning = Il collegamento "{0}" viene aggiunto a Start
UninstallUWPForAll = Per tutti gli utenti
UninstallUWPTitle = Pacchetti UWP Packages da Rimuovere
UninstallUWPTitle = App UWP
WSLUpdateDownloading = Scaricamento del pacchetto aggiornato di Linux kernel... ~14 MB
WSLUpdateInstalling = Installazione del pacchetto aggiornato di Linux kernel...
HEVCDownloading = Download di Estensioni video HEVC del produttore del dispositivo in corso... ~2,8 MB
GraphicsPerformanceTitle = Preferenze prestazioni della Grafica
GraphicsPerformanceRequest = Desideri impostare le prestazioni grafiche di un app di tua scelta su "Prestazioni elevate"?
CleanUpTaskToast = La pulizia dei file e degli aggiornamenti di Windows inutilizzati inizia in un minuto
@ -81,6 +82,7 @@ FolderSelect = Seleziona una cartella
FilesWontBeMoved = I file non verranno spostati
NoData = Nulla da visualizzare
NoInternetConnection = Nessuna connessione Internet
NoResponse = Non è stato possibile stabilire una connessione con https://store.rg-adguard.net
Patient = Attendere prego...
Select = Selezionare
Skip = Salta

4
Sophia/PowerShell 5.1/ru-RU/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Хотите изменить расп
ReservedStorageIsInUse = Операция не поддерживается, пока используется зарезервированное хранилище\nПожалуйста, дождитесь окончания всех обслуживающих операций и попробуйте заново
ShortcutPinning = Ярлык "{0}" закрепляется на начальном экране
UninstallUWPForAll = Для всех пользователей
UninstallUWPTitle = Удалить UWP-приложения
UninstallUWPTitle = UWP-приложения
WSLUpdateDownloading = Скачивается пакет обновления ядра Linux... ~14 МБ
WSLUpdateInstalling = Установка пакета обновления ядра Linux...
HEVCDownloading = Скачивается Расширения для видео HEVC от производителя устройства... ~2,8 МБ
GraphicsPerformanceTitle = Настройка производительности графики
GraphicsPerformanceRequest = Установить для любого приложения по вашему выбору настройки производительности графики на "Высокая производительность"?
CleanUpTaskToast = Очистка неиспользуемых файлов и обновлений Windows начнется через минуту
@ -81,6 +82,7 @@ FolderSelect = Выберите папку
FilesWontBeMoved = Файлы не будут перенесены
NoData = Отсутствуют данные
NoInternetConnection = Отсутствует интернет-соединение
NoResponse = Невозможно установить соединение с https://store.rg-adguard.net
Patient = Пожалуйста, подождите...
Select = Выбрать
Skip = Пропустить

4
Sophia/PowerShell 5.1/tr-TR/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Videolar klasörünün yerini eski hali
ReservedStorageIsInUse = Ayrılmış depolama kullanımdayken bu işlem desteklenmez. `nLütfen tüm servis işlemlerinin tamamlanmasını bekleyin ve daha sonra tekrar deneyin
ShortcutPinning = "{0}" kısayolu Başlangıç sekmesine sabitlendi
UninstallUWPForAll = Bütün kullanıcılar için
UninstallUWPTitle = Kaldırmak için UWP paketleri
UninstallUWPTitle = UWP Uygulamaları
WSLUpdateDownloading = Linux kernel güncelleme paketi indiriliyor... ~14 MB
WSLUpdateInstalling = Kernel güncelleme paketi kuruluyor
HEVCDownloading =Downloading "HEVC Video Extensions from Device Manufacturer"... ~2,8 MB
GraphicsPerformanceTitle = Grafik performans tercihi
GraphicsPerformanceRequest = Seçtiğiniz bir uygulamanın grafik performansı ayarını "Yüksek performans" olarak belirlemek ister misiniz?
CleanUpTaskToast = Kullanılmayan Windows dosyalarının ve güncellemelerin temizlenmesi bir dakika içinde başlar
@ -81,6 +82,7 @@ FolderSelect = Klasör seç
FilesWontBeMoved = Dosyalar taşınmayacak
NoData = Görüntülenecek bir şey yok
NoInternetConnection = İnternet bağlantısı yok
NoResponse = Could not contact https://store.rg-adguard.net
Patient = Lütfen bekleyin...
Select = Seç
Skip = Atla

4
Sophia/PowerShell 5.1/uk-UA/Sophia.psd1

@ -45,9 +45,10 @@ VideosDefaultFolder = Хочете змінити розта
ReservedStorageIsInUse = Операція не підтримується, поки використовується зарезервоване сховище\nБудь ласка, дочекайтеся закінчення всіх обслуговуючих операцій і спробуйте знову
ShortcutPinning = Ярлик "{0}" закріплюється на початковому екрані
UninstallUWPForAll = Для всіх користувачів
UninstallUWPTitle = Видалити UWP-додатки
UninstallUWPTitle = Програми UWP
WSLUpdateDownloading = Завантажується пакет оновлення ядра Linux... ~14 МБ
WSLUpdateInstalling = Встановлення пакета оновлення ядра Linux...
HEVCDownloading = Завантаження "Розширення відео HEVC від виробника пристрою"... ~2,8 МБ
GraphicsPerformanceTitle = Налаштування продуктивності графіки
GraphicsPerformanceRequest = Встановити для будь-якої програми за вашим вибором налаштування продуктивності графіки на "Висока продуктивність"?
CleanUpTaskToast = Очищення зайвих файлів і оновлень Windows почнеться через хвилину
@ -81,6 +82,7 @@ FolderSelect = Виберіть папку
FilesWontBeMoved = Файли не будуть перенесені
NoData = Відсутні дані
NoInternetConnection = Відсутнє інтернет-з'єднання
NoResponse = Не вдалося встановити звязок із https://store.rg-adguard.net
Patient = Будь ласка, зачекайте...
Select = Вибрати
Skip = Пропустити

Loading…
Cancel
Save