farag2
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
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 { |
|
|