我想在Windows 8上使用PowerShell 2作为默认的PowerShell版本而不指定-Version
开关。
我开始使用PowerShell 3附带的Windows 8 RTM,我的脚本与PowerShell 3不兼容。
答案 0 :(得分:6)
Powershell使用publisher policy(另请参阅here)自动将针对Powershell 2构建的主机重定向到Powershell 3运行时(如果可用)。
大部分时间这正是您想要的,但是如果您的应用需要,您可以明确禁用发布商政策。
将其放入app.config文件中以禁用System.Management.Automation(powershell运行时)的发布者策略:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Management.Automation" publicKeyToken="31bf3856ad364e35" />
<publisherPolicy apply="no" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
测试它(针对.NET 4.0的控制台应用程序,明确引用PS v2运行时):
PowerShell ps = PowerShell.Create();
ps.AddScript("$psversiontable");
var result = ps.Invoke()[0].BaseObject as Hashtable;
Console.WriteLine("Powershell version: {0}", result["PSVersion"]);
Console.WriteLine(".NET version: {0}", typeof(string).Assembly.GetName().Version);
在我的Win8盒子上运行它(肯定是PSv3),我得到了
的结果Powershell version: 2.0
.NET version: 4.0.0.0
如果我注释掉app.config,PS版本会变为3.0。
答案 1 :(得分:0)
您说您有一个托管PowerShell的自定义应用程序,并且脚本嵌入在应用程序中。我们假设这个应用程序名为“MyApp.exe”。现在,PowerShell 3.0需要.NET 4.0(CLR4),因此强制应用程序使用PowerShell 2.0的方法是强制您的应用程序使用.NET 3.5(CLR2)。这将导致它加载1.0.0.0版本的System.Management.Automation而不是仅用于CLR4的3.0.0.0版本。在与应用程序相同的文件夹中创建“MyApp.exe.config”,其中包含以下内容:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>
现在,如果您的应用程序是针对CLR4和PowerShell 2.0构建的,那么您会遇到更多麻烦。希望事实并非如此。