Cluster import module fail?

Hi,

I’m just wondering why the

Import-Module FailoverClusters

failed to import?

2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR: Import-Module : The specified module 'FailoverClusters' was not loaded because
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR: no valid module file was found in any module directory.
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR: At     C:\Octopus\Applications\QA\Nostrum.GreenDeal.CCDB.Process\1.3.131.87_1\PreDe
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR: ploy.ps1:1 char:14
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR: + Import-Module <<<<  FailoverClusters;
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR:     + CategoryInfo          : ResourceUnavailable: (FailoverClusters:String) [
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR:    Import-Module], FileNotFoundException
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR:     + FullyQualifiedErrorId :    Modules_ModuleNotFound,Microsoft.PowerShell.Comm
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR:    ands.ImportModuleCommand
2013-05-30 09:51:48 INFO   [PreDeploy Script]   ERROR:

2013-05-30 09:51:48 WARN [PreDeploy Script] The script returned an exit code of 0, but output was written to the error output stream. Please investigate any errors in the script output above.

is there a different module or snapin i need import other than the one supplied above?

Thanks

Sorry, didn’t post it in mark down.

Import-Module FailoverClusters 

2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: Import-Module : The specified module 'FailoverClusters' was not loaded because 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: no valid module file was found in any module directory. 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: At C:\Octopus\Applications\QA\Nostrum.GreenDeal.CCDB.Process\1.3.131.87_1\PreDe 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: ploy.ps1:1 char:14 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: + Import-Module <<<< FailoverClusters; 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: + CategoryInfo : ResourceUnavailable: (FailoverClusters:String) [ 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: Import-Module], FileNotFoundException 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: + FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Comm 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: ands.ImportModuleCommand 
2013-05-30 09:51:48 INFO [PreDeploy Script] ERROR: 

2013-05-30 09:51:48 WARN [PreDeploy Script] The script returned an exit code of 0, but output was written to the error output stream. Please investigate any errors in the script output above.

Hi,

Tentacle runs under the Local System user account, so a possible cause for this is that the Local System account doesn’t have access to this module, or doesn’t know where to find it. You can try running testing your powershell script from the command line with Tentacle to get an idea of whether it’s a problem caused by running from the Tentacle process, or whether it’s due to the user account being used. You may need to change your Tentacle service to run under a different user account.

Paul