无论如何关闭所有资源管理器窗口而不重启explorer.exe进程?
上下文: - 在卸载基于installshield的安装程序时,我必须删除一个dll,用于显示文件的右键单击上下文菜单。在卸载期间,我不得不删除dll。不幸的是它被explorer.exe锁定了。
无论如何只关闭资源管理器窗口而不重启explorer.exe进程?
答案 0 :(得分:0)
我确信您可以调用FindWindow并使用SendMessage关闭资源管理器窗口,但explorer.exe进程仍将运行,您仍然会有文件锁定。
Windows Installer可以在重新启动时删除锁定的文件。如果您不想重新启动,则必须终止并重新启动资源管理器。
我知道这里没有其他模式。
答案 1 :(得分:0)
这里我使用EnumWindows并遍历所有窗口并根据窗口的类名单独关闭资源管理器窗口。
#include "stdafx.h"
#include <iostream>
#include <fstream>
using namespace std;
wofstream myfile;
BOOL CALLBACK enumWindowsProc(
__in HWND hWnd,
__in LPARAM lParam
) {
int length = 255;
TCHAR* buffer,*buffer1;
buffer = new TCHAR[ length + 1 ];
buffer1 = new TCHAR[ length + 1 ];
memset( buffer, 0, ( length + 1 ) * sizeof( TCHAR ) );
memset( buffer1, 0, ( length + 1 ) * sizeof( TCHAR ) );
DWORD pid;
DWORD dwThreadID = ::GetWindowThreadProcessId( hWnd, &pid);
::GetWindowText(hWnd,buffer,length +1);
wstring windowTitle = wstring( buffer );
delete[] buffer;
//cout << windowTitle.c_str();
::GetClassName(hWnd,buffer1,length +1);
wstring windowClass = wstring( buffer1 );
delete[] buffer1;
if(windowClass.compare(L"CabinetWClass") == 0 || windowClass.compare(L"ExploreWClass") == 0)
{
//::PostMessage(hWnd, WM_ENDSESSION, MAKEWORD(true,1), ENDSESSION_CLOSEAPP);
//::PostMessage(hWnd, 0x5B4, 0, 0);
PostMessage(hWnd,WM_CLOSE,0,0);
}
myfile << windowTitle.c_str();
myfile << L"|" ;
myfile << pid ;
myfile << L"|" ;
myfile << windowClass.c_str() ;
myfile << L"\n" ;
return TRUE;
}
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
myfile.open ("processes.txt");
BOOL enumeratingWindowsSucceeded = ::EnumWindows( enumWindowsProc, NULL );
cin.get();
myfile.close();
return 0;
}