Page 1 of 1

Cannot remove approved application from global list

Posted: Thu Apr 16, 2020 3:03 pm
by aaroncampbell72
I accidentally added an Approved Application for Good Chrome without giving it an Application name, Source Repository, or Repo Username. When I double-click on it to remove it, nothing happens. Is there an .xml or .config file somewhere on my hosted repository I need to edit to remove it from the Global list of Approved Applications?

Re: Cannot remove approved application from global list

Posted: Thu Apr 16, 2020 3:51 pm
by Cubert
can you post a screen shot? Not sure how that would happen.

Re: Cannot remove approved application from global list

Posted: Thu Apr 16, 2020 5:41 pm
by aaroncampbell72
Capture.PNG
Capture.PNG (11.02 KiB) Viewed 9268 times

Re: Cannot remove approved application from global list

Posted: Tue Apr 21, 2020 1:04 pm
by Cubert
Ok see if this helps.

Find the apps in SQL

Code: Select all

SELECT * FROM plugin_sw_chocolateyii_approved_apps WHERE AppCMD = 'Google-Chrome'

Delete the App with no title

Code: Select all

DELETE FROM plugin_sw_chocolateyii_approved_apps WHERE AppCMD = 'Google-Chrome' and (Application = '' or Application IS NULL)