以前用微点好像没这么多误报的情况,最近运行很多访问网络的软件就弹出提示,我已经勾选了智能识别。
还有,对脚本的误报特别严重,我安装Mentor Graphics Expedition Suite V2005.3的时候(程序我已经上传到其中一位管理员告诉我的ftp上了),安装后期需要调用好几个脚本完成配置,但在这个过程中,微点频繁的误报。今天我又安装了这个程序的最新补丁,微点又开始误报,我手忙脚乱的允许也没能安装成功,最后不得不重新启动,关闭微点,这才安装上去了。误报最常见的就是报告说程序试图执行format操作,比如下面的脚本就说format操作,我就奇怪了,下面那里有format操作啊,连个format这个单词都没有,只有一个INFORMATION单词,我不知道微点是根据什么判断的,不会是因为这个单词里面有FORMAT这部分就把它判为试图执行format操作吧?如果是那样的话那我可真是无语了。总体感觉这项判断准确性实在是太差劲了。强烈盼望微点能改善啊。
REM Copyright Mentor Graphics Corporation 2005
REM
REM All Rights Reserved.
REM
REM THIS WORK CONTAINS TRADE SECRET
REM AND PROPRIETARY INFORMATION WHICH IS THE
REM PROPERTY OF MENTOR GRAPHICS
REM CORPORATION OR ITS LICENSORS AND IS
REM SUBJECT TO LICENSE TERMS.
@echo off
REM Use this script to run all the "post_install" scripts needed for the products installed.
REM This script will always be executed at the end of the install.
REM
REM Exit the bat file if the needed parameters are not passed.
if "%1"=="" goto end
if "%2"=="" goto end
REM Make sure we set a new MGC_HOME path for the installed software.
set MGC_HOME=
REM Parse the "New" parameters passed by the MMSI install to the post_install_script.
REM
:GetParams
IF "%1"=="" GOTO Continue
IF "%1"=="-target" set TARGET=%2
IF "%1"=="-msicmd" set MSI_CMD=%2
IF "%1"=="-mgchome" set MGC_HOME=%2
IF "%1"=="-vco" set VCO=%2
SHIFT
SHIFT
GOTO GetParams
:Continue
REM The install directory.
set SDD_ROOTdir=%TARGET%
set RELEASE_VER=2005
set VCO=ixn
if not defined MGC_HOME set MGC_HOME=%TARGET%\MGC_HOME-%RELEASE_VER%.%VCO%
REM For Library Manager installs.
set STANDARDdir=%TARGET%\%RELEASE_VER%\standard
if exist %STANDARDdir%\VBUnits2002.hkp (
if not exist %STANDARDdir%\VBUnits.hkp copy %STANDARDdir%\VBUnits2002.hkp %STANDARDdir%\VBUnits.hkp
)
set POSTINSTALLSCRIPT=%SDD_ROOTdir%\win32\run_post_installs.bat
if exist %POSTINSTALLSCRIPT% cmd /c call %POSTINSTALLSCRIPT% %SDD_ROOTdir% %MSI_CMD%
set POSTINSTALLSCRIPT=%SDD_ROOTdir%\win32\create_empty_dirs.bat
if exist %POSTINSTALLSCRIPT% cmd /c call %POSTINSTALLSCRIPT% %SDD_ROOTdir% %MSI_CMD% %MGC_HOME%
set POSTINSTALLSCRIPT=%SDD_ROOTdir%\win32\create_installdate_keys.bat
if exist %POSTINSTALLSCRIPT% cmd /c call %POSTINSTALLSCRIPT% %SDD_ROOTdir% %MSI_CMD%
REM Check to see if the Configurator has been installed, if so, remove the Add/Remove entry the
REM older version of the Configurator created.
REM
REM First check to make sure a Add/Remove entry exists that should be removed. If it does and the Configurator is being installed
REM in the new tree, remove it. We do not want to create new registry entries by entering empty values to remove
REM the old Configurator ones if its not necessary.
REM
set REGKEYSTR=SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Mentor Graphics SDD 2004
%MSI_CMD% -q "%REGKEYSTR%" DisplayName HKEY_LOCAL_MACHINE | findstr /i /n "Mentor Graphics SDD Product Install" >NUL && (
if exist %SDD_ROOTdir%\win32\configurator.exe (
%MSI_CMD% -s "%REGKEYSTR%" DisplayName REGDB_STRING "" HKEY_LOCAL_MACHINE R
%MSI_CMD% -s "%REGKEYSTR%" UninstallString REGDB_STRING "" HKEY_LOCAL_MACHINE R
echo Done remove old Add/Remove entry.
)
)
REM Remove the invalid/bad registry entries that WG2002 entered for ExpeditionPCB. These entries cause
REM problems with the new WG2004_1 ExpeditionPCB software.
REM
REM First query the registry to see if the old ExpeditionPCB registry entry exists.
REM If it does, blank it out.
REM ---------------
set REGKEYSTR=SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\ExpeditionPCB.exe
%MSI_CMD% -q "%REGKEYSTR%" "" HKEY_LOCAL_MACHINE >NUL
if %ERRORLEVEL% EQU 0 %MSI_CMD% -s "%REGKEYSTR%" "" REGDB_STRING "" HKEY_LOCAL_MACHINE R
%MSI_CMD% -q "%REGKEYSTR%" "Path" HKEY_LOCAL_MACHINE >NUL
if %ERRORLEVEL% EQU 0 %MSI_CMD% -s "%REGKEYSTR%" "Path" REGDB_STRING "" HKEY_LOCAL_MACHINE R
REM ---------------
REM End of WG2002 ExpeditionPCB invalid/bad registry fix.
:end作者: Legend 时间: 2007-10-31 19:42 请楼主将该脚本文件和微点的技术支持文档发到support@micropoint.com.cn,我们根据您的信息具体测试分析。另外楼主所说的提示网络访问的具体都是什么软件,是否能提供我们下载地址,我们具体测试分析,感谢楼主的反馈。作者: yth0 时间: 2007-10-31 19:57 提示网络访问的比如FlashFXP_3.3.4、Adobe Acrobat 8 Professional中文板的更新等等。
那个报format操作的是我在单位的机子安装时报的,今晚在家我直接把微点关了才安装更新,等我明天去单位生成技术支持文档发给你们,脚本就是我上面贴的内容。其实,我感觉和我传到你们ftp上的那个误报是类似的问题,这次是他的升级补丁,最后配置的过程应该是一样的,我上传的那个误报文件分析的怎样了啊?我就是一直不明白他从那里判断有format操作了?作者: Legend 时间: 2007-10-31 20:02 感谢您的反馈,我们会根据您的信息具体测试分析。作者: 风吹散了 时间: 2007-10-31 21:37 要是微点真有那么多误报,那微点就要改进了!作者: yth0 时间: 2007-11-1 19:19 to 管理员:文件已发送,请查收。不知道怎么搞得,用163发了2次都失败了。
to 风吹散了:总体感觉微点还是相当不错的,就是最近这几个奇怪的误报问题搞比较郁闷。有问题了,也想着能尽快让微点知道,好改进的更好啊。^_^作者: yth0 时间: 2007-11-1 19:20 见鬼了啊,管理员,我用msn信箱发送也失败了啊,返回一个鸟文的邮件。怎么回事啊?作者: Legend 时间: 2007-11-1 19:32 建议您更换其它邮箱发送试试看。作者: yth0 时间: 2007-11-1 19:43 用163和hotmail等不行啊,我再没有其他邮箱了。作者: Legend 时间: 2007-11-1 20:03 请问您具体反馈什么信息?作者: yth0 时间: 2007-11-1 20:45 倒,我在1楼说的啊问题啊。你们要我发技术支持文档,我说发不出去了啊。作者: Legend 时间: 2007-11-1 20:52 抱歉,我的意思是问您的邮箱发不出去返回的邮件具体说什么内容?
请重新发送试试看。作者: yth0 时间: 2007-11-1 21:21 管理员,不好意思,可能是我理解错了你的意思。发送的时候说是成功,但不一会,就收到一封信,信的内容如下(没贴全,下面还有好多):
Hi. This is the qmail-send program at mail.micropoint.com.cn.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.