我正在尝试在x64中运行X86应用程序。对于微软在http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/405f5bb5-87a3-43d2-8138-54b75db73aa1.mspx?mfr=true
提供以下代码cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 “true”
运行此脚本时出现错误
在char 25 描述:预期的最终声明 代码:800A0401
我不知道要检查的VBscript语法。请帮帮我。
答案 0 :(得分:2)
我想问题是“true”
中的花哨引号。请尝试使用"true"
或true
。
答案 1 :(得分:0)
我认为是
set
代码中的。我建议像这样:
cscript.exe adsutil.vbs
set W3SVC/AppPools/Enable32BitAppOnWin64 “true”