error 35

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
basilico
Posts: 1
Joined: 21 Oct 2012 03:13

error 35

#1 Post by basilico » 21 Oct 2012 03:28

Hello everyone, I just registered, I hope to post in the right place So I start a setup.exe file that tells me erroe [35] general protection fault in setup.exe 0097:4 C58 code 0000 ss 0087 ds 0087 as 0107
Ax bx cx dx 9050 9050 0117 1301 sp 136c is 137 bp 0117-0156 in DOS 6.22

Is there a way to fix this?

thanks

Boombox
Posts: 80
Joined: 18 Oct 2012 05:51

Re: error 35

#2 Post by Boombox » 21 Oct 2012 03:53

Setup.exe for which program? What version of Windows are you using?

Are you sure this is a CMD question?



http://en.wikipedia.org/wiki/General_protection_fault

http://www.computerhope.com/issues/ch000224.htm

Squashman
Expert
Posts: 4472
Joined: 23 Dec 2011 13:59

Re: error 35

#3 Post by Squashman » 21 Oct 2012 07:54

basilico wrote:Hello everyone, I just registered, I hope to post in the right place

Well this is a batch script forum so you have a 50/50 chance of posting on the correct website. Doesn't sound like this is batch file related.

foxidrive
Expert
Posts: 6031
Joined: 10 Feb 2012 02:20

Re: error 35

#4 Post by foxidrive » 21 Oct 2012 07:57

General protection faults could be caused by faulty RAM modules. Memtest is the first thing I would use to get some info on that.

Liviu
Expert
Posts: 470
Joined: 13 Jan 2012 21:24

Re: error 35

#5 Post by Liviu » 21 Oct 2012 15:19

basilico wrote:So I start a setup.exe file that tells me erroe [35] general protection fault in setup.exe 0097:4 C58 code 0000 ss 0087 ds 0087 as 0107
Ax bx cx dx 9050 9050 0117 1301 sp 136c is 137 bp 0117-0156

Please copy the full and exact error message, preferably preserving formatting.

basilico wrote:in DOS 6.22

What setup are you running, how do you start it, and what's the operating system (windows version, unless it really _is_ DOS 6.x)?

In 32b Windows, "net helpmsg" returns additional error information for some error codes. The "error code lookup tool" (http://www.microsoft.com/en-us/download/details.aspx?id=985) usually covers more such error codes. But you still need to know where and what to look for.

Code: Select all

C:\tmp>err 35

# for decimal 35 / hex 0x23 :
  BTH_ERROR_LMP_TRANSACTION_COLLISION                           bthdef.h
  FAT_FILE_SYSTEM                                               bugcodes.h
# Disable or uninstall any anti-virus, disk defragmentation
# or backup utilities. Check your hard drive configuration,
# and check for any updated drivers. Run CHKDSK /F to check
# for hard drive corruption, and then restart your computer.
  EVENT_SCEP_RA_CLOSE_TO_EXPIRE                                 ceplog.mc
# At least one RA certificate of SCEP Add-On will expire
# soon.  Please follow instructions at
# http://%1/certsrv/mscep/mscephlp.htm to renew RA
# certificates.
  MSG_E_CO_INITIALIZE                                           certlog.mc
# Certificate Services did not start: Could not initialize
# OLE for %1.  %2.
  CR_NO_MORE_HW_PROFILES                                        cfgmgr32.h
  LLC_STATUS_TRANSMIT_ERROR                                     dlcapi.h
  KRB_AP_ERR_NOT_US                                             kerberr.h
# The ticket isn't for us
  POLICY_ERRV_GLOBAL_USER_SUM_FLOW_RATE                         lpmapi.h
  MAPI_DIAG_MAIL_RECIPIENT_UNKNOWN                              mapidefs.h
  WAVERR_SYNC                                                   mmsystem.h
  WAVERR_LASTERROR                                              mmsystem.h
  NRC_BRIDGE                                                    nb30.h
# /* ncb_lana_num field invalid                 */
  NMERR_PROTOCOL_NOT_FOUND                                      netmon.h
  OLE_ERROR_LAUNCH,                                             ole.h
# Failed to launch server                 */
  MSG_TIME_SOURCE_CHOSEN                                        w32timemsg.mc
# The time service is now synchronizing the system time with
# the time
# source %1.
  LDAP_IS_LEAF                                                  winldap.h

# for hex 0x35 / decimal 53 :
  NO_MORE_IRP_STACK_LOCATIONS                                   bugcodes.h
  MSG_DN_CERT_DENIED_WITH_INFO                                  certlog.mc
# Certificate Services denied request %1 because %2.  The
# request was for %3.  Additional information: %4
  CR_INVALID_PROPERTY                                           cfgmgr32.h
  POLICY_ERRV_PRE_EMPTED                                        lpmapi.h
  NRC_OSRESNOTAV                                                nb30.h
# /* required OS resources exhausted            */
  NMERR_NO_HANDLES                                              netmon.h
  OLE_ERROR_UPDATE,                                             ole.h
# erorr while trying to update            */
  ERROR_BAD_NETPATH                                             winerror.h
# The network path was not found.
  LDAP_UNWILLING_TO_PERFORM                                     winldap.h
# 25 matches found for "35"

Liviu

Post Reply