<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>专杀 _ 扒房网</title>
	<atom:link href="https://www.gxjlyf.com/tag/17616/feed" rel="self" type="application/rss+xml" />
	<link>https://www.gxjlyf.com</link>
	<description>手机系统教程_手机软件教程_手机app使用教程_电脑软件教程_电脑系统教程</description>
	<lastBuildDate>Sat, 03 Dec 2022 03:59:59 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>今天分享如何在Win7环境下彻底清除VBS病毒</title>
		<link>https://www.gxjlyf.com/890055.html</link>
		
		<dc:creator><![CDATA[bafang18]]></dc:creator>
		<pubDate>Sat, 03 Dec 2022 03:59:59 +0000</pubDate>
				<category><![CDATA[PC教程]]></category>
		<category><![CDATA[专杀]]></category>
		<category><![CDATA[病毒]]></category>
		<guid isPermaLink="false">https://www.chuwenyu.com/890055.html</guid>

					<description><![CDATA[说起VBS病毒，可能很多用户并不了解，但说起1kb快捷方式病毒，用户一定有所耳闻，甚至亲身经历，这种1KB快捷 ...]]></description>
										<content:encoded><![CDATA[<p>说起VBS病毒，可能很多用户并不了解，但说起1kb快捷方式病毒，用户一定有所耳闻，甚至亲身经历，这种1KB快捷方式病毒有一个名称叫：暴风一号。TA可以通过U盘、MP4/MP5之类的可移动存储设备传播的，可能对移动设备没有什么太大的影响，但若是该移动设备插进计算机，那杀伤力还是很大的。阅读下文了解<strong>Win7环境下VBS脚本病毒专杀教程</strong>。</p>
<p><img decoding="async" alt="如何在Win7环境下彻底清除VBS病毒？VBS脚本病毒专杀教程" src="https://dz.cwhello.com/wp-content/uploads/2022/12/20221203035958-638ac9be15ed7.jpg" /></p>
<p><strong>VBS病毒的能做什么？</strong></p>
<p>在显示隐藏文件和扩展名的情况下，U盘和我的电脑各盘符下多了文件Autorun.inf和*.VBS（名字为8位数字的VBS文件）根文件夹下的所有文件夹都变成了两份，一份是隐藏方式，另一份其实是快捷方式。有时系统的显示隐藏文件都会失效，无法完全显示病毒文件（但是可以通过winrar的文件浏览看到），如果不能完全查杀的话，杀毒之后留下后遗症，也就是我的电脑无法打开、磁盘无法打开、只能用任务管理器。有些用户说&ldquo;我的电脑&rdquo;打不开了，就是这个原因。</p>
<p><strong>如何对付VBS病毒？</strong></p>
<p>1、首先点开始菜单，然后点&ldquo;运行&rdquo;；没有运行指令的话，直接按键盘上的开始按键+ E；</p>
<p>2、然后输入：</p>
<p>reg add HKCRbatfileshellopencommand /ve /d &quot;&quot;%1&quot; %*&quot; /f</p>
<p><img decoding="async" alt="如何在Win7环境下彻底清除VBS病毒？VBS脚本病毒专杀教程" src="https://dz.cwhello.com/wp-content/uploads/2022/12/20221203035958-638ac9be37064.jpg" /></p>
<p>3、怕输错的直接复制粘贴过去也一样；</p>
<p>4、然后在桌面上新建一个文本文档，之后复制粘贴以下内容：</p>
<p>@echo offmode con cols=53 lines=30echo.echo         U盘病毒*.VBS专杀echo.echo  正在杀毒，请稍候。。。echo.start /min taskkill /im explorer.exe /fstart /min taskkill /im wscript.exe /fif exist %systemRoot%*.vbs del /a /q /f %systemRoot%*.vbs &amp; echo  发现VBS病毒！if exist %systemRoot%system32*.vbs del /a /q /f %systemRoot%system32*.vbsecho  执行清理中。。。echo.echo  查找各盘符下的病毒文件并删除，修复文件夹显示for %%i in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do if exist %%i:* cd /d %%i: &amp;&amp; dir /a:d /b &gt;list.txt &amp; if exist *.inf del /a /q /f *.inf &amp; if exist *.vbs del /a /q /f *.vbs &amp; for /f &quot;tokens=*&quot; %%j in (list.txt) do attrib -s -h &quot;%%j&quot; &amp; if exist %%j.lnk del /F /q %%j.lnkfor %%k in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do if exist %%k:list.txt del %%k:list.txtecho.echo  病毒清理完毕，执行修复工作。。。echo.echo   删除病毒启动键start /min reg delete HKLMSoftwareMicrosoftWindows NTCurrentVersionWindows /v load /fecho   修复IE打开方式start /min reg add HKCRApplicationsiexplore.exeshellopencommand /ve /d &quot;&quot;C:Program FilesInternet ExplorerIEXPLORE.EXE&quot; %1&quot; /fstart /min reg add HKCRCLSID{871C5380-42A0-1069-A2EA-08002B30309D}shellOpenHomePageCommand /ve /d &quot;&quot;C:Program FilesInternet Exploreriexplore.exe&quot;&quot; /fstart /min reg add HKLMSOFTWAREClassesCLSID{871C5380-42A0-1069-A2EA-08002B30309D}shellOpenHomePageCommand /ve /d &quot;&quot;C:Program FilesInternet Exploreriexplore.exe&quot;&quot; /fecho   修复文件打开方式start /min reg add HKCRbatfileshellopencommand /ve /d &quot;&quot;%1&quot; %*&quot; /fstart /min reg add HKCRcmdfileshellopencommand /ve /d &quot;&quot;%1&quot; %*&quot; /fstart /min reg add HKCRhlpfileshellopencommand /ve /d &quot;winhlp32.exe %1&quot; /fstart /min reg add HKCRinffileshellopencommand /ve /d &quot;NOTEPAD.EXE %1&quot; /fstart /min reg add HKCRinifileshellopencommand /ve /d &quot;NOTEPAD.EXE %1&quot; /fstart /min reg add HKCRregfileshellopencommand /ve /d &quot;regedit.exe %1&quot; /fstart /min reg add HKCRtxtfileshellopencommand /ve /d &quot;NOTEPAD.EXE %1&quot; /fstart /min reg add HKLMSOFTWAREClassescmdfileshellopencommand /ve /d &quot;&quot;%1&quot; %*&quot; /fstart /min reg add HKLMSOFTWAREClasseshlpfileshellopencommand /ve /d &quot;winhlp32.exe %1&quot; /fstart /min reg add HKLMSOFTWAREClassesinffileshellopencommand /ve /d &quot;NOTEPAD.EXE %1&quot; /fstart /min reg add HKLMSOFTWAREClassesinifileshellopencommand /ve /d &quot;NOTEPAD.EXE %1&quot; /fstart /min reg add HKLMSOFTWAREClassesregfileshellopencommand /ve /d &quot;regedit.exe %1&quot; /fstart /min reg add HKLMSOFTWAREClassestxtfileshellopencommand /ve /d &quot;NOTEPAD.EXE %1&quot; /f::修复&quot;我的电脑&quot;打开方式(没办法，类ID好像不统一，只好费劲找找了)echo   废除系统自动运行start /min reg add HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer /v NoDriveTypeAutoRun /t REG_DWORD /d 0x9D /fecho   显示隐藏文件及文件扩展名start /min reg add HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced /v Hidden /t REG_DWORD /d 0x1 /fstart /min reg add HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced /v SuperHidden /t REG_DWORD /d 0x0 /fstart /min reg add HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced /v ShowSuperHidden /t REG_DWORD /d 0x1 /fstart /min reg add HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced /v HideFileExt /t REG_DWORD /d 0x0 /fstart /min reg add HKLMSOFTWAREMicrosoftWindowsCurrentVersionExplorerAdvancedFolderHiddenSHOWALL /v CheckedValue /t REG_DWORD /d 0x1 /fstart /min reg add HKLMSOFTWAREMicrosoftWindowsCurrentVersionExplorerAdvancedFolderHiddenNOHIDDEN /v CheckedValue /t REG_DWORD /d 0x2 /fecho   修复&quot;我的电脑&quot;打开方式start /min /wait reg export HKCRclsid c:classID.regtype c:classID.reg &gt; c:classID.txtdel /q c:classID.regfor /f &quot;eol=@ tokens=3,4* delims=&quot; %%i in (c:classID.txt) do if /i %%k==explorecommand] start /min reg export HKCRclsid%%ishellopencommand backup1.reg &amp; start /min reg add HKCRclsid%%ishellopencommand /ve /d &quot;%SystemRoot%Explorer.exe /idlist,%I,%L&quot; /f &amp; start /min reg export HKCRclsid%%ishellexplorecommand backup2.reg &amp; start /min reg add HKCRclsid%%ishellexplorecommand /ve /d &quot;%SystemRoot%Explorer.exe /e,/idlist,%I,%L&quot; /f &amp; start /min reg export HKLMSOFTWAREClassesclsid%%ishellopencommand backup3.reg &amp; start /min reg add HKLMSOFTWAREClassesclsid%%ishellopencommand /ve /d &quot;%SystemRoot%Explorer.exe /idlist,%I,%L&quot; /f &amp; start /min reg export HKLMSOFTWAREClassesclsid%%ishellexplorecommand backup4.reg &amp; start /min reg add HKLMSOFTWAREClassesclsid%%ishellexplorecommand /ve /d &quot;%SystemRoot%Explorer.exe /e,/idlist,%I,%L&quot; /fdel /q c:classID.txtecho.echo  修复完毕,重启Explorer.exestart explorer.exeecho.echo  查杀完毕echo.@pause</p>
<p>5、保存之后，将txt文件后缀名改为.bat，运行之后等待查杀完成，然后重启一下计算机。</p>
<p><img decoding="async" alt="如何在Win7环境下彻底清除VBS病毒？VBS脚本病毒专杀教程" src="https://dz.cwhello.com/wp-content/uploads/2022/12/20221203035958-638ac9be52705.jpg" /></p>
<p>以上便是Win7环境下VBS脚本病毒专杀教程，用户如果发觉计算机中了VBS病毒，要在第一时间拔下网线，并进入安全模式，通过另一台计算机或手机寻找这篇教程，运行命令即可。</p>

<p><img src="https://www.gxjlyf.com/postviews/890055.png" /></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
