Apr-15-2024, 07:45 PM
Greetings!
Running my script every hour on a windows machine.
The script has a “arp-a” cmd call and a window pops up that is very annoying
.
How I can suppress the pop up window?
code:
Thank you.
Running my script every hour on a windows machine.
The script has a “arp-a” cmd call and a window pops up that is very annoying

How I can suppress the pop up window?
code:
1 2 3 4 5 6 7 |
with open (fl, 'w' ) as e : cmd = "arp -a" returned_output = subprocess.check_output(cmd) ln = returned_output.decode( "utf-8" ) ln = ln.strip() print (ln) e.write(ln) |