Browse Source

v4.0.24 11.03.2020

## Updated
- Turn on recycle bin files delete confirmation
 - Now configuring without using policy. To delete unnecessary key execute
  ```powershell
  Remove-Item -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer -Name ConfirmFileDelete -Force
  ```
- Turn off Delivery Optimization
 - Now using cmdlets. To delete unnecessary key execute
  ```powershell
  Remove-Item -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeliveryOptimization -Force
  ```
- Rearranged "Set power management scheme for desktop and laptop" section
- Renamed sections
  - "Turn off hibernate" to "Turn off hibernate for devices, except laptops"
  - "Turn off location for this device" to "Turn off location access for this device"
- Minor changes.



## Обновлено
- Запрашивать подтверждение на удаление файлов в корзину
 - Теперь настройка производится без использования политики. Чтобы удалить ненужный параметр, выполните
  ```powershell
  Remove-Item -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer -Name ConfirmFileDelete -Force
  ```
- Отключить оптимизацию доставки
 - Теперь используются командлеты. Чтобы удалить ненужный параметр, выполните
  ```powershell
  Remove-Item -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeliveryOptimization -Force
  ```
- Перестроен раздел "Установить схему управления питания для стационарного ПК и ноутбука"
- Переименованы разделы
  - "Отключить гибридный спящий режим" в "Отключить местоположение для этого устройства"
  - "Отключить режим гибернации для устройств, кроме ноутбуков" в "Отключить доступ к сведениям о расположении для этого устройства"
- Незначительные изменения.
pull/23/head 4.0.24
farag2 5 years ago
committed by GitHub
parent
commit
95b54badf0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 58
      Win 10.ps1

58
Win 10.ps1

@ -18,8 +18,8 @@
.EXAMPLE .EXAMPLE
PS C:\WINDOWS\system32> & '.\Win 10.ps1' PS C:\WINDOWS\system32> & '.\Win 10.ps1'
.NOTES .NOTES
Version: v4.0.23 Version: v4.0.24
Date: 06.03.2020 Date: 11.03.2020
Written by: farag Written by: farag
Thanks to all http://forum.ru-board.com members involved Thanks to all http://forum.ru-board.com members involved
Ask a question on Ask a question on
@ -306,13 +306,12 @@ if (-not (Test-Path -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explor
New-Item -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Ribbon -Force New-Item -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Ribbon -Force
} }
New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Ribbon -Name MinimizedStateTabletModeOff -PropertyType DWord -Value 0 -Force New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Ribbon -Name MinimizedStateTabletModeOff -PropertyType DWord -Value 0 -Force
# Turn on recycle bin files delete confirmation # Display recycle bin files delete confirmation
# Запрашивать подтверждение на удаление файлов в корзину # Запрашивать подтверждение на удаление файлов в корзину
if (-not (Test-Path -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer)) $ShellState = Get-ItemPropertyValue -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer -Name ShellState
{ $ShellState[4] = 51
New-Item -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer -Force New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer -Name ShellState -PropertyType Binary -Value $ShellState -Force
} Stop-Process -Name explorer -Force
New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer -Name ConfirmFileDelete -PropertyType DWord -Value 1 -Force
# Hide 3D Objects folder from "This PC" and from Quick access # Hide 3D Objects folder from "This PC" and from Quick access
# Скрыть папку "Объемные объекты" из "Этот компьютер" и из панели быстрого доступа # Скрыть папку "Объемные объекты" из "Этот компьютер" и из панели быстрого доступа
if (-not (Test-Path -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag")) if (-not (Test-Path -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag"))
@ -621,11 +620,14 @@ New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\StorageSe
# Let Windows try to fix apps so they're not blurry # Let Windows try to fix apps so they're not blurry
# Разрешить Windows исправлять размытость в приложениях # Разрешить Windows исправлять размытость в приложениях
New-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name EnablePerProcessSystemDPI -PropertyType DWord -Value 1 -Force New-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name EnablePerProcessSystemDPI -PropertyType DWord -Value 1 -Force
# Turn off hibernate # Turn off hibernate for devices, except laptops
# Отключить гибридный спящий режим # Отключить режим гибернации для устройств, кроме ноутбуков
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Power -Name HibernateEnabled -PropertyType DWord -Value 0 -Force if ((Get-CimInstance -ClassName Win32_ComputerSystem).PCSystemType -ne 2)
# Turn off location for this device {
# Отключить местоположение для этого устройства powercfg /hibernate off
}
# Turn off location access for this device
# Отключить доступ к сведениям о расположении для этого устройства
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location -Name Value -PropertyType String -Value Deny -Force New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location -Name Value -PropertyType String -Value Deny -Force
# Change $env:TEMP environment variable path to $env:SystemDrive\Temp # Change $env:TEMP environment variable path to $env:SystemDrive\Temp
# Изменить путь переменной среды для временных файлов на $env:SystemDrive\Temp # Изменить путь переменной среды для временных файлов на $env:SystemDrive\Temp
@ -673,11 +675,8 @@ New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\
# Turn off Delivery Optimization # Turn off Delivery Optimization
# Отключить оптимизацию доставки # Отключить оптимизацию доставки
Get-Service -Name DoSvc | Stop-Service -Force Get-Service -Name DoSvc | Stop-Service -Force
if (-not (Test-Path -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeliveryOptimization)) Set-DODownloadMode -DownloadMode 0
{ Delete-DeliveryOptimizationCache -Force
New-Item -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeliveryOptimization -Force
}
New-ItemProperty -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeliveryOptimization -Name DODownloadMode -PropertyType DWord -Value 0 -Force
# Always wait for the network at computer startup and logon # Always wait for the network at computer startup and logon
# Всегда ждать сеть при запуске и входе в систему # Всегда ждать сеть при запуске и входе в систему
if (-not (Test-Path -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\Winlogon")) if (-not (Test-Path -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\Winlogon"))
@ -738,7 +737,7 @@ $OFS = " "
Get-CimInstance -ClassName Win32_ShadowCopy | Remove-CimInstance Get-CimInstance -ClassName Win32_ShadowCopy | Remove-CimInstance
# Turn off background apps, except the followings... # Turn off background apps, except the followings...
# Запретить приложениям работать в фоновом режиме, кроме следующих... # Запретить приложениям работать в фоновом режиме, кроме следующих...
Get-ChildItem -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications | Where-Object -FilterScript {$_.PSChildName -cnotmatch $ExcludedApps} | ForEach-Object -Process { Get-ChildItem -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications | ForEach-Object -Process {
Remove-ItemProperty -Path $_.PsPath -Name * -Force Remove-ItemProperty -Path $_.PsPath -Name * -Force
} }
$ExcludedApps = @( $ExcludedApps = @(
@ -767,20 +766,20 @@ $OFS = " "
# Open "Background apps" page # Open "Background apps" page
# Открыть раздел "Фоновые приложения" # Открыть раздел "Фоновые приложения"
Start-Process -FilePath ms-settings:privacy-backgroundapps Start-Process -FilePath ms-settings:privacy-backgroundapps
# Set power management scheme for desktop and laptop # Set power management scheme
# Установить схему управления питания для стационарного ПК и ноутбука # Установить схему управления питания
if ((Get-CimInstance -ClassName Win32_ComputerSystem).PCSystemType -eq 1)
{
# High performance for desktop
# Высокая производительность для стационарного ПК
powercfg /setactive SCHEME_MIN
}
if ((Get-CimInstance -ClassName Win32_ComputerSystem).PCSystemType -eq 2) if ((Get-CimInstance -ClassName Win32_ComputerSystem).PCSystemType -eq 2)
{ {
# Balanced for laptop # Balanced for laptop
# Сбалансированная для ноутбука # Сбалансированная для ноутбука
powercfg /setactive SCHEME_BALANCED powercfg /setactive SCHEME_BALANCED
} }
else
{
# High performance for desktop
# Высокая производительность для стационарного ПК
powercfg /setactive SCHEME_MIN
}
# Turn on latest installed .NET runtime for all apps # Turn on latest installed .NET runtime for all apps
# Использовать последнюю установленную версию .NET для всех приложений # Использовать последнюю установленную версию .NET для всех приложений
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\.NETFramework -Name OnlyUseLatestCLR -PropertyType DWord -Value 1 -Force New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\.NETFramework -Name OnlyUseLatestCLR -PropertyType DWord -Value 1 -Force
@ -1349,10 +1348,7 @@ if ((Get-CimInstance -ClassName Win32_ComputerSystem).PCSystemType -ne 2 -and (G
New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name SeparateProcess -PropertyType DWord -Value 1 -Force New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name SeparateProcess -PropertyType DWord -Value 1 -Force
# Turn off and delete reserved storage after the next update installation # Turn off and delete reserved storage after the next update installation
# Отключить и удалить зарезервированное хранилище после следующей установки обновлений # Отключить и удалить зарезервированное хранилище после следующей установки обновлений
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager -Name BaseHardReserveSize -PropertyType QWord -Value 0 -Force New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager -Name PassedPolicy -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager -Name BaseSoftReserveSize -PropertyType QWord -Value 0 -Force
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager -Name HardReserveAdjustment -PropertyType QWord -Value 0 -Force
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager -Name MinDiskSize -PropertyType QWord -Value 0 -Force
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager -Name ShippedWithReserves -PropertyType DWord -Value 0 -Force New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager -Name ShippedWithReserves -PropertyType DWord -Value 0 -Force
# Turn on automatic backup the system registry to the $env:SystemRoot\System32\config\RegBack folder # Turn on automatic backup the system registry to the $env:SystemRoot\System32\config\RegBack folder
# Включить автоматическое создание копии реестра в папку $env:SystemRoot\System32\config\RegBack # Включить автоматическое создание копии реестра в папку $env:SystemRoot\System32\config\RegBack

Loading…
Cancel
Save