Host information from a crash dump file

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-11 09:48:58

问题


Is it possible to get information about the host where a dump file was been created e.g., OS version, service pack, .NET framework version etc.


回答1:


OS version and so forth is listed automatically when you open the dump file.

You can get the .NET framework version using the !eeversion command.

0:000> !eeversion
2.0.50727.4952 free
Workstation mode
SOS Version: 2.0.50727.4952 retail build

To get additional information for loaded modules use the verbose option for lm. E.g.

0:000> lm vm mscoree
start             end                 module name
000007fe`f0f10000 000007fe`f0f7f000   mscoree    (deferred)             
    Image path: C:\Windows\System32\mscoree.dll
    Image name: mscoree.dll
    Timestamp:        Fri Nov 06 06:09:26 2009 (4AF3AF86)
    CheckSum:         00072187
    ImageSize:        0006F000
    File version:     4.0.31106.0
    Product version:  4.0.31106.0
    File flags:       8 (Mask 3F) Private
    File OS:          4 Unknown Win32
    File type:        2.0 Dll
    File date:        00000000.00000000
    Translations:     0409.04b0
    CompanyName:      Microsoft Corporation
    ProductName:      Microsoft® .NET Framework
    InternalName:     mscoree.dll
    OriginalFilename: mscoree.dll
    ProductVersion:   4.0.31106.0
    FileVersion:      4.0.31106.0 (Main.031106-0000)
    PrivateBuild:     DDBLD278
    FileDescription:  Microsoft .NET Runtime Execution Engine
    LegalCopyright:   © Microsoft Corporation.  All rights reserved.
    Comments:         Flavor=Retail



回答2:


Also the vertarget command displays current version of the Microsoft Windows operating. system



来源:https://stackoverflow.com/questions/4173312/host-information-from-a-crash-dump-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!