Files
Print3M-amsi-memory-patching/one-liners.ps1
T
Print3M cfdf9de9b4 init
2024-05-05 20:08:54 +02:00

4 lines
270 B
PowerShell

###
# GET SERVICES WITH UNQUOTED PATHS
###
Get-CimInstance win32_service | where PathName -notlike "" | where { $_.PathName.StartsWith('"') -eq $false }| select @{e={$_.PathName.split(" ")[0]};n="FirstPath"},PathName | where { $_.FirstPath.EndsWith(".exe") -eq $false }