PoshCode Archive  Artifact [585288e6b0]

Artifact 585288e6b0bd4890a8af042b59698c9318beec68076f03cd5d83a157ab082761:

  • File powershell-ise-config.ps1 — part of check-in [21de747283] at 2018-06-10 13:04:22 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: 726)

# 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: 2044
# x-archived: 2010-08-06T18:07:16
#
# 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>