是否有appcmd用于通过appcmd在IIS7上的Load User Profile
上将DefaultAppPool
设置为false?
我已经尝试过这个
%systemroot%\system32\inetsrv\appcmd set config -section:applicationPools /[name='DefaultAppPool'].processModel.loadUserProfile:false
但这仅为defualt App Pool设置,并且不会更改名为“
的主要设置Set Application pool defaults..."
答案 0 :(得分:5)
您可以使用以下方法执行此操作:
c:\windows\system32\inetsrv\appcmd.exe set config -section:applicationPools "/[name='appPoolNameGoesHere'].processModel.loadUserProfile:false"
c:\windows\system32\inetsrv\appcmd.exe set config -section:applicationPools "/[name='appPoolNameGoesHere'].processModel.loadUserProfile:true"