Skip to content
Open

v1 #21

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions ClearUpdateBlocks.ps1

This file was deleted.

24 changes: 0 additions & 24 deletions LICENSE

This file was deleted.

69 changes: 26 additions & 43 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,65 +2,48 @@
<img src="banner.png" alt="EdgeRemover banner" width="800">
</p>

<p align="center"><b>A PowerShell script that correctly uninstalls or reinstalls Microsoft Edge on Windows 10 & 11.</b></p>
<p align="center"><b>أداة متخصصة لإزالة Microsoft Edge من جذوره في Windows 10 & 11.</b></p>
<p align="center"><a href="https://github.com/F2lcon01/EdgeRemover">F2lcon01/EdgeRemover</a></p>

---

### 🎉 Features
### ⚠️ تنويه هام

- Remove Edge with its own uninstaller, meaning there aren't leftovers, alongside no breakage as nothing is hardcoded
- Multiple fallback methods for uninstallation
- Can remove Edge installed with a `.msi`
- Ability to reinstall Edge and WebView2
- Implementable in scripts with parameters
هذه النسخة معدلة ومخصصة **للحذف فقط**. لا توجد خيارات لإعادة التثبيت أو التراجع. استخدمها بحذر.

### ⬇️ Usage
You can use the command below in PowerShell to launch the script. Alternatively, get the latest script from the [GitHub releases](https://github.com/he3als/EdgeRemover/releases/latest).
### 🎉 الميزات

```powershell
iex(irm https://cdn.jsdelivr.net/gh/he3als/EdgeRemover@main/get.ps1)
```
- **حذف نهائي**: إزالة Edge باستخدام أدواته الرسمية لضمان عدم بقاء ملفات عالقة.
- **تنظيف البيانات**: خيار لحذف ملفات التصفح وبيانات المستخدم (Profiles).
- **آمنة**: لا تعتمد على حذف الملفات العشوائي الذي قد يكسر النظام.

<p align="center">
<img src="showcase.png" alt="Image of the EdgeRemover UI" width="800">
</p>
### ⬇️ طريقة الاستخدام

#### 📜 Implementation in Scripts
بما أنك تمتلك الملفات محلياً:

Download the script and run `Get-Help .\RemoveEdge.ps1` to see its options. You can either use the downloaded file directly with these arguments or put them into the snippet below:
1. قم بتشغيل `PowerShell` كمسؤول (Run as Administrator).
2. توجه إلى مجلد الأداة.
3. نفذ الأمر التالي:

```powershell
iex "&{$(irm https://cdn.jsdelivr.net/gh/he3als/EdgeRemover@main/get.ps1)} [ARGUMENTS HERE]"
```
```powershell
.\RemoveEdge.ps1
```

<details>
<summary>Example</summary>
4. أكد العملية بكتابة `y` ثم اضغط `Enter`.

This would uninstall Edge, remove Edge's user-data, and install Edge WebView:
```powershell
iex "&{$(irm https://cdn.jsdelivr.net/gh/he3als/EdgeRemover@main/get.ps1)} -UninstallEdge -RemoveEdgeData -InstallWebView"
```
</details>
#### الاستخدام المتقدم (بدون تأكيد)

### 🫧 Clearing Edge Blocks
You can use the command below in PowerShell to clear all EdgeUpdate policies, including those that block the reinstallation and update of Edge or WebView.
يمكنك استخدام السكريبت في عمليات الأتمتة عبر الأوامر التالية:

```powershell
iex "&{$(irm https://cdn.jsdelivr.net/gh/he3als/EdgeRemover@main/get.ps1)} -ClearUpdateBlocks"
# حذف Edge + حذف البيانات + بدون أسئلة
.\RemoveEdge.ps1 -UninstallEdge -RemoveEdgeData -NonInteractive
```

### ❓ Troubleshooting

If Edge won't uninstall, try:

1. Repairing Edge
2. Making sure that Windows is up to date
3. Making sure that Edge is up to date

If it still doesn't work, [make an issue](https://github.com/he3als/EdgeRemover/issues).
### ❓ حل المشاكل

### ✅ Additional Credits
إذا فشل الحذف:

- [Xyueta](https://github.com/Xyueta) - minor bug fixes
- [ave9858](https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6) - inspired this script
- [h3r0](https://github.com/melo936) - notified me about the 'windir' method in the script
1. تأكد من تشغيل السكريبت كمسؤول.
2. تأكد من إغلاق جميع نوافذ المتصفح.
3. أعد تشغيل الجهاز وحاول مرة أخرى.
Loading