About 52,500 results
Open links in new tab
  1. Restarting explorer.exe only opens an explorer window

    Jun 9, 2012 · 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 …

  2. Start explorer.exe remotely with a path specified in Powershell

    Feb 10, 2017 · Invoke-Command -ScriptBlock {C:\Windows\explorer.exe "C:\folder"} But the problem, is how powershell will open a GUI console invoked from the remote system. …

  3. Cannot start "explorer.exe" on remote server - Stack Overflow

    Jul 30, 2015 · It could be a HKEY problem, that wont let the explorer.exe start, virus or something. Save everything and try restart that computer that host. If can you can do that.

  4. How to programmatically restart windows explorer process

    Jan 21, 2019 · I'm working on a windows shell extension, and unfortunately, when making changes to the DLL, I must restart windows explorer (since it keeps the DLL in memory). I …

  5. What's the cleanest way to programmatically kill and restart …

    May 14, 2010 · 3 Greetings all, I'm working on a Windows program whose installation necessitates restarting explorer.exe. I know "Reboot your computer to complete the …

  6. Batch to open & restart Explorer.exe & then restore all the windows

    May 6, 2020 · For now I have this batch file, which close explorer.exe, wait one second and then open it again (it does its job): @echo off taskkill /f /IM explorer.exe timeout /t 1 >nul start …

  7. How to programatically restart explorer.exe using C#

    Aug 18, 2018 · I been trying to restart explorer.exe so my other script that hides the icons can take effect. I tried to do this by executing a command prompt window through my C# program: …

  8. Refresh/Restart Explorer via Remoting - Stack Overflow

    Stop-Process -processName: Explorer No need even to restart, as Explorer restarts automatically and near instantly.

  9. How to start explorer.exe in VB.NET program - Stack Overflow

    Jun 7, 2019 · Dim command = "taskkill /f /im explorer.exe" Shell(command) And it works. However, my problem is that after a correct code is inputted to be able to use the PC, I can't …

  10. winapi - Restarting explorer.exe process for all logged users on ...

    Aug 14, 2020 · I need to intercept certain signal in a windows service, and then find all explorer.exe processes and restart them. So far it works fine if only one user is logged into the …