PoshCode Archive  Artifact [9022fda60c]

Artifact 9022fda60ca3e32910dc94ac4b74864af3f72566ce09b3019e8fbf3704150f09:

  • File powershell-ise-config.ps1 — part of check-in [a5a390aa45] at 2018-06-10 13:03:27 on branch trunk — Enable .Net 4 and \\UNC path modules for PowerShell ISE by using this app.config. Save as C:\Windows\System32\WindowsPowerShell\v1.0\powershell_ise.exe.config (user: Joel Bennett size: 669)

# encoding: ascii
# api: xml
# title: powershell ise config
# description: Enable .Net 4 and \\UNC path modules for PowerShell ISE by using this app.config. Save as C:\Windows\System32\WindowsPowerShell\v1.0\powershell_ise.exe.config
# version: 4.0
# author: Joel Bennett
# license: CC0
# x-poshcode-id: 1971
# x-archived: 2016-03-27T04:12:27
# x-published: 2011-07-13T14:08:00
#
#
<configuration>
	<startup>
		<supportedRuntime version="v4.0" />
		<supportedRuntime version="v2.0.50727" />
		<process>
			<rollForward enabled="false" />
		</process>
	</startup>
	<runtime>
		<loadFromRemoteSources enabled="true"/>
	</runtime>
</configuration>