cad2014功能区一点就闪退
我找了几个小时,CAD装了卸,卸了装,反反复复终于找到解决办法了,本人亲测有用。
异常情况描述:
对于AutoCAD 2014闪退,常出现于W10系统中,官方指出Win10不支持AutoCAD 2014,闪退是由于Win10升级安装了The .NET Framework 4.7导致的。
解决方法步骤:
解决方案:用记事本修改程序文件夹下的acad.exe.config文件,将文件内容改为下图所示即可:
我是一个个敲上去的,如果复制粘贴看一下,要和图中的一样:把代码附上,
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>
<!--All assemblies in AutoCAD are fully trusted so there's no point generating publisher evidence-->
<runtime>
<generatePublisherEvidence enabled="false"/>
<AppContextSwithcOverrides
value="Swithch.System.Windows.Input.Stylus.DisableStylusAndTouchSupport=true"/>
</runtime>
</configuration>
2017-07-07
1、操作系统问题:存在漏洞或bug,可通过修复漏洞或重装系统来解决;
2、软件兼容性问题:有些软件有系统要求或环境要求,比如系统要是32或64位、dot net要哪个版本、jre需要哪个版本等等,这个问题只要参照软件说明设置就可以解决;
3、软件bug:软件有bug,此问题只能默哀了,只能期待软件开发商早点修复了。
4、硬件故障:维修或更换;
5、内存不足:内存空间溢出,关闭一些程序,或加大内存。
希望能帮助到你!
<!--All assemblies in AutoCAD are fully trusted so there's no point generating publisher evidence-->
<runtime>
<generatePublisherEvidence enabled="false"/>
<AppContextSwitchOverrides value="Switch.System.Windows.Input.Stylus.DisableStylusAndTouchSupport=true"/>
</runtime>