打开excel时会同时出现一个startup.xls文件,怎么处理掉?

一开始是中了宏病毒·上网查了杀毒方法后就出现了这个问题
2024-12-03 21:20:03
推荐回答(3个)
回答1:

StartUp.xls宏病毒现象。

StartUp.xls宏病毒清除方法:

第一步:清除C:\Documents and Settings\administrator\Application Data\Microsoft\Excel\XLSTART下的StartUp.xls;

第二步:清除C:\Documents and Settings\administrator\Application Data\Microsoft\Excel\的Excel11.exe(约236K),Excel程序会自建该文件。

第三步:新建\Documents and Settings\administrator\Application Data\Microsoft\Excel\XLSTART\startup.xls文件,输入以下代码就行了,以后再打开带毒的excel文件就会自动清除excel文件自带的病毒宏代码了

Sub auto_open()
On Error Resume Next
Application.ScreenUpdating = False
ActiveWindow.Visible = False
n$ = ActiveWorkbook.Name
Workbooks(n$).Close (False)
Application.OnSheetActivate = "StartUp.xls!cop"
End Sub
Sub cop()
On Error Resume Next
Dim VBC As Object
Dim Name As String
Dim delComponent As VBComponent
Name = "StartUp"
For Each book In Workbooks
Set delComponent = book.VBProject.VBComponents(Name)
book.VBProject.VBComponents.Remove delComponent
Next
End Sub

回答2:

excel 2003 情况:
删除文件夹C:\Documents and Settings\Administrator\Application Data\Microsoft\Excel\XLSTART
下所有的文件即可.

回答3:

在你的电脑上搜索这个文件,然后删除即可。