mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
14 lines
319 B
PowerShell
14 lines
319 B
PowerShell
Get-EventSubscriber | Unregister-Event
|
|
|
|
|
|
$ProcessAsusWmiEvent = {
|
|
$event_id = $Event.SourceEventArgs.NewEvent.EventID
|
|
Write-Host $event_id
|
|
}
|
|
|
|
Register-CimIndicationEvent -Namespace root\wmi -query "Select * From AsusAtkWmiEvent" ` -sourceIdentifier "GHAsus" ` -action $ProcessAsusWmiEvent
|
|
|
|
while (1) {
|
|
|
|
}
|