Home › Forums › Product Support › JavaRa Support › /UNINSTALLALL /SILENT
Tagged: administrator, enterprise, group, policy, silent, uninstall
- This topic has 25 replies, 4 voices, and was last updated 10 years ago by
Anonymous.
-
AuthorPosts
-
Anonymous
InactiveWhoops, one more time.
Looks like the one I just uploaded was missing the Me.close that prevents the silent uninstallall from running indefinitely. Not sure how I missed that, but I uploaded the wrong one.
Last time I swear. 😆
Man it would be nice to be able to edit posts here… *hint* I’d clean this post storm up considerably.
Shane Gowland
KeymasterThe forum software we use only supports post editing for higher rank users.
I’m still recovering from surgery at the moment, but hopefully I’ll be able to audit your changes to JavaRa and have them included in the next release version.
Thank you for your contributions 🙂
Anonymous
InactiveGlad to help. Seemed like you had a little too much on your plate. 🙂
Shane Gowland
KeymasterI’ve committed your changes to the ‘development’ branch on GitHub.
https://github.com/SingularLabs/JavaRa/tree/development
I made some tweaks, too.
– I’ve added translation support (and fixed a few grammatical errors) to the output of the /? switch.
– All the switches are now case-insensitive, using the .ToUpper method.Anonymous
InactiveAwesome. yeah, I have since noticed those grammar errors. Hah, my bad.
😉
Anonymous
InactiveAlso, I think I may have forgotten to mention, I changed the project to do text comparison, instead of binary comparison, if you do that, I don’t think you’ll need the toupper method for case insensitivity. Binary comparison forces the need for that, and it is not true case insensitivity. It will allow /test, and /TEST but not /Test, or /tEsT, you follow me? However, I’m not sure if you are using binary comparison on purpose, or because it is the default.
If you go to the project properties and click the compile tab, there is the global option compare directive that you can set to text.
Optionally you can just do and option compare at the top of the page you want to be case insensitive. (sort of like an option explicit)
[code title=”example”]
OPTION COMPARE TEXT
[/code]you probably already knew this though, and I just don’t follow what you meant. Wouldn’t be the first time.
Regards,
RichShane Gowland
KeymasterBy parsing everything through .toUpper, you can use /TEST,/Test or /tEsT. I just thought it was a bit neater.
Anonymous
InactiveCould we get a compiled version of this?
Anonymous
Inactivethese changes are now in the production build.
Shane Gowland
KeymasterActually, the production build is still a few commits behind. I’ll upload a compiled version to the ‘dev’ branch later tonight.
-
AuthorPosts