Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Created February 3, 2026 18:56
Show Gist options
  • Select an option

  • Save ziadoz/88955ba996cb24a367515f6a31e3f451 to your computer and use it in GitHub Desktop.

Select an option

Save ziadoz/88955ba996cb24a367515f6a31e3f451 to your computer and use it in GitHub Desktop.
Notepad++ Virus Check
# Check for suspicious directories
Test-Path "$env:APPDATA\Bluetooth"
Test-Path "C:\ProgramData\USOShared"
# Check for suspicious services
Get-Service | Where-Object {$_.Name -like "*Bluetooth*"}
# Check registry run keys
Get-ItemProperty "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run"
Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Run"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment