C:Windows中没有exeexplorer.exe无法启动

后使用快捷导航没有帐号?
查看: 6628|回复: 6
威望47 贡献30 性别男在线时间0 小时最后登录帖子精华0阅读权限10注册时间相册
士兵(LV0), 积分 47, 距离下一级还需 3 积分
贡献30 威望47 主题帖子
电脑出问题了,打开我的电脑提示无法找到脚本文件“c:\windows\explorer.exe:.vbs”,而且每个盘的文件夹的属性都变成了快捷方式,每个盘还多出了一个$Recycle.Bin这个文件夹,尤其是e盘还多了SystemVolumeInformation、vod_cache_data这两个文件夹。我是打开了一个u盘之后就变成这样的,每个文件夹都被改成属性-目标-E:\.vbs"E:\$RECYCLE.BIN\Dir"之类。请问各位高手,怎么才能灭了这个病毒,我用卡巴斯基查过了,没用。着急啊!!!!\r\n问题补充:重装后还要手动删除?怎么删?
威望68 贡献37 性别男在线时间0 小时最后登录帖子精华0阅读权限10注册时间相册
士长(LV1), 积分 68, 距离下一级还需 32 积分
贡献37 威望68 主题帖子
机子中病毒了
现在这个东西没有更好的解决办法
只能重装系统后手动删除
威望56 贡献38 性别男在线时间0 小时最后登录帖子精华0阅读权限10注册时间相册
士长(LV1), 积分 56, 距离下一级还需 44 积分
贡献38 威望56 主题帖子
误删请重装系统或修复系统即插入驱动盘
威望53 贡献66 性别男在线时间0 小时最后登录帖子精华0阅读权限10注册时间相册
士长(LV1), 积分 53, 距离下一级还需 47 积分
贡献66 威望53 主题帖子
explorer.exe。。。。一看就明白是病毒了哦
你打开那个该死的U盘的时候没有开着防火墙之类的吗?
到安全模式下杀毒试试吧
不行就搜索专杀一起杀
再不行只能重新装
不过。。。其他盘貌似也被感染了
你只重装C盘不及还不够。。。
威望52 贡献69 性别男在线时间5 小时最后登录帖子精华0阅读权限1注册时间相册
头像被屏蔽
贡献69 威望52 主题帖子
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
威望57 贡献254 性别男在线时间0 小时最后登录帖子精华0阅读权限10注册时间相册
士长(LV1), 积分 57, 距离下一级还需 43 积分
贡献254 威望57 主题帖子
威望1 贡献1 性别保密在线时间0 小时最后登录帖子精华0阅读权限10注册时间相册
士兵(LV0), 积分 1, 距离下一级还需 49 积分
贡献1 威望1 主题帖子
在运行框里,输入regedit,打开注册表编辑器
在编辑功能里点击查找,并输入RegEdit,后点击查找下一个
然后,再在编辑功能里点击查找,并输入C:\Windows\explorer.exe:.vbs,后点击查找下一个
找到带有“C:\Windows\explorer.exe:.vbs”的键值,并把其中的“C:\Windows\explorer.exe:.vbs”改为“C:\Windows\explorer.exe“
希望对你有帮助
Powered bybatch file - Restarting explorer.exe only opens an explorer window - Stack Overflow
to customize your list.
Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.
J it only takes a minute:
Join the Stack Overflow community to:
Ask programming questions
Answer and help your peers
Get recognized for your expertise
The Problem
In one part of a batch file (kind of, see Extra Information) I need to restart
Explorer, so I use the, tried-and-tested method of
taskkill /f /im explorer.exe &nul
explorer.exe
Then this happens
explorer.exe is successfully terminated
explorer.exe is started (see Image 2), but only an
Explorer window opens, which I am left with indefinitely (see Image 1)
I can then only properly restart Explorer by starting a new task from Task
Manager, as, I'm assuming, Win + R is part of Explorer.
Extra Information
Now, I say "kind of" as I'm running the batch file from a self-executing SFX
archive, created with WinRAR. So, when executed, the contents of the archive are
extracted to %temp% and a user-defined file (usually a boot-strapper and, in
this case, my batch file) is run upon successful extraction.
So far, I've deduced
explorer.exe definitely is being fully killed.
The batch file definitely is called and executed correctly, as it runs and
everything else in the script works as designed, except for the line that
starts explorer.exe
The command to restart Explorer isn't "badly timed", or anything, as I've
tried delaying it.
The batch file works perfectly when manually extracted from the archive, so
it's not a problem with the compression or extraction processes.
Even with commands like start explorer.exe | cmd.exe Explorer doesn't
restart properly, so it's definitely not a problem with the .bat file.
I can confirm that it works on Windows XP and Windows 7 x86 but not Windows 7
x64 (which is my system).
At the moment, I'm suspicious of WinRAR, as I've proved that the code itself
works. So, I'm creating the self-executing SFX with different versions of
WinRAR. So far, I've tried versions:
4.20b3 x86
4.20b3 x64
and had the same results every time.
I submitted a bug report to
yesterday and got a reply from
Eugene Roshal himself this morning
SFX module uses ShellExecuteEx to start a setup application.
Normally it works well. I do not know why Explorer decides to switch
to windowed mode.
Now I built a small standalone program
#include &windows.h&
void main()
SHELLEXECUTEINFO
memset(&si,0,sizeof(si));
si.cbSize=sizeof(si);
si.lpFile="test.bat";
si.nShow=SW_SHOWNORMAL;
ShellExecuteEx(&si);
which runs test.bat with contents as in your sample. This program
shows exactly the same behavior as WinRAR SFX, so Explorer is started
in window.
and a second email this morning
Sorry, no advice now. I replaced ShellExecuteEx with CreateProcess
#include &windows.h&
void main()
STARTUPINFO
PROCESS_INFORMATION
memset(&si,0,sizeof(si));
si.cb=sizeof(si);
CreateProcess(NULL,"test.bat",NULL,NULL,TRUE,0,NULL,NULL,&si,&pi);
but result is the same. I tried to use other SW_ flags like
SW_SHOWDEFAULT or SW_RESTORE with ShellExecuteEx also as "open"
and "explore" lpVerb, but it does not help. For now I do not
understand the logic behind this windowed versus desktop mode.
I realise the outlook is grim but, I hope that's of help to someone..
Proof / Evidence
Link to an SFX archive demonstrating this, if anyone wants it:
You may notice here that I'm running the commands inside a VM (as denoted by
VMwareTray.exe) but it is not a VM-caused conflict. I've tested the exact same
files on my own host system (which is the same OS) and have had the same
I'm experiencing similar "works outside of an SFX archive but not from one"
problems when using REG&ADD in a completely different project.
I just don't think SFX archives play nice with batch files.
This works in Windows 7:
taskkill /f /IM explorer.exe
start explorer.exe
6,01311424
I think user1631170 is on to something, "I wonder if some part of Win-RAR is running in 32-bit mode? Could you even start explorer64 running from a 32-bit process? I am pretty certain that Windows won't do that."
When I start explorer.exe from ProcessHacker (32-bit process manager), I get an explorer window.
But I can force it to start the 64-bit explorer with this:
%systemroot%\sysnative\cmd.exe /c start /B explorer.exe
sysnative is a keyword that Windows recognizes to bypass the file system redirection for 32-bit/64-bit (
I had this same problem and found that all the solutions here still didn't work from a batch script.
None of these worked completely:
start explorer.exe
start explorer
explorer.exe
because they all either opened a window (and didn't show the taskbar again), or the batch script then hung thereafter and couldn't execute any more commands
I found that this line in the batch file did work (after killing explorer.exe):
start "" "C:\Windows\explorer.exe"
and also allowed other commands to be executed after it in the script
%windir%\explorer.exe
start %windir%\explorer.exe
start /d%windir% explorer.exe
I have seen similar problems before doing this in C#. The process had to be invoked by calling explorer shell rather than explorer window, but I haven't had any problems in batch.
Try using this:
taskkill /im explorer.exe /f
The difference between the other answers being explorer rather than explorer.exe which has caused problems before for me.
This works on my Win7 x64 PC.
Hope this helps!
16.7k2374109
The other day, I was having a look through some of WinRAR's more advanced options and came across this tab:
As soon as I saw that I suspected it to be part of the problem and solution, as this issue only ever occurs on Windows 7 x64.
As suspected, using the Default64.SFX module instead of the default Default.SFX module entirely fixed the issue. Finally.
Have same issue with Visual Studio.
What works for me (Win 7 Pro 64bit):
PPM on Project name select "Properties"
Configuration Properties > Build Events > Pre-Build Event
taskkill /im explorer.exe /f
Configuration Properties > Build Events > Post-Build Event
start "" "C:\Windows\explorer.exe"
But this make other problem (the IDE is frozen after the explorer runs) and now I'm only able to restart the IDE to run build command again...
Just right-click on the desktop and choose Restart Windows Explorer. Enjoy!
Your Answer
Sign up or
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Post as a guest
By posting your answer, you agree to the
Not the answer you're looking for?
Browse other questions tagged
Stack Overflow works best with JavaScript enabledexplorer.exe
What is explorer.exe?
Windows Process Description:
The process explorer.exe is a commonly used process in all Microsoft Windows Operating Systems. The process explorer.exe is popularly known as Windows Explorer. Windows Explorer is basically used to browse files and folders in Microsoft Windows. Upon execution of the explorer.exe file, an application window is launched and allows the user to navigate the contents of folders and view file information.
The file explorer.exe is located in folder C:\ Windows or sometimes in a subfolder of C:\. It has a known file size ranging from 1, bytes to 3,194,368 bytes. The process explorer.exe is a vital Windows core system file that initializes a visible window for browsing the system’s folders and files. It is a trusted Microsoft application that records user inputs.
Duplicates of the explorer.exe file has been a constant target for different malware which were usually located in the system32 subdirectory of the Windows folder. These malicious files are usually added to the Windows start up by certain spywares and should be removed immediately from the system. These illigitimate explorer.exe files are not needed by the Windows system and usually causes harms your system if not attended immediately.
The process explorer.exe or Windows Explorer is an application that is a part of late versions ot the Microft Windows operating system that runs as the main window for the Windows operating system. The process explorer.exe provides a graphical user interface for browsing file systems. The process explorer.exe file displays the user interface on the display screen that enables the user to utilize the computer’s functions. It also referred as Windows GUI shell or simply Explorer.
The file explorer.exe was developed by Microsoft Corporation for its Microsoft Windows Operating System. It started with the release of Windows 95 introduced the browsing mode where each folder would open a window that shows its contents in a spatial file manager style. Microsoft Corporation’s release of its Microsoft Vista Operating System gave Windows Explorer a new look through new layouts and costumizable features that enables the user to navigate the system with ease.
Microsoft Corporation
Author URL:
Microsoft Windows Operating System
Memory Usage:
Medium. The dlg.exe uses 1,032,192 bytes worth of RAM resources.
System Process:
Application:
Background Process:
Uses Network:
Uses Internet:
Hardware Related:
Common Path:
C:\WINDOWS\Windows errors related to explorer.exe?
The explorer.exe file is an executable file for Windows Explorer.
In the Microsoft Windows operating system, the explorer.exe file runs and has a graphical user interface that you can see when you are opening hard drives or files. Sometimes, the graphical user interface of the explorer.exe file is referred to as Windows GUI shell or Explorer. The explorer.exe file was created to replace the Windows 3.x File Manager, which is the older version of the application embedded on previous versions of the MS Windows environment. The explorer.exe file is executed when the user double-clicks on the My Computer desktop icon and the one found in the Start menu.
The explorer.exe file was initially used only to navigate or browse files, but as newer versions of Windows were released, it evolved to being a file management system that is task-based.We strongly recommend that you
to identify explorer.exe related errors.Other instances of EXPLORER.EXE:1) explorer.exe is a process which is registered as a trojan.
This Trojan allows attackers to access your computer from remote locations, stealing passwords, Internet banking and personal data.
This process is a security risk and should be removed from your system.
.Warning: Multiple instances of
EXPLORER may be running on your pc at one time. Some of these may or may not be the legitimate versions.
Recommendation
explorer.exe should not be disabled, required for essential applications to work properly. It is highly recommended that you
to automatically optimize memory, CPU and Internet settings.
Damage to your computer's registry could be compromising your PC's performance and causing system slow-downs and crashes. We recommend that you
to identify and list harmful registry entries on your computer.
Removal and security
Fix explorer.exe errors:
Boost performance:
Security risk 0-5:
Virus:No ()
Trojan:No ()
Free system scan
Select your operating system:
System process:
Uses network:
Background:Yes
Hardware related:
Browse Top System Processes
Copyright & Uniblue Systems Limited 2007. All rights reserved.

我要回帖

更多关于 explorer.exe下载 的文章

 

随机推荐