我正在移植利用第三方模块(NetCmdlets)的PS4脚本并在Powershell窗口中完美运行,但似乎已经忘记了从Java运行时如何加载第三方模块程序
我对任何人的潜在原因和解决方案的想法感兴趣...
这是Calling Java PGM:
package ImagineOne.PSJava2;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ExecuteCommand {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// This is the command
// String command = "powershell.exe $PSVersionTable.PSVersion | Get-Member";
// String command = "powershell.exe C:\\Users\\versaggi\\Desktop\\PowerCLI\\DevScripts\\CANES_VMWare_Extraction_Functions.ps1";
String command = "powershell.exe C:\\Users\\versaggi\\Desktop\\PowerCLI\\DevScripts\\CANES_IBM_RackSwitch_Extraction_Functions.ps1";
Process powerShellProcess = Runtime.getRuntime().exec(command);
powerShellProcess.getOutputStream().close();
String line;
System.out.println("Output:");
BufferedReader stdout = new BufferedReader(new InputStreamReader(powerShellProcess.getInputStream()));
while ((line = stdout.readLine()) != null) {
System.out.println(line);
}
stdout.close();
System.out.println("Error:");
BufferedReader stderr = new BufferedReader(new InputStreamReader(powerShellProcess.getErrorStream()));
while ((line = stderr.readLine()) != null) {
System.out.println(line);
}
stderr.close();
System.out.println("Done");
}
} //End Class
这是OUTPUT:
Output:
** NetCmdlets Modules Loaded **
** Disconnected from RackSwitch **
Error:
Import-Module : **The specified module 'C:\Windows\System32\WindowsPowerShell\v1.
0\Modules\NetCmdlets\NetCmdlets.psd1' was not loaded because no valid module
file was found in any module directory**.At C:\Users\versaggi\Desktop\PowerCLI\De
vScripts\CANES_IBM_RackSwitch_Extraction_Functions.ps1:732 char:1
+ Import-Module
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\NetCmdlets\NetC ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~
+ CategoryInfo : ResourceUnavailable: (C:\Windows\Syst...NetCmdle
ts.psd1:String) [Import-Module], FileNotFoundException
+ FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Comm
ands.ImportModuleCommand
Done
这是PowerShell脚本:(只应该将模块加载为测试[概念证明])
Import-Module C:\Windows\System32\WindowsPowerShell\v1.0\Modules\NetCmdlets\NetCmdlets.psd1
write-host "** NetCmdlets Modules Loaded ** "
一些R& D我已经考虑过了:
http://technirman.blogspot.com/2014/06/invoke-powershell-commands-through-java.html
答案 0 :(得分:0)
我刚刚解决了Java / Powershell互操作性问题。在预感上(在深入研究了 VMware 所做的那些从未出现过问题的模块之后),我猜测 NetCmdlets 已将模块安装在 受保护空间 (请参阅下面的dir)。移动到 不受保护的用户空间 (参见下面的dir)后,它运行得很好。我甚至进行了一些压力测试,并且表现良好。
受保护的Win OS Space:
$PSHome\Modules (%Windir%\System32\WindowsPowerShell\v1.0\Modules)
无保护空间:
C:\Users\versaggi\Desktop\PowerCLI\windowspowershell\modules
根据主题的Windows文档:
在PSModulePath中安装模块
尽可能将所有模块安装在PSModulePath环境变量中列出的路径中,或者将模块路径添加到PSModulePath环境变量值。 PSModulePath环境变量($ env:PSModulePath)包含Windows PowerShell模块的位置。 Cmdlet依赖此环境变量的值来查找模块。
默认情况下,PSModulePath环境变量值包含以下系统和用户模块目录,但您可以添加和编辑该值。
$ PSHome \ Modules(%Windir%\ System32 \ WindowsPowerShell \ v1.0 \ Modules)
警告警告:
此位置保留给Windows附带的模块。 请勿将模块安装到此位置。