我使用以下链接遵循了Sitecore 9的安装步骤:A step by step guide for Sitecore 9 installation on your machine。
我已经成功安装了SolR服务器,然后,我已经注册了Sitecore Nuget存储库并安装了相关模块
Install-Module SitecoreInstallFramework
Install-Module SitecoreFundamentals
Import-Module SitecoreInstallFramework
Import-Module SitecoreFundamentals然后,在我尝试运行shell脚本但得到以下异常之后
.\InstallSitecore9.ps1
Install-SitecoreConfiguration : No registration found for extension 'AppPool' of type 'Task'.
At C:\sitecore\install\InstallSitecore9.ps1:48 char:1
+ Install-SitecoreConfiguration @xconnectParams -Verbose发布于 2021-02-05 02:52:24
我发现试图在powershell v7中执行9.3脚本会导致这些错误。切换到v5 powershell会话解决了此问题。
发布于 2021-08-01 12:44:03
只需检查您的IIS设置,您可能会看到如下内容:

发布于 2021-01-03 22:54:09
我刚刚得到了相同的问题,并通过运行以下cmdlet解决了它:
Install-SitecoreConfiguration -Path .\Prerequisites.jsonhttps://stackoverflow.com/questions/59786497
复制相似问题