mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-15 01:42:45 +01:00
61dc4b9137
Everyone uses their private mail, so ensure people can get in touch. Signed-off-by: Michael Schuster <michael@schuster.ms>
85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
/*
|
|
* Copyright (C) by Michael Schuster <michael@schuster.ms>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
#include "NCMsiHelper.h"
|
|
#include "utility.h"
|
|
#include "LogResult.h"
|
|
|
|
using namespace NCTools;
|
|
|
|
HRESULT NCMSIHELPER_API DoExecNsisUninstaller(int argc, LPWSTR *argv)
|
|
{
|
|
if (argc != 2) {
|
|
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
|
}
|
|
|
|
const auto appShortName = std::wstring(argv[0]);
|
|
const auto uninstallExePath = std::wstring(argv[1]);
|
|
|
|
if (appShortName.empty()
|
|
|| uninstallExePath.empty()) {
|
|
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
|
}
|
|
|
|
auto appInstallDir = uninstallExePath;
|
|
const auto posLastSlash = appInstallDir.find_last_of(PathSeparator);
|
|
if (posLastSlash != std::wstring::npos) {
|
|
appInstallDir.erase(posLastSlash);
|
|
} else {
|
|
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
|
}
|
|
|
|
// Run uninstaller
|
|
const std::wstring cmd = L'\"' + uninstallExePath + L"\" /S _?=" + appInstallDir;
|
|
LogResult(S_OK, "Running '%ls'.", cmd.data());
|
|
Utility::execCmd(cmd);
|
|
|
|
LogResult(S_OK, "Waiting for NSIS uninstaller.");
|
|
|
|
// Can't wait for the process because Uninstall.exe (opposed to Setup.exe) immediately returns, so we'll sleep a bit.
|
|
Utility::waitForNsisUninstaller(appShortName);
|
|
|
|
LogResult(S_OK, "Removing the NSIS uninstaller.");
|
|
|
|
// Sleep a bit and clean up the NSIS mess
|
|
Sleep(1500);
|
|
DeleteFile(uninstallExePath.data());
|
|
RemoveDirectory(appInstallDir.data());
|
|
|
|
LogResult(S_OK, "Finished.");
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
HRESULT NCMSIHELPER_API DoRemoveNavigationPaneEntries(int argc, LPWSTR *argv)
|
|
{
|
|
if (argc != 1) {
|
|
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
|
}
|
|
|
|
const auto appName = std::wstring(argv[0]);
|
|
|
|
if (appName.empty()) {
|
|
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
|
}
|
|
|
|
LogResult(S_OK, "Removing '%ls' sync folders from Explorer's Navigation Pane for the current user.", appName.data());
|
|
|
|
Utility::removeNavigationPaneEntries(appName);
|
|
|
|
LogResult(S_OK, "Finished.");
|
|
|
|
return S_OK;
|
|
}
|