Não há espaço de armazenamento suficiente

1

Acabei de instalar novamente uma Máquina do Windows Server 2008 e estou tentando colocá-la em produção, fornecida com o SQL Server 2008; O problema é que requer um aplicativo chamado: Windows Installer recomendado é 4.5 ou superior, eu fui para o site da Microsoft e baixei o pacote oficial, mas quando estou em execução:

Setup Error: 
Not enough storage is available to process this command. 

Depois, clico em OK e, em seguida, é apresentado:

Setup Error
installation did not complete.

Ao visualizar o Visualizador de eventos:

Log Name:      Application
Source:        Windows Installer 3.1
Date:          13/04/2013 19:10:25
Event ID:      4373
Task Category: None
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      DOMAIN CONTROLLED REMOVED
Description:
The description for Event ID 4373 from source Windows Installer 3.1 cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event: 

Windows
Not enough storage is available to process this command.


Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Windows Installer 3.1" />
    <EventID Qualifiers="49166">4373</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-04-13T18:10:25.000Z" />
    <EventRecordID>266</EventRecordID>
    <Channel>Application</Channel>
    <Computer>DOMAIN CONTROLLED REMOVED</Computer>
    <Security />
  </System>
  <EventData>
    <Data>Windows</Data>
    <Data>
    </Data>
    <Data>Not enough storage is available to process this command.
</Data>
  </EventData>
</Event>

Isso é quando instalar o Windows Installer 3.1

Tentando o Windows Installer 4.5 Retorna:

Log Name:      Application
Source:        NtServicePack
Date:          13/04/2013 19:06:42
Event ID:      4373
Task Category: None
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      DOMAIN CONTROLLED REMOVED
Description:
The description for Event ID 4373 from source NtServicePack cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event: 

Windows
Not enough storage is available to process this command.


Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="NtServicePack" />
    <EventID Qualifiers="49166">4373</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-04-13T18:06:42.000Z" />
    <EventRecordID>262</EventRecordID>
    <Channel>Application</Channel>
    <Computer>DOMAIN CONTROLLED REMOVED</Computer>
    <Security />
  </System>
  <EventData>
    <Data>Windows</Data>
    <Data>
    </Data>
    <Data>Not enough storage is available to process this command.
</Data>
  </EventData>
</Event>
    
por Daryl Gill 13.04.2013 / 20:15

2 respostas

2

A mensagem de erro é provavelmente falsa. Observe que o Windows Server 2008 já vem com o Instalador 4.0 , então não deve haver necessidade de instalar 3.1 novamente a partir do pacote redistribuível.

Você deve tentar registrar novamente a versão do Windows Installer que já está presente no seu sistema:

  1. verifique se o valor de "ImagePath" em HKLM\SYSTEM\CurrentControlSet\Services\MSIServer contém uma referência válida para o msiexec.exe do seu sistema (por exemplo, C:\Windows\System32\msiexec.exe /V )
  2. inicie a máquina no modo de segurança e execute msiexec /regserver como Administrador para registrá-la novamente no sistema

(retirado do link )

    
por 13.04.2013 / 22:42
0

Você deve verificar se a entrada é C:\Windows\System32\msiexec.exe /V , mas não simplesmente C:\Windows\System32\msiexec /V . Eu mudei - acrescentou ". Exe" e deu certo!

    
por 11.06.2013 / 09:35