# 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>