nerd space
Contents:
  1. Windows Configs
    1. App Execution Aliases
    2. Disable Windows Bing Search Suggestions on Start Menu and on Task Bar Search
    3. Group Policies to Disable
      1. Microst Defender
      2. Automatic Updates
      3. Windows Error Reporting
      4. Resources
12 April 2024

Windows Configs

The following configs make my Windows Usage experience and usage better.

App Execution Aliases

Manage App Execution Aliases

Once you have installed Python and added its Path to the System Environment Variables. You can disable the Python App Installer App execution aliases to avoid spawning the Microsoft Store each time you write python or python3 in the command prompt/Git Bash.

P.S; Another way to execute python py

Disable Windows search suggestions via regedit. Source

# Disables task bar search suggestion via Command Prompt (Windows 10)
REG ADD HKCU\Software\Policies\Microsoft\Windows\Explorer /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f >nul 2>&1

# Disables bing search suggestions via PowerShell (Windows 11)
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" -Name "BingSearchEnabled" -Value 0 -Type DWord

Group Policies to Disable

Mostly for VulnResearch and ExpDev 😉😅

Microst Defender

Computer Configuration -> Administrative Templates -> Windows Components -> Microsoft Defender Antivirus

Then Enable (Turn off Microsoft Defender Antivirus)

Microsoft Defender Real-time Protection

Source

Computer Configuration -> Administrative Templates -> Windows Components -> Microsoft Defender Antivirus -> Real-time Protection Then Enable (Turn off real-time protection)

Automatic Updates

Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update

Then Disable (Configure Automatic Updates)

Windows Error Reporting

Computer Configuration -> Administrative Templates -> Windows Components -> Windows Error Reporting

Then Enable (Disable Windows Error Reporting)

Resources

Fix Windows Search Bat File