- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
12-19-2024 02:56 AM
bonjour,
je souhaiterais afficher un message sur l'écran des postes isolés, cependant le module python " tkinter" ne fait pas partie des modules disponibles pour les scripts exécutés par le XDR Cortex.
auriez-vous une solution ?
Merci.
12-24-2024 01:33 PM
In case of Windows OS, you can use windows built-in msg command like: msg * "Your text". And you can incorporate it in python script like:
#!/usr/bin/python3
import subprocess
# Define the message text
message = "Your text"
# Run the msg command
try:
subprocess.run(["msg", "*", message], check=True, shell=True)
print("Message sent successfully.")
except subprocess.CalledProcessError as e:
print(f"Failed to send message: {e}")
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!