On this website you will find dozens of scripts for Cyber Security and IT management platforms that enables you to have wide variety of abilities like taking action on your devices. You can request help from us any time for custom scripts that will help you to achieve what you are aiming to do.
Hi
This script is used to uninstall cylance protect
Run as system user
Procedure's Instructions
Comments
david.tschoepe@itech-solutions.com
Written May 05, 2021
I'm a Python newb, how do I run this? I downloaded Python 3.9 from the Microsoft store and ran the command "python3 to-uninstall-cylance-protect.py" and I got an error on line 57 'print unin_str', SyntaxError: Missing parentheses in call to 'print'. Did you mean print(unin_str)?
73.mcgraw@gmail.com
Written Nov 30, 2021
seems like trying the suggestion would be a good first move...
or just delete every line that includes the word print - they're there only to prompt/inform the user of something
ben@codepy.org
Written Jan 10, 2022
Looks like it may have been written for Python2.x not Python 3
Python 3 requires print statements to use parentheses, Python 2 does not
If that is the only issue you should be able to keep the print statements by changing each print line to include them, for example on line 56: print(unin_str)
Or like has already been said, if you don't want them removing them might be easier
You can also try installing and running the script with Python 2 instead of 3
Comments