Error code 800A0401 while running VB script
I am trying to run X86 application in x64. For that Microsoft provided with the below code at http://www.microsoft.com/technet/prodt开发者_如何学Pythonechnol/WindowsServer2003/Library/IIS/405f5bb5-87a3-43d2-8138-54b75db73aa1.mspx?mfr=true
cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 “true”
While running this script I am getting error
at char 25 Description: Expected end statement Code: 800A0401
I don't know VBscript syntax to check. Please help me.
I guess the problem is fancy quotes in “true”
. Try using "true"
or true
instead.
I think it's the
set
in the code. I suggest having it like this:
cscript.exe adsutil.vbs
set W3SVC/AppPools/Enable32BitAppOnWin64 “true”
精彩评论