How could inreversibly disable explorer.exe


bluedxca93

Member
Local time
5:26 PM
Posts
19
OS
24h2 , 24.10
Hello everyone,

Explorer.exe and some of its functionality seems to be destroyed as a choice of design by microsoft and now I am looking for a way to disable it temporarily but also permanently. Moving it with midnight commander as admin works but once an update happens explorer.exe is back as default.
I’m looking for a method that allows me to move explorer.exe reversibly. But that does also move it after updates.

If anyone has experience or can point me to a reliable method, I’d greatly appreciate it. Thanks in advance for your help!
As far as i know validation os is the only system without explorer.exe but it lacks support for .net or direct3d apps, and msiexec etc . Switching back to windows 10 or using linux everytime would force me to buy a new camera, as my favorite raw processor now requires windows 11.

Kind regards bluedxca93
 

My Computer

System One

  • OS
    24h2 , 24.10
    Computer type
    PC/Desktop
    Manufacturer/Model
    Amd
Do you only want to remove the explorer for file explorer aka as a file manager? Or do you also want to remove explorer.exe from loading during startup. As so not getting a taskbar, wallpaper, no desktok icons etc etc. And if the later, what do you then use as alternative?
For file Manager should be easy, as i don't use the file explorer myself aswell.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.3775
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Optiplex 7080
    CPU
    i9-10900 10 core 20 threads
    Motherboard
    DELL 0J37VM
    Memory
    32 gb
    Graphics Card(s)
    none-Intel UHD Graphics 630
    Sound Card
    Integrated Realtek
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    1tb Solidigm m.2 nvme+256gb SKHynix m.2 nvme /External drives 512gb Samsung m.2 sata+1tb Kingston m2.nvme+ 4gb Solidigm nvme
    PSU
    500w
    Case
    MT
    Cooling
    Dell Premium
    Keyboard
    Logitech wired
    Mouse
    Logitech wireless
    Internet Speed
    so slow I'm too embarrassed to tell
    Browser
    #1 Edge #2 Firefox
    Antivirus
    Defender+MWB Premium
  • Operating System
    Windows 10 Pro 22H2 19045.3930
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Optiplex 9020
    CPU
    i7-4770
    Memory
    24 gb
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    256 gb Toshiba BG4 M.2 NVE SSB and 1 tb hdd
    PSU
    500w
    Case
    MT
    Cooling
    Dell factory
    Mouse
    Logitech wireless
    Keyboard
    Logitech wired
    Internet Speed
    still not telling
    Browser
    Firefox
    Antivirus
    Defender+MWB Premium
windows and can not be removed...period.

Ofcouse it can, however you would need some replacement and alternative ways to do things.

Just tested in vm, added dopus filemanger, made it start as fullscreen at userloging, added my application to application bar, deleted explorer.exe. Rebooted. After loging, dopus file manager start. Can just use my apps from dopus shortcuts. Can alt-tab between applications.

Now what the OP asked is only to make a startup script that runs at userlogon, that if explorer.exe is restored by windows update. It needs to kill explorer.exe and then just delete the file again automaticly. I guess that solves his issue?
 
Last edited:

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
Wrote a powershell script, that you can schedule as a scheduled task at userlogin:

Put in folder: c:\scripts\

name script: DisableExplorer.ps1

Run manual as test from cmd:
powershell.exe -file "c:\scripts\DisableExplorer.ps1"

if it does not run manual, open powershell first:
then:
Powershell:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted

Then the next times it can run without that command.

Script will take ownership of explorer.exe and rename it with date and Time. And so disabling it. Rename it back to enable it again.

1741894374399.webp

Powershell:
param(
    [switch] $Verbose
)

function Invoke-DisableExplorer {
    begin {
        function Enable-Privilege {
            param(
                [ValidateSet(
                    "SeTakeOwnershipPrivilege", "SeRestorePrivilege", "SeDebugPrivilege")]
                $Privilege,
                $ProcessId = $pid,
                [Switch] $Disable
            )
            $definition = @'
using System;
using System.Runtime.InteropServices;

public class AdjPriv
{
    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
    internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall,
    ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen);
    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
    internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);
    [DllImport("advapi32.dll", SetLastError = true)]
    internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    internal struct TokPriv1Luid
    {
    public int Count;
    public long Luid;
    public int Attr;
    }
    internal const int SE_PRIVILEGE_ENABLED = 0x00000002;
    internal const int SE_PRIVILEGE_DISABLED = 0x00000000;
    internal const int TOKEN_QUERY = 0x00000008;
    internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
    public static bool EnablePrivilege(long processHandle, string privilege, bool disable)
    {
        bool retVal;
        TokPriv1Luid tp;
        IntPtr hproc = new IntPtr(processHandle);
        IntPtr htok = IntPtr.Zero;
        retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);
        if (!retVal) return false;
        tp.Count = 1;
        tp.Luid = 0;
        tp.Attr = disable ? SE_PRIVILEGE_DISABLED : SE_PRIVILEGE_ENABLED;
        retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid);
        if (!retVal) return false;
        retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
        return retVal;
    }
}
'@

            $processHandle = (Get-Process -id $ProcessId).Handle
            $typeexists = try { ([AdjPriv] -is [type]); $true } catch { $false }
            if ($typeexists -eq $false) {
                $type = Add-Type $definition -PassThru
            }
            $result = [AdjPriv]::EnablePrivilege($processHandle, $Privilege, $Disable)
            if (-not $result) {
                $errorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error()
                throw "Failed to change privilege '$Privilege'. Error code: $errorCode."
            }
        }
    }
    process {
        try {
            # Check for Admin rights
            if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]"Administrator")) {
                Write-Warning "Must be run with administrator credentials"
                return
            }

            try {
                # Add SeTakeOwnershipPrivilege and SeRestorePrivilege for this process
                Enable-Privilege -Privilege SeTakeOwnershipPrivilege
                Enable-Privilege -Privilege SeRestorePrivilege
            }
            catch {
                Write-Error $_.Exception.Message
                return
            }

            # Set access rights on explorer.exe
            try {
                $NTAccount_Administrators = [System.Security.Principal.NTAccount]"Administrators"
                $explorerPath = "$env:SystemRoot\explorer.exe"
                $acl = Get-Acl -Path $explorerPath
                $accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule ($NTAccount_Administrators, [System.Security.AccessControl.FileSystemRights]::FullControl, "Allow")
                $acl.SetAccessRule($accessRule)
                Set-Acl -Path $explorerPath -AclObject $acl
                if ($Verbose) { Write-Host "Set full control access for Administrators on '$explorerPath'." -ForegroundColor Cyan }
            }
            catch {
                Write-Warning "Failed to set access rights for explorer.exe. Error: $($_.Exception.Message)"
                return
            }

            # Kill explorer.exe
            try {
                Stop-Process -Name explorer -Force
                Start-Sleep -Seconds 2
            }
            catch {
                Write-Warning "Failed to kill explorer.exe. Error: $($_.Exception.Message)"
            }

            # Rename explorer.exe
            try {
                $timestamp = Get-Date -Format "yyyyMMdd_HHmmss"
                $newName = "explorer.exe_$timestamp"
                $newPath = "$env:SystemRoot\$newName"
                Rename-Item -Path $explorerPath -NewName $newName -Force
                Write-Host "Renamed explorer.exe to '$newName'."
            }
            catch {
                Write-Warning "Failed to rename explorer.exe. Error: $($_.Exception.Message)"
            }
        }
        catch {
            Write-Host "An error occurred: $($_.Exception.Message)" -ForegroundColor Red
            throw $_
        }
    }

    end {}
}

Invoke-Command -ScriptBlock { Invoke-DisableExplorer }


Basic scheduled task, at user login:

arguments: -file "c:\scripts\DisableExplorer.ps1"
1741894606838.webp

Let me know if you have any issues.
 
Last edited:

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
If you wanted to permanently kill all instances of Explorer:
Code:
Windows Registry Editor Version 5.00

[HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\explorer.exe]
"Debugger"=""

But that's just playing with fire. The proper way is to replace Explorer.exe with another app as your default shell.

These config changes are not affected by Windows updates.
 

My Computer

System One

  • OS
    Windows 7
Hi,

I partially agree that the real explorer.exe is supposed to be a main component of windows. However the exe file itself is not needed for file system operations or open with dialogs etc. Yes it breaks the system settings user interface if you remove explorer.exe. The functionality as network, printer etc. still remains intact.

Thx a lot for the tip with the task sheduler and the renaming script. Like this i can restore it if needed. But i really have just changed the shell in registry and guess what explorer.exe came back.

Using WinX- Shell or react os explorer just hides the original explorer but it' ll came back after some time if not renamed... The shell itself is an application on top of dwm.exe .Even dwm.exe can be removed, with more impact than removing explorer.exe for 3rd party applications.

The desktop is an application in the background that displays file system icons and opens them if you click on them.

taskbar is similar to a task list provided by taskmgr or other applications.

The startmenu is basically an application that virtually merges two folders and displays the paths as menu deop downs and the .lnk files inside the folders as items.

This might sound crazy, however its basically just that...
 

My Computer

System One

  • OS
    24h2 , 24.10
    Computer type
    PC/Desktop
    Manufacturer/Model
    Amd

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5039
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
We can expect a few more threads created “DOH Pleaze hielp! My PC haz BooBoo”
Yeah. Just when I feel like we've seen it all for folks butchering the OS....this. There's such a thing as trimming off the fat, but this is like cutting away everything from the bone,trying to eat the bone but end up breaking all your teeth and then crying about it.

While one can use an alternate FILE explore for their files,many of us do that, the entire operating systen is built around explorer.exe.. There's a heck of a lot more to it than just browsing files. Other functions, processes and services are dependent on it being present.

It's just ridiculous and anyone who would advise another to do it is very, very, irresponsible.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.3775
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Optiplex 7080
    CPU
    i9-10900 10 core 20 threads
    Motherboard
    DELL 0J37VM
    Memory
    32 gb
    Graphics Card(s)
    none-Intel UHD Graphics 630
    Sound Card
    Integrated Realtek
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    1tb Solidigm m.2 nvme+256gb SKHynix m.2 nvme /External drives 512gb Samsung m.2 sata+1tb Kingston m2.nvme+ 4gb Solidigm nvme
    PSU
    500w
    Case
    MT
    Cooling
    Dell Premium
    Keyboard
    Logitech wired
    Mouse
    Logitech wireless
    Internet Speed
    so slow I'm too embarrassed to tell
    Browser
    #1 Edge #2 Firefox
    Antivirus
    Defender+MWB Premium
  • Operating System
    Windows 10 Pro 22H2 19045.3930
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Optiplex 9020
    CPU
    i7-4770
    Memory
    24 gb
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    256 gb Toshiba BG4 M.2 NVE SSB and 1 tb hdd
    PSU
    500w
    Case
    MT
    Cooling
    Dell factory
    Mouse
    Logitech wireless
    Keyboard
    Logitech wired
    Internet Speed
    still not telling
    Browser
    Firefox
    Antivirus
    Defender+MWB Premium
A test I show clients when the question arises is to first close all programs then open Task Manager and use End Task on Windows Explorer. Now try to do something, usually only those icons/shortcuts on the Desktop will work. To restore may require rebooting or maybe open Task Manager and restart Windows Explorer will work but may have to Search the list to find it.
 

My Computers

System One System Two

  • OS
    Win11 Pro RTM
    Computer type
    Laptop
    Manufacturer/Model
    Dell Vostro 3400
    CPU
    Intel Core i5 11th Gen. 2.40GHz
    Memory
    12GB
    Hard Drives
    256GB SSD NVMe M.2
  • Operating System
    Windows 11 Pro RTM x64
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Vostro 5890
    CPU
    Intel Core i5 10th Gen. 2.90GHz
    Memory
    16GB
    Graphics card(s)
    Onboard, no VGA, using a DisplayPort-to-VGA adapter
    Monitor(s) Displays
    24" Dell
    Hard Drives
    512GB SSD NVMe, 4TB Seagate HDD
    Browser
    Firefox, Edge
    Antivirus
    Windows Defender/Microsoft Security
Other functions, processes and services are dependent on it being present.
Some function maybe, put definitely not service are dependent on windows.exe.
For me explorer.exe is just build ontop of the os itself. Not that the os is depend on explorer.exe to function.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
Anyone finding this thread, before you say "I'm going to try that too" Please consider some of the OTHER things file explorer is responsibile for before you do it.

In Windows 11, several functions rely on File Explorer to help users navigate, manage, and interact with files and folders. Here are some key features and functions that depend on File Explorer: This came from ChatGPT. Sorry it's all in bold but I copied it and can't change it back to regular font.

1. Viewing and organizing files: File Explorer allows users to view, rename, copy, move, delete, and organize files and folders on their system.
  • Search: The built-in search functionality in File Explorer helps locate files and folders on your computer. It indexes files for quicker searches.
  • File Preview: You can preview the contents of certain files (such as images, text files, and PDFs) directly in the File Explorer window.

2. Right-click context menu: File Explorer is responsible for providing the context menu when you right-click a file or folder. This menu includes options like "Copy," "Delete," "Properties," "Open with," and many others.​

  • Quick Access: Allows users to pin folders and files to the left panel in File Explorer for easier access. You can drag and drop files or folders directly into Quick Access.

3. File sharing: You can share files and folders with others using File Explorer. This includes sharing via nearby sharing, network drives, or OneDrive.​

  • Network access: You can access shared folders on other devices or networked systems through File Explorer. It also allows for browsing network locations like NAS devices and other computers.

4. File History: This feature depends on File Explorer for users to restore previous versions of files or to configure backup settings for specific folders.​

  • Backup and Restore (File Explorer integration): Backing up specific files or folders can be done from within File Explorer through the "History" or "Backup" tabs.

5. Cloud storage: OneDrive integration within File Explorer allows users to access, sync, and manage their cloud-based files as if they were local files. This enables uploading, downloading, and sharing files directly from the Explorer window.​


6. ZIP file support: File Explorer is used to create, open, and extract ZIP files. This built-in functionality allows you to compress multiple files into one archive or extract contents from compressed files.​


7. File properties: Right-clicking a file and selecting "Properties" opens up a window that displays metadata and additional file information such as file size, type, creation date, and more.​

  • Tags, ratings, and details: File Explorer allows users to edit and view certain metadata, such as tags, artist names, album names, and ratings, particularly for media files (e.g., music or photos).

8. Recent files and folders: The Start Menu and Taskbar have sections that show recently accessed files and folders, and these are managed through File Explorer.​

  • Pinned items: You can pin specific files and folders to the Start Menu or the Taskbar, which is managed by File Explorer.

9. Libraries: Libraries like Documents, Pictures, Videos, and Music are part of File Explorer. These are virtual collections of folders that allow users to organize files across multiple locations.​


10. Sandboxed Files: When using Windows Sandbox, any files you save or modify within the Sandbox environment can be accessed via File Explorer.​


11. Access to system locations: File Explorer’s left-hand panel allows access to system locations such as "This PC," "Quick Access," and "Network."​

  • Mounting drives: When you connect external drives, USB drives, or network drives, File Explorer is responsible for mounting and making these available in the navigation pane.

12. Sync Settings with OneDrive: File Explorer plays a role in syncing files with OneDrive or other cloud services. When synced, it shows files that are both locally stored and in the cloud.​


13. Default programs: When you double-click a file to open it, File Explorer is responsible for determining which application should open it based on the file type or user-defined file associations.​

 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.3775
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Optiplex 7080
    CPU
    i9-10900 10 core 20 threads
    Motherboard
    DELL 0J37VM
    Memory
    32 gb
    Graphics Card(s)
    none-Intel UHD Graphics 630
    Sound Card
    Integrated Realtek
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    1tb Solidigm m.2 nvme+256gb SKHynix m.2 nvme /External drives 512gb Samsung m.2 sata+1tb Kingston m2.nvme+ 4gb Solidigm nvme
    PSU
    500w
    Case
    MT
    Cooling
    Dell Premium
    Keyboard
    Logitech wired
    Mouse
    Logitech wireless
    Internet Speed
    so slow I'm too embarrassed to tell
    Browser
    #1 Edge #2 Firefox
    Antivirus
    Defender+MWB Premium
  • Operating System
    Windows 10 Pro 22H2 19045.3930
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Optiplex 9020
    CPU
    i7-4770
    Memory
    24 gb
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    256 gb Toshiba BG4 M.2 NVE SSB and 1 tb hdd
    PSU
    500w
    Case
    MT
    Cooling
    Dell factory
    Mouse
    Logitech wireless
    Keyboard
    Logitech wired
    Internet Speed
    still not telling
    Browser
    Firefox
    Antivirus
    Defender+MWB Premium
It's just ridiculous and anyone who would advise another to do it is very, very, irresponsible.

In this particular case, I would agree with you.

Yes, explorer.exe is currently substandard crap, but you modify it, you don't delete it.

Or many just live with it. If you can't, then look to either see about modifying it, or don't use Windows at all. Use Linux if it's really something you can't deal with.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Microsoft Surface Pro
    Memory
    32GB
  • Operating System
    Windows 11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkPad P14s Gen 3 Intel (14”) Mobile Workstation - Type 21AK
    Memory
    32GB
Use Linux if it's really something you can't deal with
Agreed. There's at least 100 different 'flavors' listed on distrowatch.com. Most are free and being Open Source some folks' ideas of what they wanted, one could even do it themself. For a GUI I like Linux Mint, quite a bit like Windows. Also wouldn't run as much risk of EULA/license violations or copyright laws.
 

My Computers

System One System Two

  • OS
    Win11 Pro RTM
    Computer type
    Laptop
    Manufacturer/Model
    Dell Vostro 3400
    CPU
    Intel Core i5 11th Gen. 2.40GHz
    Memory
    12GB
    Hard Drives
    256GB SSD NVMe M.2
  • Operating System
    Windows 11 Pro RTM x64
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Vostro 5890
    CPU
    Intel Core i5 10th Gen. 2.90GHz
    Memory
    16GB
    Graphics card(s)
    Onboard, no VGA, using a DisplayPort-to-VGA adapter
    Monitor(s) Displays
    24" Dell
    Hard Drives
    512GB SSD NVMe, 4TB Seagate HDD
    Browser
    Firefox, Edge
    Antivirus
    Windows Defender/Microsoft Security
Sorry it's all in bold but I copied it and can't change it back to regular font.
There's an option to paste copied text into browser fields (and into mail fields as well) without copying the formatting as well.
Just use CTRL SHIFT V to paste the text. This is functioning in Firefox (which I saw you are using) and in my mailapp, don't know for other browsers.

Until some time ago I discovered that option, I had that problem as well when copying text into a browser field.

@bluedxca93 Sorry for off-topic!
 

My Computer

System One

  • OS
    Windows 11 Pro 24H2 26100.3915
    Computer type
    PC/Desktop
    Manufacturer/Model
    Build by vendor to my specs
    CPU
    AMD Ryzen 7 5700G
    Motherboard
    MSI PRO B550M-P Gen3
    Memory
    Kingston FURY Beast 2x16GB DIMM DDR4 2666 CL16
    Graphics Card(s)
    MSI GeForce GT 730 2GB LP V1
    Sound Card
    Creative Sound Blaster Audigy FX
    Monitor(s) Displays
    Samsung S24E450F 24"
    Screen Resolution
    1920 x 1080
    Hard Drives
    1. SSD Crucial P5 Plus 500GB PCIe M.2
    2. SSD-SATA Crucial MX500-2TB
    PSU
    Corsair CV650W
    Case
    Cooler Master Silencio S400
    Cooling
    Cooler Master Hyper H412R with Be Quiet Pure Wings 2 PWM BL038 fan
    Keyboard
    Cherry Stream (wired, scissor keys)
    Mouse
    Asus WT465 (wireless)
    Internet Speed
    70 Mbps down / 80 Mbps up
    Browser
    Firefox 130.0
    Antivirus
    F-secure via Internet provider
    Other Info
    Router: FRITZBox 7490
    Oracle VirtualBox 7 for testing software on Win 10 or 11
Anyone finding this thread, before you say "I'm going to try that too" Please consider some of the OTHER things file explorer is responsibile for before you do it.
Agreed, only do it when you know what your doing, and always test things in a Virtual Machine.
This Topic of OP is very user specific and does not reflect to 99,999% of the users of Windows.

I could qoute ever 13 points, on what the alternative ways to do them without explorer.exe. And counter the argument that each (most) points is really explorer.exe it's responsibility. As explorer only calls other functions to manage those windows features, and actually is not responsible for those windows features to work.
I guess the people who want to do this, already know this, and so could easyly remove explorer.exe without losing control/manage those windows features without explorer.exe.
As op Said, Microsoft even distributes an os without explorer.exe and, you can still use everything.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
For a GUI I like Linux Mint, quite a bit like Windows.
There is also MiniOS Ubuntu Matr, Xfce Fedora respin etc. Im a linux user for years.

For university i need adobe products sooner or later and my camera eos 2000d requires a raw converter that cant run on linux. Darktable just does not work. And dxo pure raw version 2 is buggy on wine...

does not reflect to 99,999% of the users of Windows.
Perhaps its because i run it on a ryzen 5 5500 but it was the same with ryzen r3 1200.My graphic card is an rx6600. Thats lowest end for windows 24h2 or what?.
Maybe most users have extreme patience or buy more expensive hardware and do not move bigger files or are used to a certain way of doing things.
Also wouldn't run as much risk of EULA/license violations or copyright laws.
Its really a valid point. Microsoft has its owm api, every Shell replacement does someho brely on underlying original microsoft functions. So once something is written on top of microsoft windiws it can be possibly against laws..

Validation OS does nit have explorer and is blazingly fast but neither msiexec nor dotnet or direct3d-/vulkan are working..

Disabling explorer.exe as a shell does not work reliable. It just shows up after some time in windows. And that causes all the faster replacements with less features and cleaner UI to crash...
 

My Computer

System One

  • OS
    24h2 , 24.10
    Computer type
    PC/Desktop
    Manufacturer/Model
    Amd

Latest Support Threads

Back
Top Bottom