This topic is closed.
X
X

Adobe Flash Player 32.0.0.453 Silent Instal

PC Software

 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Dzhamza
    مجموعة الإدارة
    • Sep 2018 
    • 1213 
    • 1,300 
    • 1,015 

    #31






    في آخر إصداراته ادوبي فلاش بلاير 15 البيطا الأولى تثبيت صامت لجميع أنواع برامج التصفح


    http://www.mediafire.com/download/960wnrb5vbt8n3v



    Comment
    • Dzhamza
      مجموعة الإدارة
      • Sep 2018 
      • 1213 
      • 1,300 
      • 1,015 

      #32








      Adobe AIO Runtime Pack 16-06-17



      قمنا اليوم بتجميع أخر التحديثات للإضافات الواجبة لأي حاسوب وبالخصوص بعد الفرمطة مباشرة

      لكسب وقت التحميل والتثبيت العادي حمل من هنا وانقر مررتين فقط وستحصل على التحديث مباشرة ودقائق معدودة




      الكل في واحد

      Mediafire



      Adobe_Runtime_Pack_16-06-17.rar - 79 MB








      Comment
      • Dzhamza
        مجموعة الإدارة
        • Sep 2018 
        • 1213 
        • 1,300 
        • 1,015 

        #33


        Adobe AIO Runtime Pack 14-06-17



        قمنا اليوم بتجميع أخر التحديثات للإضافات الواجبة لأي حاسوب وبالخصوص بعد الفرمطة مباشرة

        لكسب وقت التحميل والتثبيت العادي حمل من هنا وانقر مررتين فقط وستحصل على التحديث مباشرة ودقائق معدودة



        Comment
        • Dzhamza
          مجموعة الإدارة
          • Sep 2018 
          • 1213 
          • 1,300 
          • 1,015 

          #34








          اسلام عليكم ورحمة الله تعالى وبركاته

          إليكم الباتش الرائع في تنزيل وتحديث أو تثبيت الفلاش بلاير أخر إصدار

          من الشركة طبعاً وبدون مخاوف

          كم مرة لاحظت أن الشركة ترفق الاصدار الجديد بباتش تنزيل وتثبيت صامت للإصدار الجديد ولم أهتم به

          لكن قلت من الواجب ادراجه في البوابة ممكن يكون من هو بحاجته:biggrin::biggrin:

          وكذلك دائماً الشركة ما ترفق برنام ازالة للإصادر الحديث ولإزالة القديم طبعاً

          مهم جداً



          محتوى الباتش


          Code:
          :: sets working directory to the current directory of this script
          
          echo off
          
          cd /d %~dp0
          
          ::deletes any existing install file
          
          IF exist install_flash_player_ax.exe del install_flash_player_ax.exe
          
          IF exist install_flash_player.exe del install_flash_player.exe
          
          IF exist install_flash_player_ppapi.exe del install_flash_player_ppapi.exe
          
          IF exist uninstall_flash_player.exe del uninstall_flash_player.exe
          
          
          
          :: Downloads the flashplayer uninstaller to current directory, kills tasks, and deletes old flash files
          
          SET "FILENAME=%~dp0\uninstall_flash_player.exe"
          
          bitsadmin.exe /transfer "Flash Uninstaller" http://download.macromedia.com/get/f...ash_player.exe "%FILENAME%"
          
          
          
          tasklist /FI "IMAGENAME eq plugin-container.exe" 2>NUL -- find /I /N "plugin-container.exe">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im plugin-container.exe /t /f
          
          
          
          tasklist /FI "IMAGENAME eq firefox.exe" 2>NUL -- find /I /N "firefox.exe">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im firefox.exe /t /f
          
          
          
          tasklist /FI "IMAGENAME eq iexplore.exe" 2>NUL -- find /I /N "iexplore.exe">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im iexplore.exe /t /f
          
          
          
          tasklist /FI "IMAGENAME eq flash*" 2>NUL -- find /I /N "flash">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im flash* /t /f
          
          :: added this on July 1 2015 as BattleNet uses NPAPI flash plugin to function, so it must be killed to properly install
          
          tasklist /FI "IMAGENAME eq battle*" 2>NUL -- find /I /N "battle">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im taskkill.exe /im battle* /t /f
          
          :: added July 7 2015 the weather channel app
          
          tasklist /FI "IMAGENAME eq TWC.*" 2>NUL -- find /I /N "TWC.">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im TWC.* /t /f
          
          
          
          tasklist /FI "IMAGENAME eq skype*" 2>NUL -- find /I /N "skype">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im skype* /t /f
          
          
          
          tasklist /FI "IMAGENAME eq yahoo*" 2>NUL -- find /I /N "yahoo">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im yahoo* /t /f
          
          
          
          tasklist /FI "IMAGENAME eq steam*" 2>NUL -- find /I /N "steam">NUL
          
          if "%ERRORLEVEL%"=="0" taskkill.exe /im steam* /t /f
          
          
          
          
          
          
          
          :: Runs Uninstaller
          
          start /wait uninstall_flash_player.exe -uninstall
          
          
          
          
          
          :: determine Operating system
          
          echo off & setlocal EnableDelayedExpansion
          
          wmic /output:version.txt os get caption
          
          >nul find "vista" version.txt && (
          
          goto :win7
          
          ) ---- (
          
          goto :winxp
          
          )
          
          
          
          :winxp
          
          :: determine Operating system
          
          echo off & setlocal EnableDelayedExpansion
          
          wmic /output:version.txt os get caption
          
          >nul find "XP" version.txt && (
          
          goto :win7
          
          ) ---- (
          
          goto :winn
          
          )
          
          
          
          :winn
          
          :: determine Operating system
          
          echo off & setlocal EnableDelayedExpansion
          
          wmic /output:version.txt os get caption
          
          >nul find "Windows 7" version.txt && (
          
          goto :win7
          
          ) ---- (
          
          goto :win8
          
          )
          
          
          
          :win7
          
          echo Windows 7
          
          
          
          :: removes stale system files on Windows 7
          
          ATTRIB -H -S -R C:\Windows\System32\Macromed\Flash /s /d
          
          ATTRIB -H -S -R C:\Windows\SysWOW64\Macromed\Flash /s /d
          
          rmdir "C:\Windows\System32\Macromed\Flash" /s /q
          
          
          
          IF exist C:\Windows\SysWOW64 rmdir "C:\Windows\SysWOW64\Macromed\Flash" /s /q
          
          :: win XP
          
          IF exist "c:\Document and Settings\%username%\Application Data\Adobe\Flash Player" rmdir "c:\Document and Settings\%username%\Application Data\Adobe\Flash Player" /s /q
          
          IF exist "c:\Document and Settings\%username%\Application Data\Macromedia\Flash" rmdir "c:\Document and Settings\%username%\Application Data\Macromedia\flash" /s /q
          
          
          
          :: downloads the latest version of the flash player ActiveX
          
          SET "FILENAME=%~dp0\install_flash_player_ax.exe"
          
          bitsadmin.exe /transfer "Flash Player ActiveX download" http://fpdownload.macromedia.com/pub..._player_ax.exe "%FILENAME%"
          
          ::start /wait msiexec /b "install_flash_player_ax.exe" /install
          
          start /wait install_flash_player_ax.exe /install
          
          
          
          :win8
          
          echo Windows 8
          
          
          
          rmdir "C:\Users\%username%\AppData\Roaming\Adobe\Flash Player" /s /q
          
          rmdir "C:\Users\%username%\AppData\Roaming\Macromedia\Flash Player" /s /q
          
          
          
          :: downloads the latest version of the flash player plugin
          
          SET "FILENAME=%~dp0\install_flash_player.exe"
          
          bitsadmin.exe /transfer "Flash Player plugin download" http://fpdownload.macromedia.com/pub...ash_player.exe "%FILENAME%"
          
          start /wait install_flash_player.exe /install
          
          
          
          :: downloads the latest version of the flash player pepper flash
          
          SET "FILENAME=%~dp0\install_flash_player_ppapi.exe"
          
          bitsadmin.exe /transfer "Flash Player Pepper Flash download" http://fpdownload.macromedia.com/pub...ayer_ppapi.exe "%FILENAME%"
          
          
          
          start /wait install_flash_player_ppapi.exe /install
          
          
          
          ::deletes any existing download files
          
          IF exist install_flash_player_ax.exe del install_flash_player_ax.exe
          
          IF exist install_flash_player.exe del install_flash_player.exe
          
          IF exist install_flash_player_ppapi.exe del install_flash_player_ppapi.exe
          
          IF exist uninstall_flash_player.exe del uninstall_flash_player.exe
          
          del version.txt
          
          
          
          :: deletes any existing prefetchfiles
          
          IF exist "C:\Windows\Prefetch\PLUGIN-CONTAINER*.pf" del "C:\Windows\Prefetch\PLUGIN-CONTAINER*.pf"
          
          IF exist "C:\Windows\Prefetch\flashpl*.pf" del "C:\Windows\Prefetch\flashpl*.pf"
          
          IF exist "C:\Windows\Prefetch\firefox*.pf" del "C:\Windows\Prefetch\firefox*.pf"
          
          
          
          
          
          :: below is optional if you want the Adobe updater to NAG you for updates. Just add 2 ":" in from of each line to active this below just like in the begining of this line, then you will get the NAG updates, this installer will grab the latest whenever you run it though.
          
          
          
          
          
          ::tasklist /FI "IMAGENAME eq FlashPlayerUpdate*" 2>NUL -- find /I /N "FlashPlayerUpdate">NUL
          
          ::if "%ERRORLEVEL%"=="0" taskkill.exe /im FlashPlayerUpdateService.exe /f
          
          
          
          ::SchTasks /Delete /TN "Adobe Flash Player Updater" /f
          
          ::sc delete "AdobeFlashPlayerUpdateSvc" /f
          
          ::IF exist "C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe" del "C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe"
          
          ::IF exist "C:\Windows\System32\Macromed\Flash\FlashPlayerUpdateService.exe" del "C:\Windows\System32\Macromed\Flash\FlashPlayerUpdateService.exe"
          
          ::IF exist "C:\Windows\SysWOW64\Macromed\Flash\mms.cfg" del "C:\Windows\SysWOW64\Macromed\Flash\mms.cfg"
          
          ::IF exist "C:\Windows\SysWOW64\Macromed\Flash\mms.cfg" del "C:\Windows\SysWOW64\Macromed\Flash\mms.cfg"
          
          ::IF exist "C:\Windows\System32\Macromed\Flash\mms.cfg" del "C:\Windows\System32\Macromed\Flash\mms.cfg"
          التحميل

          الروابط الأصلية

          Download 32-bit: downloadFlash_XPandUP.cmd (3.5 KB)

          Download 64-bit: FlashUpdater3.3.1.14.exe (745 KB)






          Comment
          • Dzhamza
            مجموعة الإدارة
            • Sep 2018 
            • 1213 
            • 1,300 
            • 1,015 

            #35








            Adobe AIO Runtime Pack 10-11-15



            قمنا اليوم بتجميع أخر التحديثات للإضافات الواجبة لأي حاسوب وبالخصوص بعد الفرمطة مباشرة

            لكسب وقت التحميل والتثبيت العادي حمل من هنا وانقر مررتين فقط وستحصل على التحديث مباشرة ودقائق معدودة


            الكل في واحد






            Adobe_RunTime_15-11-15.exe 79.4 MB

            او

            http://uptobox.com/5tmjf47435at



            او



            https://uploadex.com/qxz1rddo8157




            Comment
            • Dzhamza
              مجموعة الإدارة
              • Sep 2018 
              • 1213 
              • 1,300 
              • 1,015 

              #36








              Adobe AIO Runtime Pack 14-03-17



              قمنا اليوم بتجميع أخر التحديثات للإضافات الواجبة لأي حاسوب وبالخصوص بعد الفرمطة مباشرة

              لكسب وقت التحميل والتثبيت العادي حمل من هنا وانقر مررتين فقط وستحصل على التحديث مباشرة ودقائق معدودة






              Comment
              • Dzhamza
                مجموعة الإدارة
                • Sep 2018 
                • 1213 
                • 1,300 
                • 1,015 

                #37



                Adobe AIO Runtime Pack 28.09.15



                قمنا اليوم بتجميع أخر التحديثات للإضافات الواجبة لأي حاسوب وبالخصوص بعد الفرمطة مباشرة

                لكسب وقت التحميل والتثبيت العادي حمل من هنا وانقر مررتين فقط وستحصل على التحديث مباشرة ودقائق معدودة




                Comment
                • Dzhamza
                  مجموعة الإدارة
                  • Sep 2018 
                  • 1213 
                  • 1,300 
                  • 1,015 

                  #38


                  قمنا اليوم بتجميع أخر التحديثات للإضافت الواجبة لأي حاسوب وبالخصوص بعد الفرمطة مباشرة

                  لكسب وقت التحميل والتثبيت العادي حمل من هنا وانقر مررتين فقط وستحصل على التحديث مباشرة ودقائق معدودة

                  Comment
                  • مصطفى مراد
                    Free Membership
                    • Nov 2018 
                    • 183 
                    • 304 
                    • 69 

                    #39

                    الاصدار الجديد لمشغل الفلاش العملاق الذي لاغني عنه في أي جهاز فهو أهم داعم لمتصفحات الانترنت يحل مشاكل تشغيل الفيديوهات على اليوتيوب وجميع مواقع تشغيل الفيديوهات , كما أنه هو المشغل الأساسي لللألعاب التفاعلية الفلاشية على مواقع الانترنت و من دونه تعاني المتصفحات من مشاكل تشغيل الفيديو و ملفات الفلاش على المواقع , البرنامج متوافق مع جميع المتصفحات المستخدمة وبأعلي كفاءة .


                    Adobe Flash Player 29.0.0.113 Final









                    الـتـحـمـيـل



                    Firefox & Safari – NPAP

                    http://fpdownload.macromedia.com/pub...ash_player.exe


                    Opera & Chrome – PPAPI

                    http://fpdownload.macromedia.com/pub...ayer_ppapi.exe


                    Internet Explorer - ActiveX

                    http://fpdownload.macromedia.com/pub..._player_ax.exe


                    تـقـبـلـوا تـحـيـاتـي و لا تـنـسـونـا مـن صـالـح الـدعـاء

                    Comment
                    • ميدو حسن
                      Free Membership
                      • Sep 2018 
                      • 355 
                      • 32 
                      • 20 

                      #40
                      جزاك الله خيرا
                      Comment
                      • rabah10
                        Free Membership
                        • Nov 2018 

                        #41
                        بارك الله فيك
                        Comment
                        • kvip
                          Free Membership
                          • Sep 2018 
                          • 132 
                          • 162 

                          #42
                          بسم الله الرحمن الرحيم
                          السلام عليكم ورحمه الله وبركاته


                          Adobe Flash Player 31.00.148 Finall

                          برنامج ادوبى فلاش بلاير Adobe Flash Player مشغل الفلاش الشهير , اذا كان متصفحك لا يدعم تشغيل الفلاش SWF فأنت بحاجة الى تركيب هذا البرنامج الصغير والمعروف لتمكين المتصفح من تشغيل تلك الملفات وعرضها بصفحات الانترنت كذلك هو يشغل الملفات SWF على حاسوبك ويساعدك على استعراضها , برنامج مجانى , متوافق مع انظمة ويندوز .


                          حمل البرنامج مباشرا
                          for Firefox and Netscape:
                          http://fpdownload.macromedia.com/pub...ash_player.exe
                          for Internet Explorer:
                          http://fpdownload.macromedia.com/pub..._player_ax.exe
                          for Opera and Chromium-based browsers:
                          http://fpdownload.macromedia.com/pub...ayer_ppapi.exe

                          Comment
                          • liondorient
                            Free Membership
                            • Oct 2018 
                            • 145 
                            • 43 
                            • 41 

                            #43
                            بارك الله بك اخي الكريم وسلم يداك
                            Comment
                            • HIMA_SOFT
                              Free Membership
                              • Sep 2018 
                              • 110 
                              • 26 
                              • 14 

                              #44
                              بارك الله فيك
                              Comment
                              • أبو حكمت
                                Free Membership
                                • Sep 2018 
                                • 2716 
                                • 3,323 
                                • 8,527 

                                #45
                                جزاك الله خيراً
                                شكراً لمجهودك أخي ناصر
                                Comment
                                Working...
                                X