1、DLL could not be run for MSI installers
问题描述
There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor
解决办法
A simple workaround is to run the command shell as administrator (just search cmd.exe and then right click-> run as administrator), and then go to location of the MSI package and run
执行命令
C:\Users\sj> msiexec /i packagename.msi
It worked for me.
2、win10开始菜单打不开怎么办 win菜单键没反应解决办法
解决办法
1.右键点击任务栏—— 任务管理器,点击文件——运行新任务,新建任务 “powershell”同时勾选下方的“以管理员身份运行” 。确定。
2.在弹出“管理员”运行中输入:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register $($_.InstallLocation)\AppXManifest.xml"}
3.运行完成后,再试试是不是能打开了。