PoshCode Archive  Artifact [e90d004d7b]

Artifact e90d004d7b7184ac0779c85a6186167244e6ffa5b166310e436271e7493e1878:

  • File powershell-ise-config.ps1 — part of check-in [a993c35e9d] at 2018-06-10 13:04:24 on branch trunk — Enable .Net 4 and \\UNC path modules for PowerShell, PowerShell_ISE and even wsmprovhost.exe by using this app.config. (user: Joel Bennett size: 819)

# encoding: ascii
# api: xml
# title: powershell ise config
# description: Enable .Net 4 and \\UNC path modules for PowerShell, PowerShell_ISE and even wsmprovhost.exe by using this app.config.
# version: 4.0
# author: Joel Bennett
# license: CC0
# x-poshcode-id: 2045
# x-derived-from-id: 2969
# x-archived: 2017-04-22T16:01:46
# x-published: 2011-08-03T18:41:00
#
# For example, save as C:\Windows\System32\WindowsPowerShell\v1.0\powershell_ise.exe.config
#
<configuration>
   <startup useLegacyV2RuntimeActivationPolicy="true">
      <supportedRuntime version="v4.0" />
      <supportedRuntime version="v2.0" />
      <process>
         <rollForward enabled="false" />
      </process>
   </startup>
   <runtime>
      <loadFromRemoteSources enabled="true"/>
   </runtime>
</configuration>