diff --git a/190x/1903-1909.cmd b/4.x (outdated)/190x/1903-1909.cmd similarity index 100% rename from 190x/1903-1909.cmd rename to 4.x (outdated)/190x/1903-1909.cmd diff --git a/190x/1903-1909.ps1 b/4.x (outdated)/190x/1903-1909.ps1 similarity index 97% rename from 190x/1903-1909.ps1 rename to 4.x (outdated)/190x/1903-1909.ps1 index 4174a3a5..01a79659 100644 --- a/190x/1903-1909.ps1 +++ b/4.x (outdated)/190x/1903-1909.ps1 @@ -3518,4 +3518,4 @@ if ($Error) } } } | Sort-Object -Property Line | Format-Table -AutoSize -Wrap | Out-String).Trim() -} \ No newline at end of file +} diff --git a/200x/2004.cmd b/4.x (outdated)/200x/2004.cmd similarity index 100% rename from 200x/2004.cmd rename to 4.x (outdated)/200x/2004.cmd diff --git a/200x/2004.ps1 b/4.x (outdated)/200x/2004.ps1 similarity index 97% rename from 200x/2004.ps1 rename to 4.x (outdated)/200x/2004.ps1 index dcb852d6..d34423c3 100644 --- a/200x/2004.ps1 +++ b/4.x (outdated)/200x/2004.ps1 @@ -3588,4 +3588,4 @@ if ($Error) } } } | Sort-Object -Property Line | Format-Table -AutoSize -Wrap | Out-String).Trim() -} \ No newline at end of file +} diff --git a/README.md b/README.md index ba419b6f..cb3aa281 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,10 @@ **"Windows 10 Sophia Script" is a module for Windows 10 fine-tuning and automating the routine tasks** πŸ† +![Minimum Supported PowerShell Version](https://img.shields.io/badge/PowerShell-5.1-brightgreen.svg) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/b1ce4ce852f148a88c47ea33ad172044)](https://www.codacy.com/manual/farag2/Windows-10-Sophia-Script) ![GitHub All Releases](https://img.shields.io/github/downloads/farag2/Windows-10-Setup-Script/total) + [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/Q5Q51QUJC) @@ -16,7 +18,7 @@ * Due to the fact that the script includes more than **270** functions, you must read the entire **preset file** carefully and **comment out/uncomment** those functions that you do/do not want to be executed. Every tweak in a preset file has its' corresponding function to **restore the default settings**. * Running the script is best done on a fresh install because running it on **wrong** tweaked system may result in errors occurring. -* Some third-party antiviruses flag this script or its' part as malicious one. This is a false positive due to [$EncodedScript](https://github.com/farag2/Windows-10-Sophia-Script/blob/0f9bbee7e1d43f487eb0855e0d1e44ff569fc4a9/200x/2004.ps1#L2837) variable. You can read more about in "CreateCleanUpTask" function. You might need to disable tamper protection from your antivirus settings, re-enable it after running the script, and reboot. +* Some third-party antiviruses flag this script or its' part as malicious one. This is a **false positive/** due to [$EncodedScript](https://github.com/farag2/Windows-10-Sophia-Script/blob/0f9bbee7e1d43f487eb0855e0d1e44ff569fc4a9/200x/2004.ps1#L2837) variable. You can read more about in "CreateCleanUpTask" function. You might need to disable tamper protection from your antivirus settings, re-enable it after running the script, and reboot. ## Screenshots diff --git a/Sophia/Sophia.ps1 b/Sophia/Sophia.ps1 index 133044e7..80eb18aa 100644 --- a/Sophia/Sophia.ps1 +++ b/Sophia/Sophia.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Default preset file for "Windows 10 Sophia Script" - Version: v5.1 - Date: 05.10.2020 + Version: v5.1.1 + Date: 09.10.2020 Copyright (c) 2020 farag & oZ-Zo Thanks to all http://forum.ru-board.com members involved @@ -15,7 +15,7 @@ and comment out/uncomment those functions that you do/do not want to be executed Every tweak in a preset file has its' corresponding function to restore the default settings - Running the script is best done on a fresh install because running it on tweaked system may result in errors occurring + Running the script is best done on a fresh install because running it on wrong tweaked system may result in errors occurring PowerShell must be run with elevated privileges Set execution policy to be able to run scripts only in the current PowerShell session: @@ -34,8 +34,13 @@ https://github.com/farag2/Windows-10-Sophia-Script #> +#Requires -RunAsAdministrator +#Requires -Version 5.1 + +Clear-Host + Remove-Module -Name Sophia -Force -ErrorAction Ignore -Import-Module -Name .\Sophia.psm1 -Force +Import-Module -Name .\Sophia.psd1 -PassThru -Force Import-LocalizedData -BindingVariable Global:Localization @@ -492,11 +497,11 @@ SetTempPath # Enable Windows 260 character path limit # Π’ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠ΅ Windows Π½Π° 260 символов Π² ΠΏΡƒΡ‚ΠΈ -# EnableWin32LongPaths +EnableWin32LongPaths # Disable Windows 260 character path limit # ΠžΡ‚ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠ΅ Windows Π½Π° 260 символов Π² ΠΏΡƒΡ‚ΠΈ -DisableWin32LongPaths +# DisableWin32LongPaths # Display the Stop error information on the BSoD # ΠžΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒ Stop-ΠΎΡˆΠΈΠ±ΠΊΡƒ ΠΏΡ€ΠΈ появлСнии BSoD diff --git a/Sophia/Sophia.psd1 b/Sophia/Sophia.psd1 new file mode 100644 index 00000000..0812e547 Binary files /dev/null and b/Sophia/Sophia.psd1 differ diff --git a/Sophia/Sophia.psm1 b/Sophia/Sophia.psm1 index 6906d4ce..b3347c97 100644 --- a/Sophia/Sophia.psm1 +++ b/Sophia/Sophia.psm1 @@ -2,8 +2,8 @@ .SYNOPSIS "Windows 10 Sophia Script" is a set of functions for Windows 10 fine-tuning and automating the routine tasks - Version: v5.1 - Date: 08.10.2020 + Version: v5.1.1 + Date: 09.10.2020 Copyright (c) 2020 farag & oZ-Zo Thanks to all http://forum.ru-board.com members involved @@ -37,11 +37,6 @@ #region Check function Check { - #Requires -RunAsAdministrator - #Requires -Version 5.1 - - Clear-Host - Set-StrictMode -Version Latest # Π‘lear the $Error variable @@ -57,7 +52,6 @@ function Check Write-Warning -Message $Localization.UnsupportedOSBitness break } - Default {} } # Turn off Controlled folder access to let the script proceed @@ -73,7 +67,6 @@ function Check # ΠžΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ Ρ€Π°Π·Π΄Π΅Π» "Π—Π°Ρ‰ΠΈΡ‚Π° ΠΎΡ‚ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌ-ΡˆΠ°Ρ‚Π°ΠΆΠΈΡΡ‚ΠΎΠ²" Start-Process -FilePath windowsdefender://RansomwareProtection } - Default {} } } #endregion Check @@ -146,6 +139,7 @@ function DisableWindowsErrorReporting { if ((Get-WindowsEdition -Online).Edition -notmatch "Core*") { + Get-ScheduledTask -TaskName QueueReporting | Disable-ScheduledTask New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\Windows Error Reporting" -Name Disabled -PropertyType DWord -Value 1 -Force } } @@ -154,6 +148,7 @@ function DisableWindowsErrorReporting # Π’ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΎΡ‚Ρ‡Π΅Ρ‚Ρ‹ ΠΎΠ± ΠΎΡˆΠΈΠ±ΠΊΠ°Ρ… Windows для Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π³ΠΎ ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Ρ function EnableWindowsErrorReporting { + Get-ScheduledTask -TaskName QueueReporting | Enable-ScheduledTask Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\Windows Error Reporting" -Name Disabled -Force -ErrorAction SilentlyContinue } @@ -228,10 +223,6 @@ function DisableScheduledTasks # Π‘ΠΈΠ½Ρ…Ρ€ΠΎΠ½ΠΈΠ·ΠΈΡ€ΡƒΠ΅Ρ‚ послСдниС ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Ρ‹ со слуТбой Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΉ сСмьи ΡƒΡ‡Π΅Ρ‚Π½Ρ‹Ρ… записСй ΠœΠ°ΠΉΠΊΡ€ΠΎΡΠΎΡ„Ρ‚ "FamilySafetyRefreshTask", - # Windows Error Reporting task to process queued reports - # Π—Π°Π΄Π°Ρ‡Π° ΠΎΡ‚Ρ‡Π΅Ρ‚ΠΎΠ² ΠΎΠ± ΠΎΡˆΠΈΠ±ΠΊΠ°Ρ… ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ ΠΎΡ‡Π΅Ρ€Π΅Π΄ΡŒ ΠΎΡ‚Ρ‡Π΅Ρ‚ΠΎΠ² - "QueueReporting", - # XblGameSave Standby Task "XblGameSaveTask" ) @@ -300,10 +291,6 @@ function EnableScheduledTasks # Π‘ΠΈΠ½Ρ…Ρ€ΠΎΠ½ΠΈΠ·ΠΈΡ€ΡƒΠ΅Ρ‚ послСдниС ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Ρ‹ со слуТбой Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΉ сСмьи ΡƒΡ‡Π΅Ρ‚Π½Ρ‹Ρ… записСй ΠœΠ°ΠΉΠΊΡ€ΠΎΡΠΎΡ„Ρ‚ "FamilySafetyRefreshTask", - # Windows Error Reporting task to process queued reports - # Π—Π°Π΄Π°Ρ‡Π° ΠΎΡ‚Ρ‡Π΅Ρ‚ΠΎΠ² ΠΎΠ± ΠΎΡˆΠΈΠ±ΠΊΠ°Ρ… ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ ΠΎΡ‡Π΅Ρ€Π΅Π΄ΡŒ ΠΎΡ‚Ρ‡Π΅Ρ‚ΠΎΠ² - "QueueReporting", - # XblGameSave Standby Task "XblGameSaveTask" ) @@ -1485,8 +1472,8 @@ function SetDefaultTempPath # ΠŸΠ΅Ρ€Π΅Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ слуТбу "ДиспСтчСр ΠΏΠ΅Ρ‡Π°Ρ‚ΠΈ" (Spooler) Restart-Service -Name Spooler -Force - Stop-Process -Name OneDrive -Force -ErrorAction SilentlyContinue - Stop-Process -Name FileCoAuth -Force -ErrorAction SilentlyContinue + Stop-Process -Name OneDrive -Force -ErrorAction Ignore + Stop-Process -Name FileCoAuth -Force -ErrorAction Ignore Remove-Item -Path $env:SystemDrive\Temp -Recurse -Force -ErrorAction Ignore } @@ -4129,30 +4116,15 @@ $app = "{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\cleanmgr.exe" $Template = [Windows.UI.Notifications.ToastTemplateType]::ToastImageAndText01 [xml]$ToastTemplate = ([Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent($Template).GetXml()) -if ($PSUICulture -eq "ru-RU") -{ - [xml]$ToastTemplate = @" +[xml]$ToastTemplate = @" - ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° Π½Π΅ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ² ΠΈ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΠΉ Windows начнСтся Ρ‡Π΅Ρ€Π΅Π· ΠΌΠΈΠ½ΡƒΡ‚Ρƒ + $($Localization.CleanUpTaskToast) "@ -} -else -{ - [xml]$ToastTemplate = @" - - - - Cleaning up unused Windows files and updates starts in a minute - - - -"@ -} $ToastXml = New-Object -TypeName Windows.Data.Xml.Dom.XmlDocument $ToastXml.LoadXml($ToastTemplate.OuterXml) @@ -4388,8 +4360,8 @@ function RemoveProtectedFolders if ($null -ne (Get-MpPreference).ControlledFolderAccessProtectedFolders) { Write-Verbose -Message $Localization.RemoveProtectedFoldersList -Verbose - Remove-MpPreference -ControlledFolderAccessProtectedFolders (Get-MpPreference).ControlledFolderAccessProtectedFolders -Force (Get-MpPreference).ControlledFolderAccessProtectedFolders | Format-Table -AutoSize -Wrap + Remove-MpPreference -ControlledFolderAccessProtectedFolders (Get-MpPreference).ControlledFolderAccessProtectedFolders -Force } } @@ -4498,8 +4470,8 @@ function RemoveDefenderExclusionFolders { if ($null -ne (Get-MpPreference).ExclusionPath) { - Write-Verbose -Message "Removed excluded folders:" -Verbose - $ExcludedFolders = (Get-Item -Path (Get-MpPreference).ExclusionPath -Force | Where-Object -FilterScript {$_.Attributes -match "Directory"}).FullName + Write-Verbose -Message $Localization.RemoveDefenderExclusionFoldersList -Verbose + $ExcludedFolders = (Get-Item -Path (Get-MpPreference).ExclusionPath -Force -ErrorAction Ignore | Where-Object -FilterScript {$_.Attributes -match "Directory"}).FullName $ExcludedFolders | Format-Table -AutoSize -Wrap Remove-MpPreference -ExclusionPath $ExcludedFolders -Force } @@ -4555,8 +4527,8 @@ function RemoveDefenderExclusionFiles { if ($null -ne (Get-MpPreference).ExclusionPath) { - Write-Verbose -Message "Removed excluded files:" -Verbose - $ExcludedFiles = (Get-Item -Path (Get-MpPreference).ExclusionPath -Force | Where-Object -FilterScript {$_.Attributes -notmatch "Directory"}).FullName + Write-Verbose -Message $Localization.RemoveDefenderExclusionFilesList -Verbose + $ExcludedFiles = (Get-Item -Path (Get-MpPreference).ExclusionPath -Force -ErrorAction Ignore | Where-Object -FilterScript {$_.Attributes -notmatch "Directory"}).FullName $ExcludedFiles | Format-Table -AutoSize -Wrap Remove-MpPreference -ExclusionPath $ExcludedFiles -Force } diff --git a/Sophia/de-DE/Sophia.psd1 b/Sophia/de-DE/Sophia.psd1 new file mode 100644 index 00000000..6ab814c9 --- /dev/null +++ b/Sophia/de-DE/Sophia.psd1 @@ -0,0 +1,178 @@ +ο»Ώ# Entfernen Sie keine doppelten AnfΓΌhrungszeichen, wenn diese vorhanden sind + +ConvertFrom-StringData -StringData @' +UnsupportedOSBitness = Das Skript unterstΓΌtzt nur Windows 10 x64 +ControlledFolderAccessDisabled = Kontrollierter Ordnerzugriff deaktiviert + +# OneDrive +OneDriveUninstalling = Deinstalliere OneDrive... +OneDriveNotEmptyFolder = "Der Ordner $OneDriveUserFolder ist nicht leer.LΓΆschen Sie ihn manuell. " +OneDriveFileSyncShell64dllBlocked = "$FileSyncShell64dll ist blockiert. LΓΆschen Sie es manuell" +OneDriveInstalling = OneDriveSetup.exe wird gestartet... +OneDriveDownloading = OneDrive herunterladen... ~33 MB +NoInternetConnection = Keine Internetverbindung + +# SetTempPath +LOCALAPPDATANotEmptyFolder = "Der Ordner $env:LOCALAPPDATA\\Temp ist nicht leer. LΓΆschen Sie ihn manuell und versuchen Sie es erneut" + +# WSL +WSLUpdateDownloading = Herunterladen des Linux-Kernel-Update-Pakets... ~14 MB +WSLUpdateInstalling = Installieren des Linux-Kernel-Update-Pakets... + +# DisableWindowsCapabilities +FODWindowTitle = Optionale Funktionen (FODv2) zum Entfernen +FODWindowButton = Deinstallieren +DialogBoxOpening = Dialogfeld anzeigen... +NoData = Nichts zum Anzeigen + +# EnableWindowsSandbox/DisableWindowsSandbox +EnableHardwareVT = Virtualisierung in UEFI aktivieren + +# ChangeUserShellFolderLocation +UserShellFolderNotEmpty = "Der Ordner $UserShellFolderRegValue ist nicht leer. Verschieben Sie sie manuell an einen neuen Speicherort" +RetrievingDrivesList = Laufwerksliste abrufen... +# Desktop +DesktopChangeFolderRequest = MΓΆchten Sie den Speicherort des Desktop Ordners Γ€ndern? +DesktopFilesWontBeMoved = Dateien werden nicht verschoben +DesktopFolderChange = Γ„ndern +DesktopFolderSkip = Überspringen +DesktopDriveSelect = WΓ€hlen Sie das Laufwerk aus, in dessen Stammverzeichnis der Desktop Ordner erstellt werden soll +DesktopSkipped = Übersprungen +# Documents +DocumentsChangeFolderRequest = MΓΆchten Sie den Speicherort des Ordners Dokumente Γ€ndern? +DocumentsFilesWontBeMoved = Dateien werden nicht verschoben +DocumentsFolderChange = Γ„ndern +DocumentsFolderSkip = Überspringen +DocumentsDriveSelect = WΓ€hlen Sie das Laufwerk aus, in dessen Stammverzeichnis der Ordner Dokumente erstellt werden soll +DocumentsSkipped = Übersprungen +# Downloads +DownloadsChangeFolderRequest = MΓΆchten Sie den Speicherort des Download Ordners Γ€ndern? +DownloadsFilesWontBeMoved = Dateien werden nicht verschoben +DownloadsFolderChange = Γ„ndern +DownloadsFolderSkip = Überspringen +DownloadsDriveSelect = WΓ€hlen Sie das Laufwerk aus, in dessen Stammverzeichnis der Ordner Downloads erstellt werden soll +DownloadsSkipped = Übersprungen +# Music +MusicChangeFolderRequest = MΓΆchten Sie den Speicherort des Musikordners Γ€ndern? +MusicFilesWontBeMoved = Dateien werden nicht verschoben +MusicFolderChange = Γ„ndern +MusicFolderSkip = Überspringen +MusicDriveSelect = WΓ€hlen Sie das Laufwerk aus, in dessen Stammverzeichnis der Musikordner erstellt werden soll +MusicSkipped = Übersprungen +# Pictures +PicturesChangeFolderRequest = MΓΆchten Sie den Speicherort des Ordner Bilder Γ€ndern? +PicturesFilesWontBeMoved = Dateien werden nicht verschoben +PicturesFolderChange = Γ„ndern +PicturesFolderSkip = Überspringen +PicturesDriveSelect = WΓ€hlen Sie das Laufwerk aus, in dessen Stammverzeichnis der Ordner Bilder erstellt werden soll +PicturesSkipped = Übersprungen +# Videos +VideosChangeFolderRequest = MΓΆchten Sie den Speicherort des Video Ordners Γ€ndern? +VideosFilesWontBeMoved = Dateien werden nicht verschoben +VideosFolderChange = Γ„ndern +VideosFolderSkip = Überspringen +VideosDriveSelect = WΓ€hlen Sie das Laufwerk aus, in dessen Stammverzeichnis der Ordner Videos erstellt werden soll +VideosSkipped = Übersprungen + +# SetDefaultUserShellFolderLocation +# Desktop +DesktopDefaultFolder = MΓΆchten Sie den Speicherort des Desktop Ordners auf den Standardwert Γ€ndern? +# Documents +DocumentsDefaultFolder = MΓΆchten Sie den Speicherort des Ordners Dokumente auf den Standardwert Γ€ndern? +# Downloads +DownloadsDefaultFolder = MΓΆchten Sie den Speicherort des Download Ordners auf den Standardwert Γ€ndern? +# Music +MusicDefaultFolder = MΓΆchten Sie den Speicherort des Musikordners auf den Standardwert Γ€ndern? +# Pictures +PicturesDefaultFolder = MΓΆchten Sie den Speicherort des Ordners Bilder auf den Standardwert Γ€ndern? +# Videos +VideosDefaultFolder = MΓΆchten Sie den Speicherort des Video Ordners auf den Standardwert Γ€ndern? + +# DisableReservedStorage +ReservedStorageIsInUse = Dieser Vorgang wird nicht unterstΓΌtzt, wenn reservierter Speicher verwendet wird. Bitte warten Sie, bis alle WartungsvorgΓ€nge abgeschlossen sind, und versuchen Sie es spΓ€ter erneut + +# PinControlPanel/PinDevicesPrinters/PinCommandPrompt +syspinDownloading = Syspin herunterladen... ~20 KB +ControlPanelPinning = "Die VerknΓΌpfung $ControlPanelLocalizedName wird an Start angeheftet" +DevicesPrintersPinning = "Die VerknΓΌpfung $DevicesAndPrintersLocalizedName wird an Start angeheftet" +CMDPinning = Die VerknΓΌpfung zur Eingabeaufforderung wird an Start angeheftet + +# UninstallUWPApps +UninstallUWPForAll = Deinstallieren fΓΌr alle Benutzer +UninstallUWPTitle = Zu deinstallierende UWP-Pakete +UninstallUWPUninstallButton = Deinstallieren + +# SetAppGraphicsPerformance +GraphicsPerformanceTitle = Grafik-LeistungsprΓ€ferenz +GraphicsPerformanceRequest = MΓΆchten Sie die Grafikleistungseinstellung einer App Ihrer Wahl auf "Hohe Leistung" setzen?"? +GraphicsPerformanceAdd = HinzufΓΌgen +GraphicsPerformanceSkip = Überspringen +GraphicsPerformanceFilter = *.exe|*.exe|Alle Dateien (*.*)|*.* +GraphicsPerformanceSkipped = Übersprungen + +# CreateCleanUpTask +CleanUpTaskToast = Die Bereinigung nicht verwendeter Windows-Dateien und -Updates beginnt in einer Minute +CleanUpTaskDescription = Bereinigen nicht verwendeter Windows-Dateien und -Updates mithilfe der integrierten App zur DatentrΓ€gerbereinigung. Verwenden Sie zum Dekodieren des codierten Befehls [System.Text.Encoding] :: UTF8.GetString ([System.Convert] :: FromBase64String ("string")). + +# CreateSoftwareDistributionTask +SoftwareDistributionTaskDescription = Der %SystemRoot%\\SoftwareDistribution\\Download + +# CreateTempTask +TempTaskDescription = Bereinigen des %TEMP% Ordners + +# AddProtectedFolders +AddProtectedFoldersTitle = Kontrollierter Ordnerzugriff +AddProtectedFoldersRequest = MΓΆchten Sie den kontrollierten Ordnerzugriff aktivieren und den Ordner angeben, den Microsoft Defender vor schΓ€dlichen Apps und Bedrohungen schΓΌtzt?? +AddProtectedFoldersAdd = HinzufΓΌgen +AddProtectedFoldersSkip = Überspringen +AddProtectedFoldersDescription = WΓ€hlen Sie einen Ordner +AddProtectedFoldersSkipped = Übersprungen + +# RemoveProtectedFolders +RemoveProtectedFoldersList = Ordner entfernt + +# AddAppControlledFolder +AddAppControlledFolderTitle = Kontrollierter Ordnerzugriff +AddAppControlledFolderRequest = MΓΆchten Sie eine App angeben, die ΓΌber den Zugriff auf kontrollierte Ordner zulΓ€ssig ist? +AddAppControlledFolderAdd = HinzufΓΌgen +AddAppControlledFolderSkip = Überspringen +AddAppControlledFolderFilter = *.exe|*.exe|Alle Dateien (*.*)|*.* +AddAppControlledFolderSkipped = Übersprungen + +# RemoveAllowedAppsControlledFolder +RemoveAllowedAppsControlledFolderList = ZulΓ€ssige Apps entfernt + +# AddDefenderExclusionFolder +AddDefenderExclusionFolderTitle = Microsoft Defender +AddDefenderExclusionFolderRequest = MΓΆchten Sie einen Ordner angeben, der von Microsoft Defender-Malware-Scans ausgeschlossen werden soll? +AddDefenderExclusionFolderAdd = HinzufΓΌgen +AddDefenderExclusionFolderSkip = Überspringen +AddDefenderExclusionFolderDescription = WΓ€hlen Sie einen Ordner +AddDefenderExclusionFolderSkipped = Übersprungen + +# RemoveDefenderExclusionFolders +RemoveDefenderExclusionFoldersList = Ausgeschlossene Ordner entfernt + +# AddDefenderExclusionFile +AddDefenderExclusionFileTitle = Microsoft Defender +AddDefenderExclusionFileRequest = MΓΆchten Sie eine Datei angeben, die von Microsoft Defender-Malware-Scans ausgeschlossen werden soll? +AddDefenderExclusionFileAdd = HinzufΓΌgen +AddDefenderExclusionFileSkip = Überspringen +AddDefenderExclusionFileFilter = Alle Dateien (*.*)|*.* +AddDefenderExclusionFileSkipped = Übersprungen + +# RemoveDefenderExclusionFiles +RemoveDefenderExclusionFilesList = Ausgeschlossene Dateien entfernt + +# CreateEventViewerCustomView +EventViewerCustomViewName = Prozesserstellung +EventViewerCustomViewDescription = Neue Prozessereignisse und BefehlszeilenΓΌberwachung + +# Refresh +RestartWarning = Starten Sie Ihren PC neu + +# Errors +ErrorsLine = Zeile +ErrorsFile = Datei +ErrorsMessage = Fehler/Warnungen +'@ diff --git a/Sophia/en-US/Sophia.psd1 b/Sophia/en-US/Sophia.psd1 index ac466536..2c73cc27 100644 --- a/Sophia/en-US/Sophia.psd1 +++ b/Sophia/en-US/Sophia.psd1 @@ -1,172 +1,178 @@ -ο»ΏConvertFrom-StringData -StringData @' - # Do not remove double quotes in double-quoted strings where they are present - - # Check - UnsupportedOSBitness = The script supports Windows 10 x64 only - ControlledFolderAccessDisabled = Controlled folder access disabled - - # OneDrive - OneDriveUninstalling = Uninstalling OneDrive... - OneDriveNotEmptyFolder = "The $OneDriveUserFolder folder is not empty `nDelete it manually" - OneDriveFileSyncShell64dllBlocked = "$FileSyncShell64dll is blocked `nDelete it manually" - OneDriveInstalling = OneDriveSetup.exe is starting... - OneDriveDownloading = Downloading OneDrive... ~33 MB - NoInternetConnection = No Internet connection - - # SetTempPath - LOCALAPPDATANotEmptyFolder = "The $env:LOCALAPPDATA\\Temp folder is not empty `nDeleteClear it manually and try again" - - # WSL - WSLUpdateDownloading = Downloading the Linux kernel update package... ~14 MB - WSLUpdateInstalling = Installing the Linux kernel update package... - - # DisableWindowsCapabilities - FODWindowTitle = Optional features (FODv2) to remove - FODWindowButton = Uninstall - DialogBoxOpening = Displaying the dialog box... - NoData = Nothing to display - - # EnableWindowsSandbox/DisableWindowsSandbox - EnableHardwareVT = Enable Virtualization in UEFI - - # ChangeUserShellFolderLocation function - UserShellFolderNotEmpty = "Some files left in the $UserShellFolderRegValue folder `nMove them manually to a new location" - RetrievingDrivesList = Retrieving drives list... - # Desktop - DesktopChangeFolderRequest = Would you like to change the location of the Desktop folder? - DesktopFilesWontBeMoved = Files will not be moved - DesktopFolderChange = Change - DesktopFolderSkip = Skip - DesktopDriveSelect = Select the drive within the root of which the Desktop folder will be created - DesktopSkipped = Skipped - # Documents - DocumentsChangeFolderRequest = Would you like to change the location of the Documents folder? - DocumentsFilesWontBeMoved = Files will not be moved - DocumentsFolderChange = Change - DocumentsFolderSkip = Skip - DocumentsDriveSelect = Select the drive within the root of which the Documents folder will be created - DocumentsSkipped = Skipped - # Downloads - DownloadsChangeFolderRequest = Would you like to change the location of the Downloads folder? - DownloadsFilesWontBeMoved = Files will not be moved - DownloadsFolderChange = Change - DownloadsFolderSkip = Skip - DownloadsDriveSelect = Select the drive within the root of which the Downloads folder will be created - DownloadsSkipped = Skipped - # Music - MusicChangeFolderRequest = Would you like to change the location of the Music folder? - MusicFilesWontBeMoved = Files will not be moved - MusicFolderChange = Change - MusicFolderSkip = Skip - MusicDriveSelect = Select the drive within the root of which the Music folder will be created - MusicSkipped = Skipped - # Pictures - PicturesChangeFolderRequest = Would you like to change the location of the Pictures folder? - PicturesFilesWontBeMoved = Files will not be moved - PicturesFolderChange = Change - PicturesFolderSkip = Skip - PicturesDriveSelect = Select the drive within the root of which the Pictures folder will be created - PicturesSkipped = Skipped - # Videos - VideosChangeFolderRequest = Would you like to change the location of the Videos folder? - VideosFilesWontBeMoved = Files will not be moved - VideosFolderChange = Change - VideosFolderSkip = Skip - VideosDriveSelect = Select the drive within the root of which the Videos folder will be created - VideosSkipped = Skipped - - # SetDefaultUserShellFolderLocation - # Desktop - DesktopDefaultFolder = Would you like to change the location of the Desktop folder to the default value? - # Documents - DocumentsDefaultFolder = Would you like to change the location of the Documents folder to the default value? - # Downloads - DownloadsDefaultFolder = Would you like to change the location of the Downloads folder to the default value? - # Music - MusicDefaultFolder = Would you like to change the location of the Music folder to the default value? - # Pictures - PicturesDefaultFolder = Would you like to change the location of the Pictures folder to the default value? - # Videos - VideosDefaultFolder = Would you like to change the location of the Videos folder to the default value? - - # DisableReservedStorage - 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 - - # PinControlPanel/PinDevicesPrinters/PinCommandPrompt - syspinDownloading = Downloading syspin... ~20 KB - ControlPanelPinning = "$ControlPanelLocalizedName shortcut is being pinned to Start" - DevicesPrintersPinning = "$DevicesAndPrintersLocalizedName shortcut is being pinned to Start" - CMDPinning = Command Prompt shortcut is being pinned to Start - - # UninstallUWPApps - UninstallUWPForAll = Uninstall for All Users - UninstallUWPTitle = UWP Packages to Uninstall - UninstallUWPUninstallButton = Uninstall - - # SetAppGraphicsPerformance - GraphicsPerformanceTitle = Graphics performance preference - GraphicsPerformanceRequest = Would you like to set the graphics performance setting of an app of your choice to "High performance"? - GraphicsPerformanceAdd = Add - GraphicsPerformanceSkip = Skip - GraphicsPerformanceFilter = *.exe|*.exe|All Files (*.*)|*.* - GraphicsPerformanceSkipped = Skipped - - # CreateCleanUpTask - CleanUpTaskDescription = Cleaning up unused Windows files and updates using built-in Disk cleanup app. To decode encoded command use [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String("string")) - - # CreateSoftwareDistributionTask - SoftwareDistributionTaskDescription = The %SystemRoot%\\SoftwareDistribution\\Download - - # CreateTempTask - TempTaskDescription = The %TEMP% folder cleaning - - # AddProtectedFolders - AddProtectedFoldersTitle = Controlled folder access - AddProtectedFoldersRequest = Would you like to enable Controlled folder access and specify the folder that Microsoft Defender will protect from malicious apps and threats? - AddProtectedFoldersAdd = Add - AddProtectedFoldersSkip = Skip - AddProtectedFoldersDescription = Select a folder - AddProtectedFoldersSkipped = Skipped - - # RemoveProtectedFolders - RemoveProtectedFoldersList = Removed folders - - # AddAppControlledFolder - AddAppControlledFolderTitle = Controlled folder access - AddAppControlledFolderRequest = Would you like to specify an app that is allowed through Controlled Folder access? - AddAppControlledFolderAdd = Add - AddAppControlledFolderSkip = Skip - AddAppControlledFolderFilter = *.exe|*.exe|All Files (*.*)|*.* - AddAppControlledFolderSkipped = Skipped - - # RemoveAllowedAppsControlledFolder - RemoveAllowedAppsControlledFolderList = Removed allowed apps - - # AddDefenderExclusionFolder - AddDefenderExclusionFolderTitle = Microsoft Defender - AddDefenderExclusionFolderRequest = Would you like to specify a folder to be excluded from Microsoft Defender malware scans? - AddDefenderExclusionFolderAdd = Add - AddDefenderExclusionFolderSkip = Skip - AddDefenderExclusionFolderDescription = Select a folder - AddDefenderExclusionFolderSkipped = Skipped - - # AddDefenderExclusionFile - AddDefenderExclusionFileTitle = Microsoft Defender - AddDefenderExclusionFileRequest = Would you like to specify a file to be excluded from Microsoft Defender malware scans? - AddDefenderExclusionFileAdd = Add - AddDefenderExclusionFileSkip = Skip - AddDefenderExclusionFileFilter = All Files (*.*)|*.* - AddDefenderExclusionFileSkipped = Skipped - - # CreateEventViewerCustomView - EventViewerCustomViewName = Process Creation - EventViewerCustomViewDescription = Бобытия содания Π½ΠΎΠ²ΠΎΠ³ΠΎ процСсса ΠΈ Π°ΡƒΠ΄ΠΈΡ‚ ΠΊΠΎΠΌΠ°Π½Π΄Π½ΠΎΠΉ строки - - # Refresh - RestartWarning = Restart your PC - - # Errors - ErrorsLine = Line - ErrorsFile = File - ErrorsMessage = Errors/Warnings +ο»Ώ# Do not remove double quotes in double-quoted strings where they are present + +ConvertFrom-StringData -StringData @' +UnsupportedOSBitness = The script supports Windows 10 x64 only +ControlledFolderAccessDisabled = Controlled folder access disabled + +# OneDrive +OneDriveUninstalling = Uninstalling OneDrive... +OneDriveNotEmptyFolder = "The $OneDriveUserFolder folder is not empty `nDelete it manually" +OneDriveFileSyncShell64dllBlocked = "$FileSyncShell64dll is blocked `nDelete it manually" +OneDriveInstalling = OneDriveSetup.exe is starting... +OneDriveDownloading = Downloading OneDrive... ~33 MB +NoInternetConnection = No Internet connection + +# SetTempPath +LOCALAPPDATANotEmptyFolder = "The $env:LOCALAPPDATA\\Temp folder is not empty `nDeleteClear it manually and try again" + +# WSL +WSLUpdateDownloading = Downloading the Linux kernel update package... ~14 MB +WSLUpdateInstalling = Installing the Linux kernel update package... + +# DisableWindowsCapabilities +FODWindowTitle = Optional features (FODv2) to remove +FODWindowButton = Uninstall +DialogBoxOpening = Displaying the dialog box... +NoData = Nothing to display + +# EnableWindowsSandbox/DisableWindowsSandbox +EnableHardwareVT = Enable Virtualization in UEFI + +# ChangeUserShellFolderLocation +UserShellFolderNotEmpty = "Some files left in the $UserShellFolderRegValue folder `nMove them manually to a new location" +RetrievingDrivesList = Retrieving drives list... +# Desktop +DesktopChangeFolderRequest = Would you like to change the location of the Desktop folder? +DesktopFilesWontBeMoved = Files will not be moved +DesktopFolderChange = Change +DesktopFolderSkip = Skip +DesktopDriveSelect = Select the drive within the root of which the Desktop folder will be created +DesktopSkipped = Skipped +# Documents +DocumentsChangeFolderRequest = Would you like to change the location of the Documents folder? +DocumentsFilesWontBeMoved = Files will not be moved +DocumentsFolderChange = Change +DocumentsFolderSkip = Skip +DocumentsDriveSelect = Select the drive within the root of which the Documents folder will be created +DocumentsSkipped = Skipped +# Downloads +DownloadsChangeFolderRequest = Would you like to change the location of the Downloads folder? +DownloadsFilesWontBeMoved = Files will not be moved +DownloadsFolderChange = Change +DownloadsFolderSkip = Skip +DownloadsDriveSelect = Select the drive within the root of which the Downloads folder will be created +DownloadsSkipped = Skipped +# Music +MusicChangeFolderRequest = Would you like to change the location of the Music folder? +MusicFilesWontBeMoved = Files will not be moved +MusicFolderChange = Change +MusicFolderSkip = Skip +MusicDriveSelect = Select the drive within the root of which the Music folder will be created +MusicSkipped = Skipped +# Pictures +PicturesChangeFolderRequest = Would you like to change the location of the Pictures folder? +PicturesFilesWontBeMoved = Files will not be moved +PicturesFolderChange = Change +PicturesFolderSkip = Skip +PicturesDriveSelect = Select the drive within the root of which the Pictures folder will be created +PicturesSkipped = Skipped +# Videos +VideosChangeFolderRequest = Would you like to change the location of the Videos folder? +VideosFilesWontBeMoved = Files will not be moved +VideosFolderChange = Change +VideosFolderSkip = Skip +VideosDriveSelect = Select the drive within the root of which the Videos folder will be created +VideosSkipped = Skipped + +# SetDefaultUserShellFolderLocation +# Desktop +DesktopDefaultFolder = Would you like to change the location of the Desktop folder to the default value? +# Documents +DocumentsDefaultFolder = Would you like to change the location of the Documents folder to the default value? +# Downloads +DownloadsDefaultFolder = Would you like to change the location of the Downloads folder to the default value? +# Music +MusicDefaultFolder = Would you like to change the location of the Music folder to the default value? +# Pictures +PicturesDefaultFolder = Would you like to change the location of the Pictures folder to the default value? +# Videos +VideosDefaultFolder = Would you like to change the location of the Videos folder to the default value? + +# DisableReservedStorage +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 + +# PinControlPanel/PinDevicesPrinters/PinCommandPrompt +syspinDownloading = Downloading syspin... ~20 KB +ControlPanelPinning = "$ControlPanelLocalizedName shortcut is being pinned to Start" +DevicesPrintersPinning = "$DevicesAndPrintersLocalizedName shortcut is being pinned to Start" +CMDPinning = Command Prompt shortcut is being pinned to Start + +# UninstallUWPApps +UninstallUWPForAll = Uninstall for All Users +UninstallUWPTitle = UWP Packages to Uninstall +UninstallUWPUninstallButton = Uninstall + +# SetAppGraphicsPerformance +GraphicsPerformanceTitle = Graphics performance preference +GraphicsPerformanceRequest = Would you like to set the graphics performance setting of an app of your choice to "High performance"? +GraphicsPerformanceAdd = Add +GraphicsPerformanceSkip = Skip +GraphicsPerformanceFilter = *.exe|*.exe|All Files (*.*)|*.* +GraphicsPerformanceSkipped = Skipped + +# CreateCleanUpTask +CleanUpTaskToast = Cleaning up unused Windows files and updates starts in a minute +CleanUpTaskDescription = Cleaning up unused Windows files and updates using built-in Disk cleanup app. To decode encoded command use [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String("string")) + +# CreateSoftwareDistributionTask +SoftwareDistributionTaskDescription = The %SystemRoot%\\SoftwareDistribution\\Download + +# CreateTempTask +TempTaskDescription = The %TEMP% folder cleaning + +# AddProtectedFolders +AddProtectedFoldersTitle = Controlled folder access +AddProtectedFoldersRequest = Would you like to enable Controlled folder access and specify the folder that Microsoft Defender will protect from malicious apps and threats? +AddProtectedFoldersAdd = Add +AddProtectedFoldersSkip = Skip +AddProtectedFoldersDescription = Select a folder +AddProtectedFoldersSkipped = Skipped + +# RemoveProtectedFolders +RemoveProtectedFoldersList = Removed folders + +# AddAppControlledFolder +AddAppControlledFolderTitle = Controlled folder access +AddAppControlledFolderRequest = Would you like to specify an app that is allowed through Controlled Folder access? +AddAppControlledFolderAdd = Add +AddAppControlledFolderSkip = Skip +AddAppControlledFolderFilter = *.exe|*.exe|All Files (*.*)|*.* +AddAppControlledFolderSkipped = Skipped + +# RemoveAllowedAppsControlledFolder +RemoveAllowedAppsControlledFolderList = Removed allowed apps + +# AddDefenderExclusionFolder +AddDefenderExclusionFolderTitle = Microsoft Defender +AddDefenderExclusionFolderRequest = Would you like to specify a folder to be excluded from Microsoft Defender malware scans? +AddDefenderExclusionFolderAdd = Add +AddDefenderExclusionFolderSkip = Skip +AddDefenderExclusionFolderDescription = Select a folder +AddDefenderExclusionFolderSkipped = Skipped + +# RemoveDefenderExclusionFolders +RemoveDefenderExclusionFoldersList = Excluded folders removed + +# AddDefenderExclusionFile +AddDefenderExclusionFileTitle = Microsoft Defender +AddDefenderExclusionFileRequest = Would you like to specify a file to be excluded from Microsoft Defender malware scans? +AddDefenderExclusionFileAdd = Add +AddDefenderExclusionFileSkip = Skip +AddDefenderExclusionFileFilter = All Files (*.*)|*.* +AddDefenderExclusionFileSkipped = Skipped + +# RemoveDefenderExclusionFiles +RemoveDefenderExclusionFilesList = Excluded files removed + +# CreateEventViewerCustomView +EventViewerCustomViewName = Process Creation +EventViewerCustomViewDescription = Process Creation and Command-line Auditing Events + +# Refresh +RestartWarning = Restart your PC + +# Errors +ErrorsLine = Line +ErrorsFile = File +ErrorsMessage = Errors/Warnings '@ diff --git a/Sophia/ru-RU/Sophia.psd1 b/Sophia/ru-RU/Sophia.psd1 index 4f20b357..b9cf0f2a 100644 --- a/Sophia/ru-RU/Sophia.psd1 +++ b/Sophia/ru-RU/Sophia.psd1 @@ -1,172 +1,178 @@ -ο»ΏConvertFrom-StringData -StringData @' - # НС удаляйтС Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ ΠΊΠ°Π²Ρ‹Ρ‡ΠΊΠΈ Π² строках с Π΄Π²ΠΎΠΉΠ½Ρ‹ΠΌΠΈ ΠΊΠ°Π²Ρ‹Ρ‡ΠΊΠ°ΠΌΠΈ, Ссли ΠΎΠ½ΠΈ ΠΏΡ€ΠΈΡΡƒΡ‚ΡΠ²ΡƒΡŽΡ‚ - - # Check - UnsupportedOSBitness = Π‘ΠΊΡ€ΠΈΠΏΡ‚ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Windows 10 x64 - ControlledFolderAccessDisabled = ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ Π²Ρ‹ΠΊΠ»ΡŽΡ‡Π΅Π½ - - # OneDrive - OneDriveUninstalling = Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ OneDrive... - OneDriveNotEmptyFolder = "Папка $OneDriveUserFolder Π½Π΅ пуста `nΠ£Π΄Π°Π»ΠΈΡ‚Π΅ Π΅Π΅ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ" - OneDriveFileSyncShell64dllBlocked = "$FileSyncShell64dll Π·Π°Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π½ `nΠ£Π΄Π°Π»ΠΈΡ‚Π΅ Π΅Π³ΠΎ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ" - OneDriveInstalling = Π–Π΄Π΅ΠΌ Π²Ρ‹Π³Ρ€ΡƒΠ·ΠΊΡƒ Ρ„Π°ΠΉΠ»Π° FileSyncShell64.dll - OneDriveDownloading = БкачиваСтся OneDrive... ~33 ΠœΠ‘ - NoInternetConnection = ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΠ΅Ρ‚ ΠΈΠ½Ρ‚Π΅Ρ€Π½Π΅Ρ‚-соСдинСниС - - # SetTempPath - LOCALAPPDATANotEmptyFolder = "Папка $env:LOCALAPPDATA\\Temp Π½Π΅ пуста `nΠžΡ‡ΠΈΡΡ‚ΠΈΡ‚Π΅ Π΅Π΅ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ ΠΈ ΠΏΠΎΠ²Ρ‚ΠΎΡ€ΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ‹Ρ‚ΠΊΡƒ" - - # WSL - WSLUpdateDownloading = БкачиваСтся ΠΏΠ°ΠΊΠ΅Ρ‚ обновлСния ядра Linux... ~14 ΠœΠ‘ - WSLUpdateInstalling = Установка ΠΏΠ°ΠΊΠ΅Ρ‚Π° обновлСния ядра Linux... - - # DisableWindowsCapabilities - FODWindowTitle = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ - FODWindowButton = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ - DialogBoxOpening = Π”ΠΈΠ°Π»ΠΎΠ³ΠΎΠ²ΠΎΠ΅ ΠΎΠΊΠ½ΠΎ открываСтся... - NoData = ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ Π΄Π°Π½Π½Ρ‹Π΅ - - # EnableWindowsSandbox/DisableWindowsSandbox - EnableHardwareVT = Π’ΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅ Π²ΠΈΡ€Ρ‚ΡƒΠ°Π»ΠΈΠ·Π°Ρ†ΠΈΡŽ Π² UEFI - - # ChangeUserShellFolderLocation - UserShellFolderNotEmpty = "Π’ ΠΏΠ°ΠΏΠΊΠ΅ $UserShellFolderRegValue ΠΎΡΡ‚Π°Π»Π°ΡΡŒ Ρ„Π°ΠΉΠ»Ρ‹ `nΠŸΠ΅Ρ€Π΅ΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅ ΠΈΡ… Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ Π² Π½ΠΎΠ²ΠΎΠ΅ располоТСниС" - RetrievingDrivesList = ΠŸΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ списка дисков... - # Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол - DesktopChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол"? - DesktopFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны - DesktopFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ - DesktopFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - DesktopDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол" - DesktopSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - # Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹ - DocumentsChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹"? - DocumentsFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны - DocumentsFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ - DocumentsFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - DocumentsDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹" - DocumentsSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - # Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ - DownloadsChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ"? - DownloadsFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны - DownloadsFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ - DownloadsFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - DownloadsDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ" - DownloadsSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - # ΠœΡƒΠ·Ρ‹ΠΊΠ° - MusicChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "ΠœΡƒΠ·Ρ‹ΠΊΠ°"? - MusicFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны - MusicFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ - MusicFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - MusicDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "ΠœΡƒΠ·Ρ‹ΠΊΠ°" - MusicSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - # Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ - PicturesChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ"? - PicturesFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны - PicturesFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ - PicturesFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - PicturesDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ" - PicturesSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - # Π’ΠΈΠ΄Π΅ΠΎ - VideosChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π’ΠΈΠ΄Π΅ΠΎ"? - VideosFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны - VideosFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ - VideosFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - VideosDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π’ΠΈΠ΄Π΅ΠΎ" - VideosSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - - # SetDefaultUserShellFolderLocation - # Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол - DesktopDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? - # Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹ - DocumentsDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? - # Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ - DownloadsDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? - # ΠœΡƒΠ·Ρ‹ΠΊΠ° - MusicDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "ΠœΡƒΠ·Ρ‹ΠΊΠ°" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? - # Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ - PicturesDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? - # Π’ΠΈΠ΄Π΅ΠΎ - VideosDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π’ΠΈΠ΄Π΅ΠΎ" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? - - # DisableReservedStorage - 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 - - # PinControlPanel/PinDevicesPrinters/PinCommandPrompt - syspinDownloading = БкачиваСтся syspin... ~20 ΠšΠ‘ - ControlPanelPinning = "Π―Ρ€Π»Ρ‹ΠΊ `"$ControlPanelLocalizedName`" закрСпляСтся Π½Π° Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌ экранС" - DevicesPrintersPinning = "Π―Ρ€Π»Ρ‹ΠΊ `"$DevicesAndPrintersLocalizedName`" закрСпляСтся Π½Π° Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌ экранС" - CMDPinning = Π―Ρ€Π»Ρ‹ΠΊ "Командная строка" закрСпляСтся Π½Π° Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌ экранС - - # UninstallUWPApps - UninstallUWPForAll = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ для всСх ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Π΅ΠΉ - UninstallUWPTitle = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ UWP-прилоТСния - UninstallUWPUninstallButton = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ - - # SetAppGraphicsPerformance - GraphicsPerformanceTitle = Настройка ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Π³Ρ€Π°Ρ„ΠΈΠΊΠΈ - GraphicsPerformanceRequest = Π£ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ для любого прилоТСния ΠΏΠΎ Π²Π°ΡˆΠ΅ΠΌΡƒ Π²Ρ‹Π±ΠΎΡ€Ρƒ настройки ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Π³Ρ€Π°Ρ„ΠΈΠΊΠΈ Π½Π° "Высокая ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ"? - GraphicsPerformanceAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ - GraphicsPerformanceSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - GraphicsPerformanceFilter = *.exe|*.exe|ВсС Ρ„Π°ΠΉΠ»Ρ‹ (*.*)|*.* - GraphicsPerformanceSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - - # CreateCleanUpTask - CleanUpTaskDescription = ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° Π½Π΅ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ² ΠΈ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΠΉ Windows, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Π²ΡΡ‚Ρ€ΠΎΠ΅Π½Π½ΡƒΡŽ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡƒ ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° диска. Π§Ρ‚ΠΎΠ±Ρ‹ Ρ€Π°ΡΡˆΠΈΡ„Ρ€ΠΎΠ²Π°Ρ‚ΡŒ Π·Π°ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²Π°Π½Π½ΡƒΡŽ строку ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String("строка")) - - # CreateSoftwareDistributionTask - SoftwareDistributionTaskDescription = ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° ΠΏΠ°ΠΏΠΊΠΈ %SystemRoot%\\SoftwareDistribution\\Download - - # CreateTempTask - TempTaskDescription = ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° ΠΏΠ°ΠΏΠΊΠΈ %TEMP% - - # AddProtectedFolders - AddProtectedFoldersTitle = ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ - AddProtectedFoldersRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌΡƒ ΠΈ ΡƒΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΏΠ°ΠΏΠΊΡƒ, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π—Π°Ρ‰ΠΈΡ‚Π½ΠΈΠΊ Microsoft Π±ΡƒΠ΄Π΅Ρ‚ Π·Π°Ρ‰ΠΈΡ‰Π°Ρ‚ΡŒ ΠΎΡ‚ врСдоносных ΠΏΡ€ΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠΉ ΠΈ ΡƒΠ³Ρ€ΠΎΠ·? - AddProtectedFoldersAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ - AddProtectedFoldersSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - AddProtectedFoldersDescription = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΏΠ°ΠΏΠΊΡƒ - AddProtectedFoldersSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - - # RemoveProtectedFolders - RemoveProtectedFoldersList = Π£Π΄Π°Π»Π΅Π½Π½Ρ‹Π΅ ΠΏΠ°ΠΏΠΊΠΈ - - # AddAppControlledFolder - AddAppControlledFolderTitle = ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ - AddAppControlledFolderRequest = Π£ΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΏΡ€ΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌΡƒ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½Π° Ρ€Π°Π±ΠΎΡ‚Π° Ρ‡Π΅Ρ€Π΅Π· ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ - AddAppControlledFolderAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ - AddAppControlledFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - AddAppControlledFolderFilter = *.exe|*.exe|ВсС Ρ„Π°ΠΉΠ»Ρ‹ (*.*)|*.* - AddAppControlledFolderSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - - # RemoveAllowedAppsControlledFolder - RemoveAllowedAppsControlledFolderList = Π£Π΄Π°Π»Π΅Π½Π½Ρ‹Π΅ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½Π½Ρ‹Π΅ прилоТСния - - # AddDefenderExclusionFolder - AddDefenderExclusionFolderTitle = Microsoft Defender - AddDefenderExclusionFolderRequest = Π£ΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΏΠ°ΠΏΠΊΡƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π΅Π΅ ΠΈΠ· списка сканирования Microsoft Defender? - AddDefenderExclusionFolderAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ - AddDefenderExclusionFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - AddDefenderExclusionFolderDescription = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΏΠ°ΠΏΠΊΡƒ - AddDefenderExclusionFolderSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - - # AddDefenderExclusionFile - AddDefenderExclusionFileTitle = Microsoft Defender - AddDefenderExclusionFileRequest = Π£ΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ», Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΠΈΠ· списка сканирования Microsoft Defender? - AddDefenderExclusionFileAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ - AddDefenderExclusionFileSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ - AddDefenderExclusionFileFilter = ВсС Ρ„Π°ΠΉΠ»Ρ‹ (*.*)|*.* - AddDefenderExclusionFileSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ - - # CreateEventViewerCustomView - EventViewerCustomViewName = Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ процСсса - EventViewerCustomViewDescription = Бобытия содания Π½ΠΎΠ²ΠΎΠ³ΠΎ процСсса ΠΈ Π°ΡƒΠ΄ΠΈΡ‚ ΠΊΠΎΠΌΠ°Π½Π΄Π½ΠΎΠΉ строки - - # Refresh - RestartWarning = ΠŸΠ΅Ρ€Π΅Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚Π΅ ваш ПК - - # Errors - ErrorsLine = Π‘Ρ‚Ρ€ΠΎΠΊΠ° - ErrorsFile = Π€Π°ΠΉΠ» - ErrorsMessage = Ошибки/прСдупрСТдСния +ο»Ώ# НС удаляйтС Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ ΠΊΠ°Π²Ρ‹Ρ‡ΠΊΠΈ Π² строках с Π΄Π²ΠΎΠΉΠ½Ρ‹ΠΌΠΈ ΠΊΠ°Π²Ρ‹Ρ‡ΠΊΠ°ΠΌΠΈ, Ссли ΠΎΠ½ΠΈ ΠΏΡ€ΠΈΡΡƒΡ‚ΡΠ²ΡƒΡŽΡ‚ + +ConvertFrom-StringData -StringData @' +UnsupportedOSBitness = Π‘ΠΊΡ€ΠΈΠΏΡ‚ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Windows 10 x64 +ControlledFolderAccessDisabled = ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ Π²Ρ‹ΠΊΠ»ΡŽΡ‡Π΅Π½ + +# OneDrive +OneDriveUninstalling = Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ OneDrive... +OneDriveNotEmptyFolder = "Папка $OneDriveUserFolder Π½Π΅ пуста. Π£Π΄Π°Π»ΠΈΡ‚Π΅ Π΅Π΅ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ" +OneDriveFileSyncShell64dllBlocked = "$FileSyncShell64dll Π·Π°Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π½. Π£Π΄Π°Π»ΠΈΡ‚Π΅ Π΅Π³ΠΎ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ" +OneDriveInstalling = Π–Π΄Π΅ΠΌ Π²Ρ‹Π³Ρ€ΡƒΠ·ΠΊΡƒ Ρ„Π°ΠΉΠ»Π° FileSyncShell64.dll +OneDriveDownloading = БкачиваСтся OneDrive... ~33 ΠœΠ‘ +NoInternetConnection = ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΠ΅Ρ‚ ΠΈΠ½Ρ‚Π΅Ρ€Π½Π΅Ρ‚-соСдинСниС + +# SetTempPath +LOCALAPPDATANotEmptyFolder = "Папка $env:LOCALAPPDATA\\Temp Π½Π΅ пуста. ΠžΡ‡ΠΈΡΡ‚ΠΈΡ‚Π΅ Π΅Π΅ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ ΠΈ ΠΏΠΎΠ²Ρ‚ΠΎΡ€ΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ‹Ρ‚ΠΊΡƒ" + +# WSL +WSLUpdateDownloading = БкачиваСтся ΠΏΠ°ΠΊΠ΅Ρ‚ обновлСния ядра Linux... ~14 ΠœΠ‘ +WSLUpdateInstalling = Установка ΠΏΠ°ΠΊΠ΅Ρ‚Π° обновлСния ядра Linux... + +# DisableWindowsCapabilities +FODWindowTitle = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ +FODWindowButton = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ +DialogBoxOpening = Π”ΠΈΠ°Π»ΠΎΠ³ΠΎΠ²ΠΎΠ΅ ΠΎΠΊΠ½ΠΎ открываСтся... +NoData = ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ Π΄Π°Π½Π½Ρ‹Π΅ + +# EnableWindowsSandbox/DisableWindowsSandbox +EnableHardwareVT = Π’ΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅ Π²ΠΈΡ€Ρ‚ΡƒΠ°Π»ΠΈΠ·Π°Ρ†ΠΈΡŽ Π² UEFI + +# ChangeUserShellFolderLocation +UserShellFolderNotEmpty = "Π’ ΠΏΠ°ΠΏΠΊΠ΅ $UserShellFolderRegValue ΠΎΡΡ‚Π°Π»Π°ΡΡŒ Ρ„Π°ΠΉΠ»Ρ‹. ΠŸΠ΅Ρ€Π΅ΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅ ΠΈΡ… Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ Π² Π½ΠΎΠ²ΠΎΠ΅ располоТСниС" +RetrievingDrivesList = ΠŸΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ списка дисков... +# Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол +DesktopChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол"? +DesktopFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны +DesktopFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ +DesktopFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +DesktopDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол" +DesktopSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ +# Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹ +DocumentsChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹"? +DocumentsFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны +DocumentsFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ +DocumentsFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +DocumentsDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹" +DocumentsSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ +# Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ +DownloadsChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ"? +DownloadsFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны +DownloadsFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ +DownloadsFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +DownloadsDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ" +DownloadsSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ +# ΠœΡƒΠ·Ρ‹ΠΊΠ° +MusicChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "ΠœΡƒΠ·Ρ‹ΠΊΠ°"? +MusicFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны +MusicFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ +MusicFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +MusicDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "ΠœΡƒΠ·Ρ‹ΠΊΠ°" +MusicSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ +# Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ +PicturesChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ"? +PicturesFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны +PicturesFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ +PicturesFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +PicturesDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ" +PicturesSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ +# Π’ΠΈΠ΄Π΅ΠΎ +VideosChangeFolderRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π’ΠΈΠ΄Π΅ΠΎ"? +VideosFilesWontBeMoved = Π€Π°ΠΉΠ»Ρ‹ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ пСрСнСсСны +VideosFolderChange = Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ +VideosFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +VideosDriveSelect = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ диск, Π² ΠΊΠΎΡ€Π½Π΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ создана ΠΏΠ°ΠΏΠΊΠ° для "Π’ΠΈΠ΄Π΅ΠΎ" +VideosSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ + +# SetDefaultUserShellFolderLocation +# Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол +DesktopDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π Π°Π±ΠΎΡ‡ΠΈΠΉ стол" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? +# Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹ +DocumentsDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Ρ‹" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? +# Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ +DownloadsDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? +# ΠœΡƒΠ·Ρ‹ΠΊΠ° +MusicDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "ΠœΡƒΠ·Ρ‹ΠΊΠ°" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? +# Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ +PicturesDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π˜Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? +# Π’ΠΈΠ΄Π΅ΠΎ +VideosDefaultFolder = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ мСстополоТСниС ΠΏΠ°ΠΏΠΊΠΈ "Π’ΠΈΠ΄Π΅ΠΎ" Π½Π° Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ? + +# DisableReservedStorage +ReservedStorageIsInUse = This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later + +# PinControlPanel/PinDevicesPrinters/PinCommandPrompt +syspinDownloading = БкачиваСтся syspin... ~20 ΠšΠ‘ +ControlPanelPinning = "Π―Ρ€Π»Ρ‹ΠΊ `"$ControlPanelLocalizedName`" закрСпляСтся Π½Π° Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌ экранС" +DevicesPrintersPinning = "Π―Ρ€Π»Ρ‹ΠΊ `"$DevicesAndPrintersLocalizedName`" закрСпляСтся Π½Π° Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌ экранС" +CMDPinning = Π―Ρ€Π»Ρ‹ΠΊ "Командная строка" закрСпляСтся Π½Π° Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌ экранС + +# UninstallUWPApps +UninstallUWPForAll = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ для всСх ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Π΅ΠΉ +UninstallUWPTitle = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ UWP-прилоТСния +UninstallUWPUninstallButton = Π£Π΄Π°Π»ΠΈΡ‚ΡŒ + +# SetAppGraphicsPerformance +GraphicsPerformanceTitle = Настройка ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Π³Ρ€Π°Ρ„ΠΈΠΊΠΈ +GraphicsPerformanceRequest = Π£ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ для любого прилоТСния ΠΏΠΎ Π²Π°ΡˆΠ΅ΠΌΡƒ Π²Ρ‹Π±ΠΎΡ€Ρƒ настройки ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Π³Ρ€Π°Ρ„ΠΈΠΊΠΈ Π½Π° "Высокая ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ"? +GraphicsPerformanceAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ +GraphicsPerformanceSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +GraphicsPerformanceFilter = *.exe|*.exe|ВсС Ρ„Π°ΠΉΠ»Ρ‹ (*.*)|*.* +GraphicsPerformanceSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ + +# CreateCleanUpTask +CleanUpTaskToast = ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° Π½Π΅ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ² ΠΈ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΠΉ Windows начнСтся Ρ‡Π΅Ρ€Π΅Π· ΠΌΠΈΠ½ΡƒΡ‚Ρƒ +CleanUpTaskDescription = ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° Π½Π΅ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ² ΠΈ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΠΉ Windows, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Π²ΡΡ‚Ρ€ΠΎΠ΅Π½Π½ΡƒΡŽ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡƒ ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° диска. Π§Ρ‚ΠΎΠ±Ρ‹ Ρ€Π°ΡΡˆΠΈΡ„Ρ€ΠΎΠ²Π°Ρ‚ΡŒ Π·Π°ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²Π°Π½Π½ΡƒΡŽ строку ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String("строка")) + +# CreateSoftwareDistributionTask +SoftwareDistributionTaskDescription = ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° ΠΏΠ°ΠΏΠΊΠΈ %SystemRoot%\\SoftwareDistribution\\Download + +# CreateTempTask +TempTaskDescription = ΠžΡ‡ΠΈΡΡ‚ΠΊΠ° ΠΏΠ°ΠΏΠΊΠΈ %TEMP% + +# AddProtectedFolders +AddProtectedFoldersTitle = ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ +AddProtectedFoldersRequest = Π₯ΠΎΡ‚ΠΈΡ‚Π΅ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌΡƒ ΠΈ ΡƒΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΏΠ°ΠΏΠΊΡƒ, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π—Π°Ρ‰ΠΈΡ‚Π½ΠΈΠΊ Microsoft Π±ΡƒΠ΄Π΅Ρ‚ Π·Π°Ρ‰ΠΈΡ‰Π°Ρ‚ΡŒ ΠΎΡ‚ врСдоносных ΠΏΡ€ΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠΉ ΠΈ ΡƒΠ³Ρ€ΠΎΠ·? +AddProtectedFoldersAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ +AddProtectedFoldersSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +AddProtectedFoldersDescription = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΏΠ°ΠΏΠΊΡƒ +AddProtectedFoldersSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ + +# RemoveProtectedFolders +RemoveProtectedFoldersList = Π£Π΄Π°Π»Π΅Π½Π½Ρ‹Π΅ ΠΏΠ°ΠΏΠΊΠΈ + +# AddAppControlledFolder +AddAppControlledFolderTitle = ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ +AddAppControlledFolderRequest = Π£ΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΏΡ€ΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌΡƒ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½Π° Ρ€Π°Π±ΠΎΡ‚Π° Ρ‡Π΅Ρ€Π΅Π· ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹ΠΉ доступ ΠΊ ΠΏΠ°ΠΏΠΊΠ°ΠΌ +AddAppControlledFolderAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ +AddAppControlledFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +AddAppControlledFolderFilter = *.exe|*.exe|ВсС Ρ„Π°ΠΉΠ»Ρ‹ (*.*)|*.* +AddAppControlledFolderSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ + +# RemoveAllowedAppsControlledFolder +RemoveAllowedAppsControlledFolderList = Π£Π΄Π°Π»Π΅Π½Π½Ρ‹Π΅ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½Π½Ρ‹Π΅ прилоТСния + +# AddDefenderExclusionFolder +AddDefenderExclusionFolderTitle = Microsoft Defender +AddDefenderExclusionFolderRequest = Π£ΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΏΠ°ΠΏΠΊΡƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π΅Π΅ ΠΈΠ· списка сканирования Microsoft Defender? +AddDefenderExclusionFolderAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ +AddDefenderExclusionFolderSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +AddDefenderExclusionFolderDescription = Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΏΠ°ΠΏΠΊΡƒ +AddDefenderExclusionFolderSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ + +# RemoveDefenderExclusionFolders +RemoveDefenderExclusionFoldersList = Excluded folders removed + +# AddDefenderExclusionFile +AddDefenderExclusionFileTitle = Microsoft Defender +AddDefenderExclusionFileRequest = Π£ΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ», Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΠΈΠ· списка сканирования Microsoft Defender? +AddDefenderExclusionFileAdd = Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ +AddDefenderExclusionFileSkip = ΠŸΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ +AddDefenderExclusionFileFilter = ВсС Ρ„Π°ΠΉΠ»Ρ‹ (*.*)|*.* +AddDefenderExclusionFileSkipped = ΠŸΡ€ΠΎΠΏΡƒΡ‰Π΅Π½ΠΎ + +# RemoveDefenderExclusionFiles +RemoveDefenderExclusionFilesList = Excluded files removed + +# CreateEventViewerCustomView +EventViewerCustomViewName = Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ процСсса +EventViewerCustomViewDescription = Бобытия содания Π½ΠΎΠ²ΠΎΠ³ΠΎ процСсса ΠΈ Π°ΡƒΠ΄ΠΈΡ‚ ΠΊΠΎΠΌΠ°Π½Π΄Π½ΠΎΠΉ строки + +# Refresh +RestartWarning = ΠŸΠ΅Ρ€Π΅Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚Π΅ ваш ПК + +# Errors +ErrorsLine = Π‘Ρ‚Ρ€ΠΎΠΊΠ° +ErrorsFile = Π€Π°ΠΉΠ» +ErrorsMessage = Ошибки/прСдупрСТдСния '@