본문 바로가기

Microsoft/Windows Server

Err.exe / 에러 값 의미 확인

MS에서는 정말 다양한 Tool이 있는 것 같습니다.


Err Tool을 통해 서버 운영 시 10진수 or 16진수 에러 코드가 나왔을 경우 어떤 의미인지 확인할 수 있습니다.

Microsoft Exchange Server Error Code Look-up

Determine error values from decimal and hexadecimal error codes in Microsoft Windows® operating systems.


아래 경로에서 Err Tool을 다운로드 받고, 압축을 해제합니다.

https://www.microsoft.com/en-us/download/details.aspx?id=985


예를 들어 작업 스케줄러에 예약된 작업을 실행했습니다. 마지막 실행 결과 값을 보시면 0x41301이라는 에러코드가 발생하였습니다. err tool을 통해 확인해 보니 작업이 실행 중이라고 나옵니다... 작업 스케쥴러에서는 에러코드 옆에 내용이 자세히 나오네요 ㅎ



USAGE: err {value} [value] [value] ...

 where <value> must be of one of the following forms:

   1. decorated hex (0x54f)

   2. implicit hex  (54f)

   3. ambiguous     (1359)

   4. exact string  (=ERROR_INTERNAL_ERROR)

   5. substring     (:INTERNAL_ERROR)


All values on the command line will be looked up in our internal

tables and presented to you.  If available, informational data

associated with the value(s) will also be shown (see below).

All tables are searched by default, but you can restrict the 

output to those tables you deem appropriate by adding

"/<tablename>" to the beginning of the commandline. 


Example:


> err /winerror.h /ntstatus.h 0

# winerror.h selected.

# ntstatus.h selected.

# for hex 0x0 / decimal 0 :

  STATUS_WAIT_0                                             ntstatus.h

  ERROR_SUCCESS                                             winerror.h

# The operation completed successfully.

  NO_ERROR                                                  winerror.h

  SEC_E_OK                                                  winerror.h

  S_OK                                                      winerror.h

# 5 matches found for "0"


  Last compiled on Mar 31 2003 14:39:19.

This app has support derived from the following headers and privates:


  adeevent.mc      adoint.h         adserr.h         alert.h        

  allerror.h       appevt.mc        appman.h         arapio.h       

  asferr.h         asn1err.h        asyncpub.h       bitsmsg.h      

  blberr.h         bthdef.h         bugcodes.h       capicom.h      

  cderr.h          cdosyserr.h      ceplog.mc        certlog.mc     

  certmsg.mc       cfgmgr32.h       cierror.h        clusvmsg.h     

  cmdmsg.h         corerror.h       crypt32msg.mc    cryptmsg.mc    

  d3d.h            d3drm.h          d3dx8mesh.h      d3dxerr.h      

  dciddi.h         ddeml.h          ddraw.h          ddrawex.h      

  dhcpssdk.h       dinput.h         dinputd.h        dlcapi.h       

  dmerror.h        docobj.h         dplay.h          dplay8.h       

  dsexcept.h       dsound.h         dvoice.h         dxfile.h       

  dxterror.h       ec.h             ese.h            exitlog.mc     

  fdevents.mc      filterr.h        fltdefs.h        ftsiface.h     

  gpmc_msgs.mc     gpmgmtevents.mc  hidpddi.h        hidpi.h        

  iaapi.h          iiscnfg.h        imapierror.h     ime.h          

  imnact.h         imnxport.h       inetmsg.h        intshcut.h     

  ipexport.h       irtranp.h        esent98.h        kerberr.h      

  lmerr.h          lmerrlog.h       lmsvc.h          lpmapi.h       

  lsapmsgs.mc      lzexpand.h       macfile.h        mapicode.h     

  mapidefs.h       mciavi.h         mdmsg.h          mediaerr.h     

  mimeole.h        mmsystem.h       mobsyncp.h       mprerror.h     

  mq.h             mqoai.h          msaudite.h       msctf.h        

  msiquery.h       msoeapi.h        msxml2.h         nb30.h         

  nddeapi.h        netcfgx.h        netevent.h       netmon.h       

  netsh.h          nserror.h        ntddchgr.h       ntdddisk.h     

  ntdsapi.h        ntdsbmsg.h       ntiologc.h       ntsam.h        

  ntstatus.h       odbcinst.h       ole.h            olectl.h       

  oledberr.h       oledlg.h         patchapi.h       pdhmsg.h       

  penwin.h         pollog.mc        pstore.h         qedit.h        

  qossp.h          raserror.h       reconcil.h       rnderr.h       

  routprot.h       rtcerr.h         scarderr.h       scesvc.h       

  schannel.h       sdperr.h         setupapi.h       shellapi.h     

  snmp.h           sperror.h        sql_err          ssc.h          

  stierr.h         tapi.h           tapi3err.h       tcerror.h      

  textstor.h       tlsdef.h         trk.h            twain.h        

  uevents.mc       upnp.h           upnphost.h       urlmki.h       

  urlmon.h         usb.h            vfw.h            vfwmsgs.h      

  vss.h            vswriter.h       w32timemsg.mc    wbemcli.h      

  wiadef.h         wincrypt.h       winerror.h       winfax.h       

  winhttp.h        wininet.h        winioctl.h       winldap.h      

  winsnmp.h        winsock2.h       winspool.h       wlevents.mc    

  wlevents2.mc     wpaevent.mc      wpscoserr.mc     wsiperr.h      


There are currently 19871 return codes registered from 172 sources.


'Microsoft > Windows Server' 카테고리의 다른 글

영문 OS에 한글 언어팩 설치 방법  (0) 2015.05.12
COM / DCOM / COM+  (0) 2015.05.05
Computer$ 계정  (0) 2015.02.28
Chkdsk 동작 원리  (0) 2015.02.23
Windows Server에서 인식할 수 있는 최대 메모리 사이즈  (0) 2015.02.22