Skip to content

Instantly share code, notes, and snippets.

View darkmclo's full-sized avatar
💭
idle

darkmclo

💭
idle
View GitHub Profile
@Braytiner
Braytiner / Windows Defender Exclusions VS 2022.ps1
Last active July 25, 2026 21:11
Adds Windows Defender exclusions for Visual Studio 2022
$userPath = $env:USERPROFILE
$pathExclusions = New-Object System.Collections.ArrayList
$processExclusions = New-Object System.Collections.ArrayList
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null
$pathExclusions.Add('C:\Windows\assembly') > $null
$pathExclusions.Add($userPath + '\Downloads\HeidiSQL_11.3_64_Portable') > $null
$pathExclusions.Add($userPath + '\.dotnet') > $null
@bretcope
bretcope / uninstall-samsung-free.md
Last active May 17, 2025 13:39
Uninstall "Samsung Free" (formerly Samsung Daily)
  1. On a desktop/laptop, download and unzip Android Platform Tools: https://developer.android.com/studio/releases/platform-tools
  2. On phone, Enable developer mode by tapping seven times on the build number (found under Settings > About Phone > Software Information).
  3. Connect phone to computer via USB
  4. On phone, enable USB debugging (Settings > Developer Options)
  5. Open a terminal (Command Prompt on Windows) and navigate to the platform-tools directory
    • e.g. cd C:\Users\myuser\Downloads\platform-tools
  6. Copy into the terminal ./adb shell pm uninstall -k --user 0 com.samsung.android.app.spage and hit enter
  7. The terminal should output "Success"

Samsung Free should now be gone from your phone and swiping left will no longer accidentally open it.