boinc/clientsetup/win/CAGetAdministratorsGroupNam...

117 lines
3.4 KiB
C++

// Berkeley Open Infrastructure for Network Computing
// http://boinc.berkeley.edu
// Copyright (C) 2005 University of California
//
// This is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation;
// either version 2.1 of the License, or (at your option) any later version.
//
// This software 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 Lesser General Public License for more details.
//
// To view the GNU Lesser General Public License visit
// http://www.gnu.org/copyleft/lesser.html
// or write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
#include "stdafx.h"
#include "boinccas.h"
#include "CAGetAdministratorsGroupName.h"
#include "lkuprid.h"
#define CUSTOMACTION_NAME _T("CAGetAdministratorsGroupName")
#define CUSTOMACTION_PROGRESSTITLE _T("Retrieving the Administrators group name")
/////////////////////////////////////////////////////////////////////
//
// Function:
//
// Description:
//
/////////////////////////////////////////////////////////////////////
CAGetAdministratorsGroupName::CAGetAdministratorsGroupName(MSIHANDLE hMSIHandle) :
BOINCCABase(hMSIHandle, CUSTOMACTION_NAME, CUSTOMACTION_PROGRESSTITLE)
{}
/////////////////////////////////////////////////////////////////////
//
// Function:
//
// Description:
//
/////////////////////////////////////////////////////////////////////
CAGetAdministratorsGroupName::~CAGetAdministratorsGroupName()
{
BOINCCABase::~BOINCCABase();
}
/////////////////////////////////////////////////////////////////////
//
// Function:
//
// Description:
//
/////////////////////////////////////////////////////////////////////
UINT CAGetAdministratorsGroupName::OnExecution()
{
tstring strGroupAlias;
WCHAR szName[UNLEN+1];
DWORD cchName = UNLEN;
UINT uiReturnValue = -1;
uiReturnValue = GetProperty( _T("GROUPALIAS_ADMINISTRATORS"), strGroupAlias );
if ( uiReturnValue ) return uiReturnValue;
// If something is already defined then don't override it.
if( strGroupAlias.empty() )
{
if( !LookupAliasFromRid( NULL, DOMAIN_ALIAS_RID_ADMINS, szName, &cchName) )
{
LogMessage(
INSTALLMESSAGE_ERROR,
NULL,
NULL,
NULL,
GetLastError(),
_T("Setup was unable to determine the Administrators group name.")
);
return ERROR_INSTALL_FAILURE;
}
uiReturnValue = SetProperty( _T("GROUPALIAS_ADMINISTRATORS"), szName);
if ( uiReturnValue ) return uiReturnValue;
}
return ERROR_SUCCESS;
}
/////////////////////////////////////////////////////////////////////
//
// Function: GetAdministratorsGroupName
//
// Description: This custom action looks up the administrators group
// name.
//
/////////////////////////////////////////////////////////////////////
UINT __stdcall GetAdministratorsGroupName(MSIHANDLE hInstall)
{
UINT uiReturnValue = 0;
CAGetAdministratorsGroupName* pCA = new CAGetAdministratorsGroupName(hInstall);
uiReturnValue = pCA->Execute();
delete pCA;
return uiReturnValue;
}