في Windows 11 ، لديك طرق مختلفة لإلغاء تثبيت التطبيقات ، ولكن إذا كان عليك إزالة العديد منها ، فقد يستغرق الأمر وقتًا طويلاً. ومع ذلك ، يمكنك استخدام أداة Windows Package Manager (winget) لإلغاء تثبيت التطبيقات بسرعة بشكل مجمّع.
Although it may be possible to remove apps with other third-party tools or even create a PowerShell script, the winget command makes the entire process easy no matter the installation source (Microsoft Store, Windows Package Manager, Win32 apps you may have installed with .msi or .exe, etc.), saving you time and the hassle that involves using third-party solutions.
This guide will teach you the steps to debloat Windows 11 by uninstalling multiple apps with the winget command.
Bulk uninstall apps with winget command on Windows 11
To uninstall apps in bulk with the winget command, use these steps:
-
Open Start on Windows 11.
-
ابحث عن موجه الأوامر ، وانقر بزر الماوس الأيمن فوق أعلى نتيجة ، وحدد خيار التشغيل كمسؤول .
-
اكتب الأمر التالي لإنشاء قائمة بجميع التطبيقات المثبتة على Windows 11 واضغط على Enter :
قائمة الجناح

-
اكتب الأمر التالي لإلغاء تثبيت تطبيقات متعددة باستخدام winget واضغط على Enter :
winget uninstall --id = APP-ID-1 && winget install --id = APP-ID-2 && winget install --id = APP-ID-3
في الأمر ، قم بتغيير معرف التطبيق لمعرف التطبيق الذي تريد إزالته (راجع الخطوة 3) . إذا كنت تريد إضافة المزيد من التطبيقات لإزالتها ، فأنت بحاجة إلى فصل كل أمر بعلامة "&&". يقوم هذا المثال بإلغاء تثبيت ثلاثة تطبيقات:winget uninstall --id=Mozilla.Firefox && winget install --id=WinDirStat.WinDirStat && winget install --id=VideoLAN.VLC
![How to bulk uninstall apps with commands on Windows 11 How to bulk uninstall apps with commands on Windows 11]()
-
تابع التوجيهات التي تظهر على الشاشة (إن أمكن).
بمجرد إكمال الخطوات ، سيتم إلغاء تثبيت التطبيقات التي حددتها في الأمر من تثبيت Windows 11.