首页 > 其他分享 >depends.exe在x64下使用卡的问题

depends.exe在x64下使用卡的问题

时间:2024-09-13 09:04:41浏览次数:1  
标签:exe modules x64 module Dependency depends program

If depends.exe (Dependency Walker) Hangs

Dependency Walker is probably the best util that builds a hierarchical tree diagram of all dependent modules of windows .exe or .dll files. It can be useful for debugging, troubleshooting, or optimizing your applications. It also shows you all the functions that are exported and imported by each module, and which ones are actually used by other modules.

Dependency Walker supports various types of module dependencies, such as implicit, explicit, dynamic, delay-load, and side-by-side. It can also detect many common application problems, such as missing modules, invalid modules, circular dependency errors, mismatched machine types of modules, and module initialization failures.

To fix the problem of the program hanging, you need to adjust the module search order settings. Here are the steps to do that:

  • Open the program as usual, but don’t perform any other actions yet.
  • Go to the “Options” menu and select “Configure Module Search Order”.
  • If the view is too cluttered, click on the “Expand” button to collapse the details.
  • Use the “«” button to remove all the items from the module search order list, except for two: the system’s “KnownDLLs” list and the application directory. These are the only ones you need for the program to work properly.
  • Click on “OK” to save the changes and exit the menu.

image-20230621152041583

Now you can use the program without any issues. Hope this helps!

 

标签:exe,modules,x64,module,Dependency,depends,program
From: https://www.cnblogs.com/unicornsir/p/18411528

相关文章

  • 和平精英游戏启动错误?和平精英_323393.exe找不到入口的终极解决方案
    针对“和平精英游戏启动错误?和平精英_323393.exe找不到入口”的问题,这里提供一套终极解决方案,旨在帮助玩家快速定位问题根源并修复,从而恢复游戏的正常运行。终极解决方案1.检查系统文件完整性使用系统文件检查器(SFC):打开命令提示符(以管理员身份运行),输入sfc/scannow命令并......
  • Java Executors类的9种创建线程池的方法及应用场景分析
    在Java中,Executors类提供了多种静态工厂方法来创建不同类型的线程池。在学习线程池的过程中,一定避不开Executors类,掌握这个类的使用、原理、使用场景,对于实际项目开发时,运用自如,以下是一些常用的方法,一一细说:newCachedThreadPool():创建一个可缓存的线程池,如果线程池中的......
  • HEXDUMP.EXE 是一个常用的工具,用于查看和显示二进制文件的内容,以十六进制格式呈现。它
    HEXDUMP.EXE是一种早期的计算机程序,用于显示文件的十六进制表示。其起源可以追溯到早期的计算机系统,特别是在UNIX操作系统中。最早的hexdump工具出现在UNIX系统中,它允许用户以十六进制和ASCII格式查看文件内容。这个工具在许多操作系统和编程环境中都得到了实现和扩展,以......
  • Python中如何将图片资源打包进exe文件
    目录一、安装PyInstaller二、准备图片资源三、修改图片资源的引用方式1.使用Base64编码2.修改资源路径的引用1.打包命令2.打包后的文件3.运行exe文件五、案例与测试六、总结在Python开发中,经常需要将图片等资源文件与Python脚本一起打包成独立的可执行文件(ex......
  • 在不同目录中的py文件,使用pyinstaller打包exe时,该如何设置才能打包正确
    在使用 pyinstaller 打包Python应用程序为单个可执行文件(.exe)时,如果你的项目包含位于不同目录中的Python文件(模块或包),你需要确保 pyinstaller 能够正确地找到并包含这些依赖文件。这通常通过以下几种方式实现:1.使用 -p 或 --paths 选项指定额外的搜索路径如果你的......
  • python打包成exe
    要将Python代码打包成exe文件,可以使用PyInstaller工具。以下是使用PyInstaller打包Python代码为exe的基本步骤:安装PyInstaller: pipinstallpyinstaller使用PyInstaller打包Python脚本: pyinstaller--onefileyour_script.py这里的your_script.py是你要打包的P......
  • BUG: pymysql executemany不支持insert on duplicate key update
    pymysql的executemany()方法支持传入单个SQL和一个sequenceofrecords(sequenceormapping)来同时写入多条数据。例如:sql="insertintot(c1,c2)values(%s,%s)"args=[(1,2),(3,4)]cursor.executemany(sql,args)#Ifargsisalistortuple,%scanbeusedas......
  • 【TVM 教程】在 Relay 中使用 Pipeline Executor
    ApacheTVM是一个端到端的深度学习编译框架,适用于CPU、GPU和各种机器学习加速芯片。更多TVM中文文档可访问→ApacheTVM中文站​tvm.hyper.ai/作者:HuaJiang本教程介绍如何将「PipelineExecutor」与Relay配合使用。importtvmfromtvmimportteimportnumpyasn......
  • 记录一次【截止目前最新版本MySql安装教程】MySql-9.0.1-winx64
    本次记录是目前最新版本9.0.1的安装记录,跟之前版本还是有区别的MySQL社区版下载地址:https://dev.mysql.com/downloads/mysql/安装整体步骤如下:下载MySQL版本;配置环境变量也可以不配置配置安装配置文件my.ini执行安装命令mysqld--install创建随机密码mysqld--initialize--con......
  • C# process =An error occurred trying to start process with working directory The
    usingSystem.Diagnostics;//Seehttps://aka.ms/new-console-templateformoreinformationConsole.WriteLine("Hello,World!");stringpath=@"..\..\..\Image";stringfullPath=System.IO.Path.GetFullPath(path);varimgsList=System......