Installscript:如何在不重启explorer.exe进程的情况下关闭资源管理器窗口?

时间:2013-07-19 11:53:24

标签: windows installshield explorer installscript

无论如何关闭所有资源管理器窗口而不重启explorer.exe进程?

上下文: - 在卸载基于installshield的安装程序时,我必须删除一个dll,用于显示文件的右键单击上下文菜单。在卸载期间,我不得不删除dll。不幸的是它被explorer.exe锁定了。

无论如何只关闭资源管理器窗口而不重启explorer.exe进程?

2 个答案:

答案 0 :(得分:0)

我确信您可以调用FindWindow并使用SendMessage关闭资源管理器窗口,但explorer.exe进程仍将运行,您仍然会有文件锁定。

Windows Installer可以在重新启动时删除锁定的文件。如果您不想重新启动,则必须终止并重新启动资源管理器。

我知道这里没有其他模式。

FindWindow Example

WM_SYSCOMMAND message

答案 1 :(得分:0)

在搜索了这么多和很多小道之后,我可以想出以下c ++程序,该程序只关闭资源管理器窗口而无需重新启动explorer.exe进程。

这里我使用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;
}