// Check if the WW installation of the first alhpa release of LexText is present,
// and remove it if so.
int RemoveFirstLexTextAlpha(SoftwareProduct * /*Product*/)
{
	int dwResult = 0;

	// See if the separate WW installation is present:
	const TCHAR * pszProductCodeLT = _T("{D8D2DBAB-7487-4A6E-B369-7F1932B3BDFE}");
	INSTALLSTATE state = WindowsInstaller.MsiQueryProductState(pszProductCodeLT);
	bool fInstalled = false;
	switch (state)
	{
	case INSTALLSTATE_ADVERTISED:
	case INSTALLSTATE_LOCAL:
	case INSTALLSTATE_SOURCE:
	case INSTALLSTATE_DEFAULT:
		// WW installation was found:
		fInstalled = true;
	}
	if (fInstalled)
	{
		// Display status message, and write progress to log file:
		ShowStatusDialog();
		g_Log.Write(DisplayStatusText(0, _T("Removing old LexText Alpha version.")));
		g_Log.Write(DisplayStatusText(1,
			_T("This may take a few minutes.")));
		g_Log.Write(DisplayStatusText(2, _T("")));

		// Remove the WW installation:
		TCHAR * pszCmd = new_sprintf(_T("msiexec /qb /x %s"), pszProductCodeLT);
		dwResult = ExecCmd(pszCmd, NULL, true, NULL, _T("Show"));
		delete[] pszCmd;
	}
	return int(dwResult != 0);
}
Ejemplo n.º 2
0
void WebServerStateView::OnWebServerError(WebserverStatus web_server_status)
{
	m_oam_status = OperaAccountManager::Error;
	m_web_server_status = web_server_status;

	OpStatus::Ignore(ShowStatusDialog());
}
// Installs a couple of MS updates just for Vista, Vista's unique wusa.exe update installer.
// Unfortunately, there is no simple way to detect if these updates are present, hence the
// need for this function, which always returns zero, as if nothing went wrong.
int VistaKB958481andKB958483(SoftwareProduct * /*Product*/)
{
	g_Log.Write(_T("Investigating need for KB958481 and KB958483 for Vista..."));

	// Test that we are running Vista:
	if (g_OSVersion < OSVersion_t::Vista || g_OSVersion >= OSVersion_t::W7)
	{
		g_Log.Write(_T("...not running Vista."));
		return 0;
	}

	DWORD dwResult;
	// Launch wusa.exe with the KB958481 update:
	g_Log.Write(_T("Launching update installer with KB958481..."));
	ShowStatusDialog();
	DisplayStatusText(0, _T("Installing Hotfix KB958481 (prerequisite of the .NET Compatibility Update)"));
	dwResult = ExecCmd(_T("wusa.exe \"Utilities\\DotNet 3.5 SP1\\Windows6.0-KB958481-x86.msu\" /quiet /norestart"), NULL);

	if (TestResultForRebootRequest(dwResult))
	{
		g_Log.Write(_T("KB958481 requested a reboot."));
		g_fRebootPending = true;
	}

	// Launch wusa.exe with the KB958483 update:
	g_Log.Write(_T("Launching update installer with KB958483..."));
	DisplayStatusText(0, _T("Installing Hotfix KB958483 (prerequisite of the .NET Compatibility Update)"));
	dwResult = ExecCmd(_T("wusa.exe \"Utilities\\DotNet 3.5 SP1\\Windows6.0-KB958483-x86.msu\" /quiet /norestart"), NULL);

	if (TestResultForRebootRequest(dwResult))
	{
		g_Log.Write(_T("KB958483 requested a reboot."));
		g_fRebootPending = true;
	}

	g_Log.Write(_T("...Done."));

	return 0;
}
Ejemplo n.º 4
0
void MasterInstaller_t::Run()
{
	try
	{
		m_nPhase = -1;
		g_Log.Start();
		if (!CreateMutex())
			return;

		DoUniversalFixes();

		if (g_OSVersion >= OSVersion_t::Win2k)
		{
			// Because the API function GetSystemDefaultUILanguage does not exist
			// on Windows 98 or lower, we must not assume it is present. Instead,
			// we must interrogate the Kernel32.dll.
			// Get Windows system folder path:
			_TCHAR * pszSystemFolder = GetFolderPathNew(CSIDL_SYSTEM);
			if (pszSystemFolder)
			{
				// Generate full path of Kernel32.dll:
				_TCHAR * pszKernel32Dll = MakePath(pszSystemFolder, _T("Kernel32.dll"));

				// Get a handle to the DLL:
				HMODULE hmodKernel32 = LoadLibrary(pszKernel32Dll);

				// Delete garbage:
				delete[] pszSystemFolder;
				pszSystemFolder = NULL;
				delete[] pszKernel32Dll;
				pszKernel32Dll = NULL;

				// Check if we were successful:
				if (hmodKernel32)
				{
					typedef DWORD (WINAPI * GetSystemDefaultUILanguageFn)(void);
					GetSystemDefaultUILanguageFn _GetSystemDefaultUILanguage;

					// Now get a pointer to the function we want to use:
					_GetSystemDefaultUILanguage =
						(GetSystemDefaultUILanguageFn)GetProcAddress(hmodKernel32,
						"GetSystemDefaultUILanguage");

					if (_GetSystemDefaultUILanguage)
						g_langidWindowsLanguage = _GetSystemDefaultUILanguage();

					// While we have the handle to Kernel32.dll open, we'll do some
					// other tests to see if the g_OSVersion is accurate, or whether
					// it was duped because of the program being run in a different
					// compatibility mode, which can happen to a naïve user on Vista:
					if (g_OSVersion < OSVersion_t::Vista && 
						NULL != GetProcAddress(hmodKernel32, "GetLocaleInfoEx"))
					{
						// OS is really Vista or higher, but we're duped into thinking it's less:
						g_Log.Write(_T("OS version is reported as %s, yet GetLocaleInfoEx function exists in Kernel32.dll, indicating version 6.0 (Vista) or higher."),
							g_OSVersion.Numeric());
						HandleError(kFatal, false, IDC_ERROR_OS_VERSION_LIE_VISTA);
					}

					FreeLibrary(hmodKernel32);
					hmodKernel32 = NULL;
				}
			}
		}
		g_fAdministrator = IsCurrentUserLocalAdministrator();
		g_Log.Write(_T("Admin privileges: %s."), (g_fAdministrator? _T("true") : _T("false")));

		m_ppmProductManager = CreateProductManager();
		if (!m_ppmProductManager)
		{
			HandleError(kFatal, false, IDC_ERROR_INTERNAL,
				_T("cannot instantiate Product Manager"));
		}

		// See if we were interrupted last time around:
		if (g_ProgRecord.RecordExists())
		{
			// We were previously terminated in the middle of something, so let's see where:
			m_nPhase = g_ProgRecord.ReadPhase();
			g_Log.Write(_T("Discovered previous progress record: Phase=%d."), m_nPhase);

			// Check validity of saved record:
			if (m_nPhase < 0 || m_nPhase >= phaseMaxPhases)
			{
				HandleError(kNonFatal, false, IDC_ERROR_CORRUPT_RECORD);

				// Remove our data from registry altogether:
				g_ProgRecord.RemoveData(false);

				// Now run ourself again!
				ReRun(); // Does not return
			}
		}

		if (m_nPhase == -1)
		{
			g_Log.Write(_T("Clean start established."));

			// This is a clean start. Check if user must start from first CD in set:
			if (!g_fStartFromAnyCd)
			{			
				// Clean start should only happen from CD 1, or possibly if user has copied
				// stuff to hard drive, so if we are currently running off a CD with no startup,
				// we must tell user to insert CD index 0.
				if (g_DiskManager.CheckCdPresent(0, true) == DiskManager_t::knUserQuit)
					throw UserQuitException;
			}
			m_nPhase = phaseChoices;
		}

		// Create event so that later we can signal to our sub-threads that we're shutting down:
		m_hShutDown = CreateEvent(NULL, true, false, NULL);
		if (!m_hShutDown)
			g_Log.Write(_T("Failed to create ShutDown event."));

		// Get a pointer to the Help function in the InstallerHelp2.dll:
		g_Log.Write(_T("Attempting to load InstallerHelp2.dll."));
		m_hmodInstallerHelp2 = LoadLibrary(_T("InstallerHelp2.dll"));
		if (m_hmodInstallerHelp2)
		{
			g_Log.Write(_T("Loaded InstallerHelp2.dll."));
			Help = (HelpFn)GetProcAddress(m_hmodInstallerHelp2, "Help");
			if (!Help)
			{
				FreeLibrary(m_hmodInstallerHelp2);
				m_hmodInstallerHelp2 = NULL;
				g_Log.Write(_T("Failed to get pointer to Help function."));
			}
		}
		else
			g_Log.Write(_T("InstallerHelp2.dll not present."));

		// Flag to indicate third-party stuff is to be included. User may get a chance to reset
		// this later:
		m_fInstallRequiredProducts = true;
		bool fShowDependencies = false;

		if (m_nPhase == phaseChoices)
		{
			g_ProgRecord.WritePhase(m_nPhase);
			g_Log.Write(_T("Starting user choices phase."));

			SelectMainProducts();

			if (m_rgiChosenMainProducts.GetCount() == 0 && !m_fInstallRequiredProducts)
			{
				// User didn't select anything, so quit:
				g_Log.Write(_T("User didn't select anything."));
				MessageBox(NULL, FetchString(IDC_MESSAGE_NOTHING_SELECTED), g_pszTitle, MB_OK);
				throw UserQuitException;
			}
			// Check if any selected item has a prerequisite or requirement that has a
			// language requirement we can't meet:
			TestAndReportLanguageConflicts(m_rgiChosenMainProducts);

			// Save user's selection(s):
			g_ProgRecord.WriteMainSelectionList(m_rgiChosenMainProducts);
			m_nPhase = phaseMain;
			fShowDependencies = true;

			if (g_fManualInstall)
				g_Log.Write(_T("Manual mode: not testing for prerequisites of chosen products."));
			else
			{
				// Display Prerequisites, if any:
				g_Log.Write(_T("Testing for prerequisites of chosen products:"));
				g_Log.Indent();
				if (m_ppmProductManager->PrerequisitesNeeded(m_rgiChosenMainProducts))
				{
					g_Log.Unindent();

					// There are some prerequisites:
					g_Log.Write(_T("Prerequisites are needed."));

					// Display report dialog:
					_TCHAR * pszTitle = new_sprintf(_T("%s - %s"), g_pszTitle,
						FetchString(IDC_MESSAGE_PREREQUISITES));
					_TCHAR * pszIntro = new_sprintf(FetchString(IDC_MESSAGE_PREREQUISITE_INTRO),
						g_pszTitle, g_pszTitle);
					_TCHAR * pszContinue = new_sprintf(FetchString(IDC_MESSAGE_CONTINUE));
					m_ppmProductManager->ShowReport(pszTitle, pszIntro, pszContinue, true, true,
						IProductManager::rptPrerequisitesShort, true, &m_rgiChosenMainProducts);
					delete[] pszTitle;
					delete[] pszIntro;
					delete[] pszContinue;
				} // End if any pre-requisite products are needed.
				else
				{
					g_Log.Unindent();
					g_Log.Write(_T("No prerequisites are needed."));
				}
			}
		}
		else if (m_nPhase == phaseMain) // We were running previously
		{
			// Retrieve remains of user's previous selection(s)
			g_ProgRecord.ReadMainSelectionList(m_rgiChosenMainProducts);

			g_Log.Write(_T("Remains of user's previous selection(s):"));
			for (int i = 0; i < m_rgiChosenMainProducts.GetCount(); i++)
			{
				g_Log.Write(_T("%d: %s"), i,
					m_ppmProductManager->GetName(m_rgiChosenMainProducts[i]));
			}
		}

		if (m_nPhase == phaseMain)
		{
			// Save status of installing main installers:
			g_Log.Write(_T("Starting Main phase."));
			g_ProgRecord.WritePhase(m_nPhase);

			ShowStatusDialog();
			DisplayStatusText(0, FetchString(IDC_MESSAGE_INITIALIZING));
			DisplayStatusText(1, _T(""));

			while (m_rgiChosenMainProducts.GetCount() > 0)
			{
				CheckIfStopRequested();

				// Get index of next chosen product to be installed:
				int iCurrentProduct = m_rgiChosenMainProducts[0];

				// Install prerequisite software, unless in manual mode:
				if (!InstallPrerequisites(iCurrentProduct) && !g_fManualInstall)
				{
					// Could not install all prerequisites, so there's no point in continuing
					// with this product:
					m_rgiChosenMainProducts.RemoveNthItem(0);
					g_ProgRecord.WriteMainSelectionList(m_rgiChosenMainProducts);
					g_Log.Write(
						_T("Removed %s from chosen main products due to prerequisite failure."),
						m_ppmProductManager->GetName(iCurrentProduct));

					continue; // go to next product.
				}
				CheckIfStopRequested();

				// See if this product requires a pending reboot to be flushed first:
				TestAndPerformPendingReboot(iCurrentProduct);

				// Remove current product from selection list:
				g_Log.Write(_T("Removing %s from chosen main products prior to installation."),
					m_ppmProductManager->GetName(m_rgiChosenMainProducts[0]));
				m_rgiChosenMainProducts.RemoveNthItem(0);

				// Record current selection list:
				g_ProgRecord.WriteMainSelectionList(m_rgiChosenMainProducts);

				// Install product.
				m_ppmProductManager->InstallProduct(iCurrentProduct);
				// Any error that occurred will already have been reported to the user, so we
				// can just continue.
			} // End while there are more than 0 chosen products left

			g_Log.Write(_T("Finished installing main products."));

			m_nPhase = phaseDependencies;
			fShowDependencies = true;
		}

		CheckIfStopRequested();

		// Install dependent software, unless in manual mode:
		if (m_nPhase == phaseDependencies && m_fInstallRequiredProducts && !g_fManualInstall)
		{
			g_Log.Write(_T("Starting dependent software phase."));

			g_ProgRecord.WritePhase(m_nPhase);

			// Determine the software dependencies:
			IndexList_t rgiRequiredProducts;

			ShowStatusDialog();
			DisplayStatusText(0, FetchString(IDC_MESSAGE_DEPENDENCIES));
			DisplayStatusText(1, _T(""));

			g_Log.Write(_T("Testing for initial active requirements..."));
			g_Log.Indent();
			m_ppmProductManager->GetActiveRequirements(rgiRequiredProducts);
			g_Log.Unindent();
			g_Log.Write(_T("... Done (initial active requirements)"));

			// See if there are any dependencies we need to show:
			if (fShowDependencies && rgiRequiredProducts.GetCount() > 0)
			{
				g_Log.Write(_T("Informing user of needed software."));

				// Display dependency report dialog:
				_TCHAR * pszTitle = new_sprintf(_T("%s - %s"), g_pszTitle,
					FetchString(IDC_MESSAGE_REQUIREMENTS));
				_TCHAR * pszIntro = new_sprintf(FetchString(IDC_MESSAGE_REQUIREMENT_INTRO),
					g_pszTitle, g_pszTitle);
				_TCHAR * pszContinue = new_sprintf(FetchString(IDC_MESSAGE_CONTINUE));
				m_ppmProductManager->ShowReport(pszTitle, pszIntro, pszContinue, true, true,
					IProductManager::rptRequirementsShort, true);
				delete[] pszTitle;
				delete[] pszIntro;
				delete[] pszContinue;
				ShowStatusDialog();
			}
			// Check if any required product has a prerequisite or requirement that has a
			// language requirement we can't meet:
			TestAndReportLanguageConflicts(rgiRequiredProducts, true);

			while (rgiRequiredProducts.GetCount() > 0)
			{
				CheckIfStopRequested();

				// Get index of next required product:
				int iCurrentProduct = rgiRequiredProducts.RemoveNthItem(0);

				// It is remotely possible that an earlier installation means we no longer need
				// The current product, so let's just check:
				IndexList_t rgiTempCurrentNeeds;
				g_Log.Write(_T("Testing active requirements to see if %s is still needed..."),
					m_ppmProductManager->GetName(iCurrentProduct));
				g_Log.Indent();
				m_ppmProductManager->GetActiveRequirements(rgiTempCurrentNeeds);
				g_Log.Unindent();
				g_Log.Write(_T("...Done (requirements)"));

				if (!rgiTempCurrentNeeds.Contains(iCurrentProduct))
				{
					// Product is no longer needed
					g_Log.Write(_T("Product %s is no longer a requirement."),
						m_ppmProductManager->GetName(iCurrentProduct));
					continue; // Product is already removed from requirements list.
				}

				// Inform user of number of products remaining:
				DisplayStatusText(2, FetchString(IDC_MESSAGE_REMAINING),
					rgiRequiredProducts.GetCount());

				// Install prerequisites for current product:
				if (!InstallPrerequisites(iCurrentProduct))
					continue; // Failed, so go to next product.

				CheckIfStopRequested();

				// See if this product requires a pending reboot to be flushed first:
				TestAndPerformPendingReboot(iCurrentProduct);

				g_Log.Write(_T("About to install %s."),
					m_ppmProductManager->GetName(iCurrentProduct));

				m_ppmProductManager->InstallProduct(iCurrentProduct);
				// No need to deal with an error - it has already been reported,
				// so we can just carry on with the next product.
			} // End while there are more than 0 required products left
		}
		CheckIfStopRequested();

		_TCHAR * pszWksp = NULL;
		bool fShowFinalMessage = true;
		if (m_ppmProductManager->ShowFinalReport() || !g_fShowInstallCompleteMessage)
			fShowFinalMessage = false;
		else // No error report needed
			pszWksp = new_sprintf(FetchString(IDC_MESSAGE_FINISHED), g_pszTitle);

		UINT uType = MB_OK; // Default Message Box button.

		// See if there is a pending reboot:
		if (g_fRebootPending)
		{
			fShowFinalMessage = true;
			new_sprintf_concat(pszWksp, 0, _T("\n\n%s"),
				FetchString(IDC_MESSAGE_PENDING_REBOOT));
			uType = MB_OKCANCEL;
		}
		HideStatusDialog();

		int nResult = IDCANCEL;
			
		if (fShowFinalMessage && !g_fSilent)
			nResult = MessageBox(NULL, pszWksp, g_pszTitle, uType);
		delete[] pszWksp;
		pszWksp = NULL;

		if (g_fRebootPending && nResult == IDOK)
		{
			g_ProgRecord.RemoveData(false);
			Reboot();
		}
	}
	catch (UserQuitException_t &)
	{
		// User asked to quit, so just quit quietly.
	}
	catch (...)
	{
		// Some fatal error, which has probably already been reported, but we'll try to put the
		// log info into the Clipboard:
		bool fWritten = g_Log.WriteClipboard();
		HideStatusDialog();
		if (fWritten)
			MessageBox(NULL, FetchString(IDC_MESSAGE_LOG_IN_CLIPBOARD), g_pszTitle, MB_OK);
	}
	g_ProgRecord.RemoveData(false);
}