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:
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:
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)Thank you.
