通过appcmd.exe设置IIS配置以加载用户配置文件

时间:2013-03-14 17:04:33

标签: iis powershell appcmd

我正在尝试使用appcmd.exe通过powershell脚本将“加载用户配置文件”的配置设置为true。阅读了很多文档后,我无法弄清楚正确的语法。

应用程序池的名称就像'accountsmanagement.example.com'我尝试了以下变体,但所有错误都出现了:

c:\Windows\system32\inetsrv\appcmd.exe set config -section:applicationPools /accountsmanagement.example.com.processModel.loadUserProfile:true

如何通过appcmd.exe正确设置加载用户配置文件?

3 个答案:

答案 0 :(得分:13)

尝试使用引号。

c:\windows\system32\inetsrv\appcmd.exe set config -section:applicationPools "/[name='accountsmanagement.example.com'].processModel.loadUserProfile:false"

答案 1 :(得分:12)

如果您想纯粹使用PowerShell,可以使用以下PowerShell命令更改应用程序池的“加载用户配置文件”属性。

Import-Module WebAdministration

Set-ItemProperty "IIS:\AppPools\YourAppPoolName" -Name "processModel.loadUserProfile" -Value "False"

答案 2 :(得分:1)

您也可以使用以下

代替appcmd.exe set config
appcmd.exe set apppool "App Pool name here" -processmodel.loaduserprofile:"true"

要显示所有可以设置的值,请​​使用

appcmd.exe set apppool "App Pool name here" /?