Answered by:
Service Fabric Cluster (HPC 2016)

Question
-
Good day! I try install for test HPC 2016 on clear windows server 2016 but get "error 1 - allready installed" when install try get Service Fabric Cluster for local use. Server clear and make vmware - mb that problem? I cant find anything for find answer( mb anybody install that? I make all from technet instruction.
ServiceFabricCluster.err
Import-Module : Could not load file or assembly 'file:///C:\Users\admin.nikero\Downloads\HPC Pack
2016\ServiceFabric\DeploymentComponents\Microsoft.ServiceFabric.Powershell.dll' or one of its dependencies. Operation
is not supported. (Exception from HRESULT: 0x80131515)
At line:1 char:6
+ try {Import-Module 'C:\Users\admin.nikero\Downloads\HPC Pack 2016\Ser ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Import-Module], FileLoadException
+ FullyQualifiedErrorId : System.IO.FileLoadException,Microsoft.PowerShell.Commands.ImportModuleCommand
Import-Module : Could not load file or assembly 'file:///C:\Users\admin.nikero\Downloads\HPC Pack
2016\ServiceFabric\DeploymentComponents\Microsoft.ServiceFabric.Powershell.dll' or one of its dependencies. Operation
is not supported. (Exception from HRESULT: 0x80131515)
At line:1 char:6
+ try {Import-Module 'C:\Users\admin.nikero\Downloads\HPC Pack 2016\Ser ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Import-Module], FileLoadException
+ FullyQualifiedErrorId : System.IO.FileLoadException,Microsoft.PowerShell.Commands.ImportModuleCommand
Import-Module : Could not load file or assembly 'file:///C:\Users\admin.nikero\Downloads\HPC Pack
2016\ServiceFabric\DeploymentComponents\Microsoft.ServiceFabric.Powershell.dll' or one of its dependencies. Operation
is not supported. (Exception from HRESULT: 0x80131515)
At line:1 char:6
+ try {Import-Module 'C:\Users\admin.nikero\Downloads\HPC Pack 2016\Ser ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Import-Module], FileLoadException
+ FullyQualifiedErrorId : System.IO.FileLoadException,Microsoft.PowerShell.Commands.ImportModuleCommand
- Edited by Kallikasa Monday, March 6, 2017 3:54 PM
Monday, March 6, 2017 3:39 PM
Answers
-
Hi Kallikasa,
This is a known issue recently reported from several customers, the reason may be the assembly or its dependencies are blocked. The workaround is to try the below PowerShell commands with administrator's privileges to create the Service Fabric Cluster manually, and then re-run the HPC Setup. The <setup log folder> is the folder where ServiceFabricCluster.err locates.
cd C:\Users\admin.nikero\Downloads\HPC Pack 2016\ServiceFabric;
Get-ChildItem -Recurse -File | Unblock-File;
.\CreateServiceFabricCluster.ps1 -ClusterConfigFilePath "<setup log folder>\ServiceFabricConfig_0.json" -AcceptEULA
- Marked as answer by Kallikasa Tuesday, March 7, 2017 8:36 AM
Tuesday, March 7, 2017 4:58 AM
All replies
-
Hi Kallikasa,
This is a known issue recently reported from several customers, the reason may be the assembly or its dependencies are blocked. The workaround is to try the below PowerShell commands with administrator's privileges to create the Service Fabric Cluster manually, and then re-run the HPC Setup. The <setup log folder> is the folder where ServiceFabricCluster.err locates.
cd C:\Users\admin.nikero\Downloads\HPC Pack 2016\ServiceFabric;
Get-ChildItem -Recurse -File | Unblock-File;
.\CreateServiceFabricCluster.ps1 -ClusterConfigFilePath "<setup log folder>\ServiceFabricConfig_0.json" -AcceptEULA
- Marked as answer by Kallikasa Tuesday, March 7, 2017 8:36 AM
Tuesday, March 7, 2017 4:58 AM -
ty! thats work! I have that problem on 3 servers and all done!)
P.S. When use CD need write " cd C:\\... " If anyone stuck on this.
Tuesday, March 7, 2017 8:40 AM -
This workaround worked for me too thanks.
Have to completely close/reopen the HPC Setup - not just retry the failed step.
Thursday, March 9, 2017 1:11 PM