https://github.com/valinet/ep_dwm
Implements a Windows service that removes the rounded corners for windows in Windows 11
https://github.com/valinet/ep_dwm
Last synced: about 1 year ago
JSON representation
Implements a Windows service that removes the rounded corners for windows in Windows 11
- Host: GitHub
- URL: https://github.com/valinet/ep_dwm
- Owner: valinet
- License: gpl-2.0
- Created: 2022-01-21T10:00:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-23T18:42:39.000Z (almost 2 years ago)
- Last Synced: 2024-07-23T22:05:21.615Z (almost 2 years ago)
- Language: C
- Homepage:
- Size: 49.8 KB
- Stars: 47
- Watchers: 8
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ep_dwm
Implements a Windows service that removes the rounded corners for windows in Windows 11.
Tested on Windows 11 build 22000.434.
Pre-compiled binaries are available in the [ExplorerPatcher](https://github.com/valinet/ExplorerPatcher/releases) setup program (download the latest pre-release). You can install that program - it already includes this functionality built-in. Alternatively, to get only `ep_dwm_svc.exe` from the downloaded `ep_setup.exe`, run this:
```
ep_setup /extract C:\ep_dwm
```
The executable will be extracted in `C:\ep_dwm`. If you do not need them, you can delete the rest of the files in there and keep only `ep_dwm_svc.exe`.
To register, type these commands in an elevated command window:
```
sc.exe create ep_dwm binPath= "\"C:\ep_dwm\ep_dwm_svc.exe\" ep_dwm Global\ep_dwm" DisplayName= "ep_dwm" start= auto
sc.exe description ep_dwm "ep_dwm Service"
sc.exe start ep_dwm
```
To unregister, type these commands in an elevated command window:
```
sc.exe stop ep_dwm
sc.exe delete ep_dwm
```