我正在使用应用池和创建的虚拟目录here 我试图弄清楚如何为应用程序池和虚拟目录设置回收工作进程只需几分钟我试图将执行权限更改为脚本和可执行文件,为虚拟添加相同的用户名和密码权限目录并不确定这是否可行,但在powershell中添加映射。我也在使用iis 6.0。
答案 0 :(得分:0)
这里有更多信息:
$newPool.PeriodicRestartTime = 60 #sets the recycle worker processes(in minutes)
$newVDir.AccessExecute = $True #sets execuatable access
$newVDir.AccessScript = $True #sets script access
$newVDir.AnonymousUserName = $poolUserName #sets user name
$newVDir.AnonymousUserPass = $poolPassword #sets user password
我还没有找到如何添加其他映射,但看到微软是否可以回答其中一些问题。
祝你好运。