Erro ao instalar o SQL Server 2008, o aplicativo não pôde ser iniciado corretamente (0xc0007b)

0

"o aplicativo não pôde iniciar corretamente (0xc0007b) .clique em ok ou feche o botão para instalar o aplicativo)"

Erro quando tento instalar o SQL Server 2008 no meu sistema.

Como posso corrigir esse erro?

    
por user235365 03.07.2013 / 08:57

1 resposta

0

Erro 0xc0007b significa ERROR_INVALID_NAME:

C:\Windows\system32>err 0xc0007b
# anonymous HRESULT: Severity: SUCCESS (0), Facility 0xc0, Code 0x7b
# for hex 0x7b / decimal 123
  INACCESSIBLE_BOOT_DEVICE                                       bugcodes.h
# Check for viruses on your computer. Remove any newly
# installed
# hard drives or hard drive controllers. Check your hard
# drive
# to make sure it is properly configured and terminated.
# Run CHKDSK /F to check for hard drive corruption, and then
# restart your computer.
  ScopeAllow_AddFilter_value                                     dhcpsmsg.h
  NMERR_SECURITY_BREACH_CAPTURE_DELETED                          netmon.h
  ERROR_INVALID_NAME                                             winerror.h
# The filename, directory name, or volume label syntax is
# incorrect.
  SQL_123_severity_15                                            sql_err
# Batch/procedure exceeds maximum length of %d characters.
# 5 matches found for "0xc0007b"

Você deve executar chkdsk /R /F para detectar e reparar problemas de NTFS.

    
por 03.07.2013 / 19:59