I’m trying to install Flash Player on a computer, but it fails again and again. This is not a problem with the new installer; previous ActiveX versions doesn’t work either. I have tried both online and offline installer. NPAPI and PPAPI works fine.
The computer that fails is a virtual Windows Server 2012 R2 used for terminal services.
The offline installer gives the following error: «Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: …InstallAX_24_0_0_…»
The online installer gives the following error at approximately the same time during the installation phase: «Failed to register»
I have tried the Adobe uninstaller and all the manual steps beneath it: Uninstall Flash Player for Windows
I have tried msizap on all GUID’s listed here, from most recent and back to 18.0.0.160: MSI GUID list for Flash Player
I have tried to reset the registry permissions here (I am aware of the OS descrepency): Troubleshoot Flash Player install issues related to Windows registry permissions
I also manually removed the keys HKEY_LOCAL_MACHINESOFTWAREMacromedia and HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMacromedia (which only contained Flash entries) to no avail.
MSI log: https://justpaste.it/12j0h
C:WindowsSystem32MacromedFlashFlashInstall.log
=O====== M/24.0.0.194 2017-01-18+11-01-38.838 ========
0000 00000042
0001 00001113 C:UsersusernameAppDataRoamingMacromediaFlash Playerwww.macromedia.combin* 3
0002 00000010 «C:Windowssystem32MacromedTemp{E03840ED-7275-43AA-90B3-9051F5901072}InstallFlashPlayer.exe» -install -skipARPEntry -iv 2 -au 4294967295
0003 00001036 SoftwareMacromediaFlashPlayerActiveX/PlayerPath 2
0004 00001037 SOFTWAREMicrosoftWindowsCurrentVersionUninstallAdobe Flash Player ActiveX/ 2
0005 00001037 SOFTWAREMicrosoftWindows NTCurrentVersionImage File Execution Options\FlashUtil64_24_0_0_194_ActiveX.exe/ 2
0006 00000013
0007 00000015 C:Windowssystem32MacromedFlashFlashUtil64_24_0_0_194_ActiveX.exe
0008 00000016 C:Windowssystem32MacromedFlashFlashUtil64_24_0_0_194_ActiveX.dll
0009 00000023 C:Windowssystem32MacromedFlashactivex.vch
0010 00001032 C:Windowssystem32MacromedFlashFlash64_24_0_0_194.ocx 0
0011 00000018
0012 00001032 C:Windowssystem32MacromedFlashFlash64_24_0_0_194.ocx 0
=X====== M/24.0.0.194 2017-01-18+11-01-40.687 ========
C:WindowsSysWOW64MacromedFlashFlashInstall.log
=O====== M/24.0.0.194 2017-01-18+11-01-36.267 ========
0000 00001113 C:UsersusernameAppDataRoamingMacromediaFlash Playerwww.macromedia.combin* 3
0001 00000010 «C:UsersUSERN~1AppDataLocalTemp{22AF9D99-A980-4071-A0BD-1D0BB956B9EA}InstallAX_24_0_0_194.exe» -install -msi -prev 24.0.0.194
0002 00001036 SoftwareMacromediaFlashPlayerActiveX/UninstallerPath 2
0003 00001036 SoftwareMacromediaFlashPlayerSafeVersions/24.0 2
0004 00001036 SoftwareMacromediaFlashPlayerActiveX/UninstallerPath 2
0005 00000011 1
0006 00001037 SOFTWAREMicrosoftWindowsCurrentVersionUninstallAdobe Flash Player ActiveX/ 2
0007 00001015 C:WindowsSysWOW64MacromedFlashFlash.ocx 5
0008 00000018
0009 00001045 C:WindowsSysWOW64MacromedFlashFlash.ocx 5
0010 00001015 C:WindowsSysWOW64MacromedFlashFlash.ocx 5
0011 00001037 SOFTWAREMicrosoftWindows NTCurrentVersionImage File Execution Options\FlashUtil32_24_0_0_194_ActiveX.exe/ 2
0012 00001015 C:WindowsSysWOW64MacromedFlashactivex.vch 5
0013 00001045 C:WindowsSysWOW64MacromedFlashactivex.vch 5
0014 00001015 C:WindowsSysWOW64MacromedFlashactivex.vch 5
0015 00000013
0016 00000015 C:WindowsSysWOW64MacromedFlashFlashUtil32_24_0_0_194_ActiveX.exe
0017 00000016 C:WindowsSysWOW64MacromedFlashFlashUtil32_24_0_0_194_ActiveX.dll
0018 00000023 C:WindowsSysWOW64MacromedFlashactivex.vch
0019 00001031 C:WindowsSysWOW64MacromedFlashactivex.vch:5
=X====== M/24.0.0.194 2017-01-18+11-01-43.082 ========
[moderator: added ‘MSI — Server 2012 R2’ to title for clarity]
Hi rlinhartpdx.
We had a similar issue in our production environment. We deploy Flash trough SCCM, but similar procedures should work for GPO environments also.
To tackle the issue of Error 1722 and 2753 I created a task sequence that ran the following:
Run the Flash Player Uninstaller
* uninstall_flash_player.exe -uninstall
Run a cleanup CMD script
* cmd.exe /c CleanUp.cmd
The CMD Script, CleanUp.cmd looks like this:
#######################################################################################################
@echo off
echo Commencing Flash cleanup > C:FlashClean.log
echo. >> C:FlashClean.log
echo Cleaning 00AB3E66D3B6B66469AF36907A4FB20B >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerProducts0AB3E66D3B6B66469AF36907A4FB20B /f >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerFeatures0AB3E66D3B6B66469AF36907A4FB20B /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClasses0AB3E66D3B6B66469AF36907A4FB20BInstallerProducts /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerFeatures0AB3E66D3B6B66469AF36907A4FB20B /f >> C:FlashClean.log
echo. >> C:FlashClean.log
echo Cleaning C460100B160DEAB4091314A638D85563 >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerProductsC460100B160DEAB4091314A638D85563 /f >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerFeaturesC460100B160DEAB4091314A638D85563 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerProductsC460100B160DEAB4091314A638D85563 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerFeaturesC460100B160DEAB4091314A638D85563 /f >> C:FlashClean.log
echo. >> C:FlashClean.log
echo Cleaning FE188D887650A344A9485EAAFE92BB43 >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerProductsFE188D887650A344A9485EAAFE92BB43 /f >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerFeaturesFE188D887650A344A9485EAAFE92BB43 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerProductsFE188D887650A344A9485EAAFE92BB43 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerFeaturesFE188D887650A344A9485EAAFE92BB43 /f >> C:FlashClean.log
echo. >> C:FlashClean.log
echo Cleaning 5E5CA04FBA55A964ABB838C90E413608 >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerProducts5E5CA04FBA55A964ABB838C90E413608 /f >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerFeatures5E5CA04FBA55A964ABB838C90E413608 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerProducts5E5CA04FBA55A964ABB838C90E413608 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerFeatures5E5CA04FBA55A964ABB838C90E413608 /f >> C:FlashClean.log
echo. >> C:FlashClean.log
echo Cleaning D90E84CDF5E493049BA3CFDE63FEEB55 >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerProductsD90E84CDF5E493049BA3CFDE63FEEB55 /f >> C:FlashClean.log
reg.exe DELETE HKEY_CLASSES_ROOTInstallerFeaturesD90E84CDF5E493049BA3CFDE63FEEB55 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerProductsD90E84CDF5E493049BA3CFDE63FEEB55 /f >> C:FlashClean.log
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREClassesInstallerFeaturesD90E84CDF5E493049BA3CFDE63FEEB55 /f >> C:FlashClean.log
echo. >> C:FlashClean.log
echo Cleaning SafeVersions tree
reg.exe DELETE HKEY_LOCAL_MACHINESOFTWAREMacromediaFlashPlayerSafeVersions /f >> C:FlashClean.log
echo. >> C:FlashClean.log
echo Cleanup completed >> C:FlashClean.log
exit 0
#######################################################################################################
Please note: This script was made to clean up 5 specific flash installations, each noted by their product codes. For instance, the latest version of flash (11.3.300.257) has D90E84CDF5E493049BA3CFDE63FEEB55
The script has no call back on errors, other than the FLashClean.log on C:. It will always be successful due to Exit 0.
Hope this helps!
Номер ошибки: | Ошибка 1722 | |
Название ошибки: | Adobe Flash Player Error 1722 | |
Описание ошибки: | Ошибка 1722: Возникла ошибка в приложении Adobe Flash Player. Приложение будет закрыто. Приносим извинения за неудобства. | |
Разработчик: | Adobe Systems Inc. | |
Программное обеспечение: | Adobe Flash Player | |
Относится к: | Windows XP, Vista, 7, 8, 10, 11 |
Определение «Adobe Flash Player Error 1722»
Обычно люди ссылаются на «Adobe Flash Player Error 1722» как на ошибку времени выполнения (ошибку). Программисты, такие как Adobe Systems Inc., стремятся создавать программное обеспечение, свободное от этих сбоев, пока оно не будет публично выпущено. Тем не менее, возможно, что иногда ошибки, такие как ошибка 1722, не устранены, даже на этом этапе.
В выпуске последней версии Adobe Flash Player может возникнуть ошибка, которая гласит: «Adobe Flash Player Error 1722». Когда это происходит, конечные пользователи могут сообщить Adobe Systems Inc. о наличии ошибок «Adobe Flash Player Error 1722». Затем Adobe Systems Inc. исправит ошибки и подготовит файл обновления для загрузки. Если есть уведомление об обновлении Adobe Flash Player, это может быть решением для устранения таких проблем, как ошибка 1722 и обнаруженные дополнительные проблемы.
В чем причина ошибки 1722?
Вполне вероятно, что при загрузке Adobe Flash Player вы столкнетесь с «Adobe Flash Player Error 1722». Вот три наиболее распространенные причины, по которым происходят ошибки во время выполнения ошибки 1722:
Ошибка 1722 Crash — это распространенная ошибка 1722 во время выполнения ошибки, которая приводит к полному завершению работы программы. Это возникает, когда Adobe Flash Player не работает должным образом или не знает, какой вывод будет подходящим.
Утечка памяти «Adobe Flash Player Error 1722» — последствия утечки памяти Adobe Flash Player связаны с неисправной операционной системой. Повреждение памяти и другие потенциальные ошибки в коде могут произойти, когда память обрабатывается неправильно.
Ошибка 1722 Logic Error — Логические ошибки проявляются, когда пользователь вводит правильные данные, но устройство дает неверный результат. Это происходит, когда исходный код Adobe Systems Inc. вызывает недостаток в обработке информации.
Как правило, ошибки Adobe Flash Player Error 1722 вызваны повреждением или отсутствием файла связанного Adobe Flash Player, а иногда — заражением вредоносным ПО. Как правило, любую проблему, связанную с файлом Adobe Systems Inc., можно решить посредством замены файла на новую копию. Мы также рекомендуем выполнить сканирование реестра, чтобы очистить все недействительные ссылки на Adobe Flash Player Error 1722, которые могут являться причиной ошибки.
Классические проблемы Adobe Flash Player Error 1722
Наиболее распространенные ошибки Adobe Flash Player Error 1722, которые могут возникнуть на компьютере под управлением Windows, перечислены ниже:
- «Ошибка программы Adobe Flash Player Error 1722. «
- «Недопустимая программа Win32: Adobe Flash Player Error 1722»
- «Adobe Flash Player Error 1722 должен быть закрыт. «
- «Файл Adobe Flash Player Error 1722 не найден.»
- «Adobe Flash Player Error 1722 не найден.»
- «Ошибка запуска программы: Adobe Flash Player Error 1722.»
- «Файл Adobe Flash Player Error 1722 не запущен.»
- «Ошибка Adobe Flash Player Error 1722. «
- «Неверный путь к приложению: Adobe Flash Player Error 1722.»
Обычно ошибки Adobe Flash Player Error 1722 с Adobe Flash Player возникают во время запуска или завершения работы, в то время как программы, связанные с Adobe Flash Player Error 1722, выполняются, или редко во время последовательности обновления ОС. Документирование проблем Adobe Flash Player Error 1722 в Adobe Flash Player является ключевым для определения причины проблем с электронной Windows и сообщения о них в Adobe Systems Inc..
Adobe Flash Player Error 1722 Истоки проблем
Эти проблемы Adobe Flash Player Error 1722 создаются отсутствующими или поврежденными файлами Adobe Flash Player Error 1722, недопустимыми записями реестра Adobe Flash Player или вредоносным программным обеспечением.
В основном, осложнения Adobe Flash Player Error 1722 связаны с:
- Недопустимая или поврежденная запись Adobe Flash Player Error 1722.
- Вирус или вредоносное ПО, повреждающее Adobe Flash Player Error 1722.
- Вредоносное удаление (или ошибка) Adobe Flash Player Error 1722 другим приложением (не Adobe Flash Player).
- Adobe Flash Player Error 1722 конфликтует с другой программой (общим файлом).
- Adobe Flash Player (Adobe Flash Player Error 1722) поврежден во время загрузки или установки.
Продукт Solvusoft
Загрузка
WinThruster 2023 — Проверьте свой компьютер на наличие ошибок.
Совместима с Windows 2000, XP, Vista, 7, 8, 10 и 11
Установить необязательные продукты — WinThruster (Solvusoft) | Лицензия | Политика защиты личных сведений | Условия | Удаление
Are you trying to use Adobe Flash Player, but are you getting the error ‘1722’?
Tech Support 24/7
Ask a Tech Specialist Online
Connect with the Expert via email, text or phone. Include photos, documents, and more. Get step-by-step instructions from verified Tech Support Specialists.
On this page, you will find more information about the most common causes and most relevant solutions for the Adobe Flash Player error ‘1722’. Do you need help straight away? Visit our support page.
Error information
How to solve Adobe Flash Player error 1722
We’ve created a list of solutions which you can follow if you want to solve this Adobe Flash Player problem yourself. Do you need more help? Visit our support page if you need professional support with Adobe Flash Player right away.
Tech Support 24/7
Ask a Tech Specialist Online
Connect with the Expert via email, text or phone. Include photos, documents, and more. Get step-by-step instructions from verified Tech Support Specialists.
Have you found a solution yourself, but it is not in the list? Share your solution in the comments below.
Need more help?
Do you need more help?
Tech experts are ready to answer your questions.
Ask a question
Did you know about Windows Error 1722 code problem or getting or facing with this error problem on your Windows PC again and again then check out this below the full post to find out that how we fix and solve this type of Error Code 1722 problem from our solutions for you!
This shows an error code message like,
Windows Error 1722 The RPC Server is Unavailable. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Error Code 1722
This error may occur if some MSI package is not removed correctly. This Windows Error 1722 The RPC Server is Unavailable problem is associated with either an Outdated Corrupt Windows installer or with Permission for Windows Script. A problem run as part of the setup did not finish as expected. It is also called as the InstallShield Error 1722 code problem. This Error Code 1722 indicates that the installation process has failed. The remnants of corrupted installation can sometimes prevent installation & the uninstallation of the software.
Causes of Windows Error 1722 Code Issue:
- The RPC server is unavailable
- Uninstalling applications issue
- Windows installer package PC error
- MSI registry Keys error
- Getting session names error
- Adobe flashes Player ActiveX
So, here are some top best guide and the tricky solutions for fixing and solving this type of Windows Error 1722 The RPC Server is Unavailable code problem from your PC permanently.
How to Fix & Solve Windows Error 1722 Code Issue
1. Unregister & Re-register the Windows installer on your PC –
- Go to the start menu
- Type this in the search menu
” service.msc “ - & press Enter there
- Now, double-click on the Windows installer
- Set the startup type of windows installer to manual
- Click start to start the service
- Then, click OK there
- Now, close the tab &
- Again click on the start menu
- Search or open ‘RUN‘ there
- A Pop-up will open there
- Type this below the following command there
” msiexec / unregister “ - & then click OK there
- Now, again open the RUN there
- Type this below the following command there
” msiexec / regserver “ - & then click OK there
- After running these commands, the operation is complete
- After finishing, close the tab
- & Restart your PC once
(Now, try your Windows Installer based program again)
By Unregister and Re-register the Windows installer can solve Windows Error 1722 the RPC Server is Unavailable problem quickly easily.
2. Fix by Run ‘regedit’ command in CMD (Command Prompt) –
- Go to the start menu
- Search or go to the ‘RUN‘ there
- Type “regedit” & press OK or Press Enter there
- A pop-up will open there
- In the registry editor there,
- Expand the various levels until you reach the windows key in the path above
- On the right side of the editor,
- Double click on the ‘LoadApplnit_DLLs value.’
- Change it to ‘0‘ & press OK there
- Exit the registry editor,
- Close all tabs &
- Restart your PC once
- That’s it, done
Fixing by running this command in the command prompt can quickly fix and solve this Windows Error 1722 getting session names code problem.
3. Reinstall the Systran product on your Windows PC –
- Go to the start menu
- Search or directly go to the ‘RUN.’
- Click on it and opens it there
- Type “regsvr32 wintrust.dll” & click on OK button there
‘ A message that says the .dll has been registered‘ will appear - Click on OK there
- Reinstall the Systran Product
- After completing, close the tab
- That’s it, done
By reinstalling the Systran product can quickly fix and solve this Windows Error 1722 there is a problem with this Windows Installer Package problem from your PC.
4. Run a Full Registry Cleaner of your Windows PC –
- First, Download and install the Ccleaner
- After downloading and installing process
- Now, opens it
- Click on the ‘Registry‘ option there
- Click on their “Scan for issues” there
- After Scanning, Select the ‘Fix Selected Issues‘ option there to fix it
- Now, restart your PC again
- That’s it, done
Wrong information stored in registry keys & accidentally deleting some registry keys can cause this Error Code 1722 problem. To stop it from appearing randomly, scan and run the registry cleaner can also solve this Windows Error 1722 printer problem.
Fixing by Cleaning the Registry from Ccleaner it can fix this Windows Error 1722 the RPC server is unavailable code issue from your PC.
5. Turn OFF or Disable Windows Firewall Settings on your PC –
- Go to the Start Menu
- Go to the Control Panel
- Click on Windows Firewall there
- Click on ‘Turn Windows Firewall on or off‘ feature there
- Tick on “Turn off Windows Firewall (not recommended)” there
- Now, Click on ‘OK‘ button there
- That’s it, Done
By turning off or disabling the windows firewall settings, it can fix this Windows Error 1722 getting session names code problem.
6. Run a Full Virus/Malware Scan of your Windows PC –
- Go to the start menu
- Search or go to the ‘Microsoft Security Essentials.’
- Click on it and opens it
- Tick the ‘Full‘ option to run a full scan of your PC
- Now, click on the “Scan Now” option there to scan your PC
- Now, wait for some minutes to scan it
- After completing, close the tab
- That’s it, done
By scanning and running your PC for malware/virus by the Microsoft Security Essentials can quickly fix and solve this Windows Error 1722 there is a problem with this Windows Installer Package code problem.
7. Do a Disk Cleanup on your Windows PC –
- Go to the start menu
- Search or go to the Disk Cleanup
- Opens it, after that
- Select the Disk you want to clean
- Now, tick & select the options which you want to clean it
- Wait for some minutes to clean
- After completing, close the tab
- That’s it, done
By running a disk cleanup of your full PC can quickly fix and solve this Windows Error 1722 printer code problem from your PC.
8. Run a CHKDSK Command in the CMD (Command Prompt) –
- Go to the start menu
- Search or go to the Cmd (Command Prompt)
- A Pop-up will open
- Type “chkdsk” command there in the Cmd
- Press Enter to start it
- That’s it, done
By running a chkdsk command in the command prompt, you will quickly fix this Windows Error 1722 flash problem.
These are the some best methods and the solutions to get rid out of this Windows Error 1722 The RPC Server is Unavailable code issue from your PC entirely. Hope it will fix and solve this Windows Error 1722 The RPC Server is Unavailable problem.
If you are facing this Windows Error 1722Â The RPC Server is Unavailable code problem or any error problem while fixing it or any error problem then comment down the issue below so that we can solve it too by our top best guide solutions.