Browse Source

Add files via upload

pull/23/head
farag2 5 years ago
committed by GitHub
parent
commit
ed0d6c2020
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      Win 10.ps1

3
Win 10.ps1

@ -739,6 +739,9 @@ $OFS = " "
# Remove Shadow copies (restoration points) # Remove Shadow copies (restoration points)
# Удалить теневые копии (точки восстановения) # Удалить теневые копии (точки восстановения)
Get-CimInstance -ClassName Win32_ShadowCopy | Remove-CimInstance Get-CimInstance -ClassName Win32_ShadowCopy | Remove-CimInstance
# Turn off Windows Script Host
# Отключить Windows Script Host
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows Script Host\Settings" -Name Enabled -PropertyType DWord -Value 0 -Force
# 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 | Where-Object -FilterScript {$_.PSChildName -cnotmatch $ExcludedApps} | ForEach-Object -Process {

Loading…
Cancel
Save