Skip to content

Commit

Permalink
Merge pull request #13 from kyaulabs/release/1.2.5
Browse files Browse the repository at this point in the history
Release/1.2.5
  • Loading branch information
kyau authored Apr 23, 2023
2 parents 5ce7b84 + 2a357cd commit 77b3aea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 0 additions & 4 deletions Modules/defender.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
If (-NOT $WinDefender) {
Show-Section -Section "Anti-Virus" -Desc "Removing Defender"

Remove-Reg -Path "HKLM:\Software\Policies\Microsoft\Windows\Windows Defender" -Recursive
Remove-WService -Name "WdNisSvc"
Remove-WService -Name "WinDefend"
Remove-WService -Name "Sense"
Expand Down Expand Up @@ -76,18 +75,15 @@ If (-NOT $WinDefender) {
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "DisableScanOnRealtimeEnable" -Type Dword -Value "1"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender" -Name "DisableAntiSpyware" -Type Dword -Value "1"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender" -Name "DisableAntiVirus" -Type Dword -Value "1"
#Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" -Name "MpEnginePlus" -Type Dword -Value "0"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" -Name "MpEnablePus" -Type Dword -Value "0"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Reporting" -Name "DisableEnhancedNotifications" -Type Dword -Value "1"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" -Name "DisableBlockAtFirstSeen" -Type Dword -Value "1"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" -Name "SpyNetReporting" -Type Dword -Value "0"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" -Name "SubmitSamplesConsent" -Type Dword -Value "2"
#Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" -Name "DontReportInfectionInformation" -Type Dword -Value "1"
Add-Reg -Path "HKLM:\System\CurrentControlSet\Services\WdFilter" -Name "Start" -Type Dword -Value "4"
Add-Reg -Path "HKLM:\System\CurrentControlSet\Services\WdNisDrv" -Name "Start" -Type Dword -Value "4"
Add-Reg -Path "HKLM:\System\CurrentControlSet\Services\WdNisSvc" -Name "Start" -Type Dword -Value "4"
Add-Reg -Path "HKLM:\System\CurrentControlSet\Services\WinDefend" -Name "Start" -Type Dword -Value "4"
#Add-Reg -Path "HKLM:\Software\Microsoft\Windows Defender\Features" -Name "TamperProtection" -Type Dword -Value "0"
Remove-Reg -Path "HKLM:\SYSTEM\CurrentControlSet\Services\Sense" -Recursive
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\MRT" -Name "DontReportInfectionInformation" -Type Dword -Value "1"
Add-Reg -Path "HKLM:\SOFTWARE\Policies\Microsoft\MRT" -Name "DontOfferThroughWUAU" -Type Dword -Value "1"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Windows 11 Tweaks - Build 22621.1485
# Windows 11 Tweaks - Build 22621.1555

![LOGO](README_media/LOGO.png)

[![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)   [![Semantic Versioning](https://img.shields.io/badge/semantic%20versioning-1.2.4-333333.svg)](https://semver.org)   [![GitHub](https://img.shields.io/github/license/kyaulabs/win11tweak)](LICENSE)   [![Gitleaks](https://img.shields.io/badge/protected%20by-gitleaks-blue)](https://github.com/zricethezav/gitleaks)   [![CI](https://img.shields.io/github/actions/workflow/status/kyaulabs/win11tweak/psscriptanalyzer.yml)](https://github.com/kyaulabs/win11tweak/actions)
[![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)   [![Semantic Versioning](https://img.shields.io/badge/semantic%20versioning-1.2.5-333333.svg)](https://semver.org)   [![GitHub](https://img.shields.io/github/license/kyaulabs/win11tweak)](LICENSE)   [![Gitleaks](https://img.shields.io/badge/protected%20by-gitleaks-blue)](https://github.com/zricethezav/gitleaks)   [![CI](https://img.shields.io/github/actions/workflow/status/kyaulabs/win11tweak/psscriptanalyzer.yml)](https://github.com/kyaulabs/win11tweak/actions)

## Disclaimer

Expand Down
4 changes: 3 additions & 1 deletion user_settings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ function Add-Configuration {
$script:WinDefender = $false

# Keep Windows Security? ($true/$false)
# NOTE: Removal not recommended, breaks Windows Defender & Windows Update.
$script:SecurityHealth = $true

# Keep Microsoft 365 / OneDrive ($true/$false)
$script:Microsoft365 = $true

# Keep Microsoft Edge? ($true / $false)
# NOTE: Removal not recommended.
# NOTE: Removal not recommended, breaks search, widgets, etc.
# MSEdgeRedirect Recommended.
$script:MicrosoftEdge = $true

# Desktop / Lock Screen Wallpaper
Expand Down

0 comments on commit 77b3aea

Please sign in to comment.