Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-goodwin committed Oct 4, 2022
1 parent 0a37719 commit 0119feb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Google's software reporter tool routinely sucks up a huge amount of CPU. This kills the process whenever it shows up.

# Build

```sh
pyinstaller kill.py -F --noconsole -n software_reporter_killer
```

# Install

`C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup`

8 changes: 8 additions & 0 deletions kill.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from psutil import process_iter
from time import sleep

while(1):
for proc in process_iter():
if proc.name() == 'software_reporter_tool.exe':
proc.kill()
sleep(60)

0 comments on commit 0119feb

Please sign in to comment.