You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, great work, I quite like this app! It helps me a out a lot!
Describe the bug
If multiple .exe files are located in a folder and each one is deactivated/activated, a console for each .exe is started. If there are a ton of .exe files this produces quite a lot of consoles. Luckily I'm not epileptic otherwise this would have caused a seizure for sure. Granted my use case is a bit extreme as I have 30+ .exe files in the folder I want to block but nevertheless, this could pose a significant problem. Also from a technical standpoint, it's better to only issue one console if possible.
To Reproduce
Steps to reproduce the behavior:
Have a ton of .exe files in a folder
Disable internet access for folder
Expected behavior
The ideal case would be that every command is run in just one console.
Desktop (please complete the following information):
OS: Microsoft Windows 11 Education
Version 10.0.22000 Build 22000
Additional context
There are multiple ways to do it, a python module called subprocess or os (Example Blog Post) could be used, or simply the && operator, or maybe you could even create an executeable file and paste every command in there and start it like that. The choice is yours! If you have any further questions, please reach out!
The text was updated successfully, but these errors were encountered:
Fixed in commit 0a39e8a.
Thanks for liking and using PyWall 😃
If you happen to find any other bugs or have suggestions to improve my software further please let me know!
Summary of the changes
Replaced all of the old os.system functions to subprocess.call, this makes it so the console never really shows up!
Added a regkey to make the PyWall icon show up in the context menu
Removed unused dependency "pyqt5custom" since it doesn't work when run as admin
First of all, great work, I quite like this app! It helps me a out a lot!
Describe the bug
If multiple .exe files are located in a folder and each one is deactivated/activated, a console for each .exe is started. If there are a ton of .exe files this produces quite a lot of consoles. Luckily I'm not epileptic otherwise this would have caused a seizure for sure. Granted my use case is a bit extreme as I have 30+ .exe files in the folder I want to block but nevertheless, this could pose a significant problem. Also from a technical standpoint, it's better to only issue one console if possible.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The ideal case would be that every command is run in just one console.
Desktop (please complete the following information):
Additional context
There are multiple ways to do it, a python module called
subprocess
oros
(Example Blog Post) could be used, or simply the&&
operator, or maybe you could even create an executeable file and paste every command in there and start it like that. The choice is yours! If you have any further questions, please reach out!The text was updated successfully, but these errors were encountered: