VirtualBox

Changeset 29828 in vbox


Ignore:
Timestamp:
May 26, 2010 7:09:05 PM (15 years ago)
Author:
vboxsync
Message:

Guest Control: Re-introduce sysprep functionality (hardcoded path, runs with system privileges).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp

    r29807 r29828  
    745745        pData = NULL;
    746746    }
     747}
     748
     749int VBoxServiceControlExecCreateProcess(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags,
     750                                        PCRTHANDLE phStdIn, PCRTHANDLE phStdOut, PCRTHANDLE phStdErr, const char *pszAsUser,
     751                                        const char *pszPassword, PRTPROCESS phProcess)
     752{
     753    /* Get the predefined path of sysprep.exe (depending on Windows OS). */
     754    int  rc = VINF_SUCCESS;
     755    char szSysprepCmd[RTPATH_MAX] = "C:\\sysprep\\sysprep.exe";
     756    OSVERSIONINFOEX OSInfoEx;
     757    RT_ZERO(OSInfoEx);
     758    OSInfoEx.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
     759    if (    GetVersionEx((LPOSVERSIONINFO) &OSInfoEx)
     760        &&  OSInfoEx.dwPlatformId == VER_PLATFORM_WIN32_NT
     761        &&  OSInfoEx.dwMajorVersion >= 6 /* Vista or later */)
     762    {
     763        rc = RTEnvGetEx(RTENV_DEFAULT, "windir", szSysprepCmd, sizeof(szSysprepCmd), NULL);
     764        if (RT_SUCCESS(rc))
     765            rc = RTPathAppend(szSysprepCmd, sizeof(szSysprepCmd), "system32\\sysprep\\sysprep.exe");
     766    }
     767
     768    /*
     769     * If sysprep should be executed do this in the context of VBoxService, which
     770     * (usually, if started by SCM) has administrator rights. Because of that a UI
     771     * won't be shown (doesn't have a desktop).
     772     */
     773    if (   RT_SUCCESS(rc)
     774        && stricmp(pszExec, szSysprepCmd) == 0)
     775    {
     776         rc = RTProcCreateEx(pszExec, papszArgs, hEnv, 0 /* fFlags */,
     777                             phStdIn, phStdOut, phStdErr, NULL /* pszAsUser */,
     778                             NULL /* pszPassword */, phProcess);
     779    }
     780    else
     781    {
     782        /* Do normal execution. */
     783        rc = RTProcCreateEx(pszExec, papszArgs, hEnv, fFlags,
     784                            phStdIn, phStdOut, phStdErr, pszAsUser,
     785                            pszPassword, phProcess);
     786    }
     787    return rc;
    747788}
    748789
     
    821862                            {
    822863                                RTPROCESS hProcess;
    823                                 rc = RTProcCreateEx(pData->pszCmd, pData->papszArgs, hEnv, RTPROC_FLAGS_SERVICE,
    824                                                     phStdIn, phStdOut, phStdErr,
    825                                                     pData->pszUser, pData->pszPassword,
    826                                                     &hProcess);
     864                                rc = VBoxServiceControlExecCreateProcess(pData->pszCmd, pData->papszArgs, hEnv, RTPROC_FLAGS_SERVICE,
     865                                                                         phStdIn, phStdOut, phStdErr,
     866                                                                         pData->pszUser, pData->pszPassword,
     867                                                                         &hProcess);
    827868                                if (RT_SUCCESS(rc))
    828869                                {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette