[Resolved] Nextcloud package
Published: July 15, 2020 - 11:45 AM
Good morning,
A new version of the Nextcloud client is available (2.6.5).
By default, the client indicates the availability of a new version and offers to update it.
To avoid this behavior, it is necessary to add a registry key to disable this check:
This code could be added to the function install of the package available in the TIS repository.
There is currently a problem with the function uninstall in the proposed package:
The Nextcloud client is installed in the directory C:\Program Files\Nextcloud Regardless of the architecture (32 or 64 bits). On a 64-bit machine, therefore, uninstallation does not work.
THANKS,
Sincerely.
A new version of the Nextcloud client is available (2.6.5).
By default, the client indicates the availability of a new version and offers to update it.
To avoid this behavior, it is necessary to add a registry key to disable this check:
Code: Select all
registry_setstring(HKEY_LOCAL_MACHINE, "SOFTWARE\\Policies\\Nextcloud\\Nextcloud", 'skipUpdateCheck', 1, type=REG_DWORD)There is currently a problem with the function uninstall in the proposed package:
Code: Select all
run('"%s" %s ' % (makepath(programfiles32,'Nextcloud', 'uninstall.exe'),'/S'))THANKS,
Sincerely.