Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

While running script below popup appear and after click yes error appeared:

And the faced below Error.


Resolution:

1. Checked SIF module with below cmd:


Get-Module SitecoreInstallFramework –ListAvailable
It is 2.0.0

2. To resolve, need to uninstall SIF version 2.0.0 and then install version 1.2.1.

Below is cmd to uninstall: To uninstall ISF all version

Uninstall-Module -Name " SitecoreInstallFramework " -AllVersions -force

While uninstallation, we can face below error:


WARNING: The version '2.0.0' of module ' SitecoreInstallFramework ' is currently in use. Retry the
operation after closing the
applications.

This is because powershell is currently in connection with SIF 2.0.0

Resolution:

Either refresh powershell or reboot.

3. Now cmd to install 1.21. is below:

Install-Module -Name SitecoreInstallFramework -Repository SitecoreGallery -RequiredVersion 1.2.1


4. Previous issue resolved but new issue came up.
Install-SitecoreConfiguration : Cannot process argument transformation on parameter
'Signer'. Cannot convert the "System.Object[]" value of type "System.Object[]" to type
"System.Security.Cryptography.X509Certificates.X509Certificate2".

Resolution:
This is because we have installed so many certificates while running script again and again.
To resolve this delete all created certs from mmc.

You might also like