我们的Sharepoint 2013 应用程序安装失败并且卡在一个奇怪的状态。我按照推荐的方法在托管的 Sharepoint 服务器上使用 powershell 命令删除应用程序,但它无法正确执行。
Visual Studio 部署/撤回报告:
跳过卸载步骤,因为 SharePoint 的应用程序处于无效状态并且无法卸载。
PowerShell 命令
$instances = Get-SPAppInstance -Web http://mysite/sites/collection
$instance = $instances | where {$_.Title -eq 'Application.Title'}
Uninstall-SPAppInstance -Identity $instance
执行此 PS 命令会抛出...
The System Account cannot perform this action.
Sharepoint UI中没有删除应用程序的选项,重试安装也会失败。我已经尝试过其他用户帐户来执行这个 powershell 命令(除了系统帐户),但没有骰子。如果没有其他解决方案,我将不得不删除开发人员网站集。