3 回答
TA贡献1820条经验 获得超10个赞
$pshome\powershell.exe.config
<?xml version="1.0"?> <configuration> <startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v4.0.30319"/> <supportedRuntime version="v2.0.50727"/> </startup> </configuration>
位置和文件在某种程度上与平台有关;但是,它将为您提供如何使解决方案为您工作的内联要点。
您可以通过执行以下操作找到PowerShell在计算机上的位置 cd $pshome
在Powershell窗口中(DOS提示不起作用)。 路径将类似于(例如) C:\Windows\System32\WindowsPowerShell\v1.0\
要在其中放置配置的文件名是: powershell.exe.config
如果你 PowerShell.exe
正在执行中(如果需要,请创建配置文件)。 如果 PowerShellISE.Exe
正在运行,则需要将其配套配置文件创建为 PowerShellISE.Exe.config
TA贡献1851条经验 获得超3个赞
TA贡献1863条经验 获得超2个赞
reg add hklm\software\microsoft\.netframework /v OnlyUseLatestCLR /t REG_DWORD /d 1reg add hklm\software\wow6432node\microsoft\.netframework /v OnlyUseLatestCLR /t REG_DWORD /d 1
<?xml version="1.0" encoding="utf-8"?><configuration> <startup> <supportedRuntime version="v4.0.30319" /> </startup></configuration>
当您不再需要注册表项时,请删除它们。这些是机器范围的密钥,强制将所有应用程序迁移到.NET 4.0,甚至使用.NET 2和.NET 3.5的应用程序。
- 3 回答
- 0 关注
- 855 浏览
添加回答
举报