CFF KB - Carrz-Fox-Fire Promotions Knowledge Base

CFF KB is all about 1 thing: The Sharing of Knowledge and the Power we gain from it.
  • Breadrumbs:
  • Process returned exit code: 0x84B30002 - Media ScenarioEngine.exe returned exit code: 0x84B30002

  • CFF Knowledge Base - Share With Facebook CFF Knowledge Base - Share on Twitter CFF Knowledge Base - Share on Reddit CFF Knowledge Base - Share on Digg It CFF Knowledge Base - Share on Stumble Upon It CFF Knowledge Base - Share on Delicious
    Share With Friends (Updated 6-8-2010)
  • Article ID:
    225
  • Date Created
    Tuesday, March 31, 2020
  • Last Updated
    Wednesday, April 1, 2020
  • This Article Has been Viewed
    1202 times
  • Short Desc
    When installing SQL Server from PowerShell in a Windows Server Core system, using an install script, without having FEATURES listed will cause the installation to fail with the following error.

    ScenarioEngine.exe
    0x84B30002
    0x84C40013
  • Details
    When installing SQL Server from PowerShell in a Windows Server Core system, using an install script, without having FEATURES listed will cause the installation to fail with the following error.

     
    03/30/2020 21:19:45.976 Attempting to run user requested action from media ScenarioEngine.exe
    03/30/2020 21:19:46.038 Attempting to launch process D:\SQL\x64\ScenarioEngine.exe
    03/30/2020 21:21:55.399 Process returned exit code: 0x84B30002
    03/30/2020 21:21:55.524 Media ScenarioEngine.exe returned exit code: 0x84B30002
    03/30/2020 21:21:55.556 Attempting to release setup mutex
    03/30/2020 21:21:55.618 Setup mutex has been released
    03/30/2020 21:21:55.696 Setup closed with exit code: 0x84C40013
  • Recreate Issue
    Recreate Issue

    In your installation script, you neglect to add in the FEATURES you need to be installed.
    If the no Features listed in the install script, the installation will not know what to do, causing the error above to present itself to the end-user.
  • Resolve Issue
    Resolve Issue

    To install SQL Server in a core server with an installation script, you need to have FEATURES listed.

    Example of the FEATURES of which are allowed in Core.
    FEATURES=SQLENGINE,REPLICATION,FULLTEXT,CONN

    Save the file and then install it from the script.
    The install code used is the following.
    (Navigate to the SQL Server Installation Directory)
    CD N:\
    ;-- Then run this
    PS N:\> ./Setup.exe /Q /ConfigurationFile=D:\Files\CoreSQLInstall.INI
    ;-- You may encounter other issues along the way, but this will get you started.