Home > vbscript compilation > expected identifier error in vbscript

Expected Identifier Error In Vbscript

Contents

that is not a VBScript reserved microsoft vbscript compilation error '800a0401' expected end of statement word). Enclose the reserved word in [ ].

Need Help about VBScript? Download VbsEdit! This package includes VbsEdit 32-bit, VbsEdit 64-bit, HtaEdit 32-bit and HtaEdit 64-bit.The evaluation version never expires. Home Copyright © 2001-2016 Adersoft

here for a quick overview of the site Help Center Detailed answers to any questions you might have vbs expected end of statement 800a0401 Meta Discuss the workings and policies of this site About Us Learn vbscript compilation error expected statement more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us microsoft vbscript compilation error '800a0400' expected statement Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like http://www.vbsedit.com/html/39750918-5a76-4329-aa39-8026df529487.asp you, helping each other. Join them; it only takes a minute: Sign up vbscript : unexpected identifier up vote 0 down vote favorite In my code I get the following error message c:\dpdata_copy2.vbs(114,13) Microsoft VBScript compilation error: Expected identifier line 114 points to a blank line so I assuemd it was throwing an error at the http://stackoverflow.com/questions/480533/vbscript-unexpected-identifier following line: Lastprop = f.DateLastModified in the code strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") strFolderName = "D:\1\production\Openjobs" Set colSubfolders = objWMIService.ExecQuery _ ("Associators of {Win32_Directory.Name='" & strFolderName & "'} " _ & "Where AssocClass = Win32_Subdirectory " _ & "ResultRole = PartComponent") 'variables for getting last accessed property Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") For Each objFolder in colSubfolders 'get last modified date Set f = fs.GetFolder(objFolder.Name) Lastprop = f.DateLastModified 'MsgBox(Lastprop) if ( DateDiff("m", f.DateLastModified, Now()) > 4) then diffindates = DateDiff("m", f.DateLastModified, Now()) Set objShell = CreateObject("Shell.Application") Set objCopyFolder = objShell.NameSpace(ParentFolder) OutputToLog("rem " & f.DateLastModified & ":" & objFolder.Name ) outputtolog("move /Y """ & objFolder.Name & """ " & ParentFolder) wscript.echo(diffindates & ":" & objFolder.Name & vbCr) end if Next Any ideas? or should I post the entire script up? vbscript share|improve this question edited Jan 26 '09 at 18:17 Patrick Cuff 18.4k74984 asked Jan 26 '09 at 17:08 phill 3,6752885127 What's objFolder? Does it have a value fo

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack http://stackoverflow.com/questions/13843981/expected-identifier-code-error-when-running-script Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community http://www.codingforums.com/asp/80765-expected-identifier-error.html of 4.7 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up Expected Identifier Code Error when running script? up vote -4 down vote favorite 1 I got this vbscript compilation script off the technet website, but I get an error when I try to execute it on my Windows 7 machine. I am completely new to scripting, but I wonder if this was made for an older OS and needs a bit of changing for Windows 7? I'm quite sure the guy who wrote it up tested it. I get the Windows Script Host Error as follows: Line: 1 Char: 10 vbscript compilation error Error: Expected Identifier Code: 800A03F2 Source: Microsoft VBScript compilation error. Here's the script: Function New-BackUpFolder($destinationFolder) { $dte = get-date $dte = $dte.tostring() -replace "[:\s/]", "." $backUpPath = "$destinationFolder" + $dte $null = New-Item -path $backUpPath -itemType directory New-Backup $dataFolder $backUpPath $backUpInterval } #end New-BackUpFolder Function New-Backup($dataFolder,$backUpPath,$backUpInterval) { "backing up $dataFolder... check $backUppath for your files" Get-Childitem -path $dataFolder -recurse | Where-Object { $_.LastWriteTime -ge (get-date).addDays(-$backUpInterval) } | Foreach-Object { copy-item -path $_.FullName -destination $backUpPath -force } } #end New-BackUp # *** entry point to script *** $backUpInterval = 1 $dataFolder = "C:\fso" $destinationFolder = "C:\BU\" New-BackupFolder $destinationFolder windows-7 vbscript copy backup share|improve this question edited Dec 12 '12 at 19:58 asked Dec 12 '12 at 16:16 user1898410 11 3 What have you tried? –thegrinner Dec 12 '12 at 16:40 Looking at line: 1, char: 10, I would guess that 'New' is a protected word. Try changing the names of the methods to not be prefixed with 'New-'. –dma Dec 12 '12 at 16:41 Please revise your subject line so the question will be useful to future visitors to the site. Otherwise, it is "too localized". –Raymond Chen Dec 12 '12 at 17:20 add a comment| 1 Answer 1 active oldest votes up vote 1 down vote that's ac

New? Today's Posts FAQ Rules Guidelines Search Advanced Search Forum :: Server side development ASP Expected identifier Error If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. Enjoy an ad free experience by logging in. Not a member yet? Register. Results 1 to 2 of 2 Thread: Expected identifier Error Thread Tools Show Printable Version Email this Page… Subscribe to this Thread… Rate This Thread Current Rating Excellent Good Average Bad Terrible 02-27-2006,08:53 PM #1 DigitalFusion View Profile View Forum Posts New Coder Join Date Jan 2006 Posts 33 Thanks 2 Thanked 0 Times in 0 Posts Expected identifier Error Ok, I cant figure this out, and I am sure it is somethign stupid cause I am over tired. I am getting this error: Error Type: Microsoft VBScript compilation (0x800A03F2) Expected identifier /intranet/sales_cservice/ezpricer/pricerfunctions.asp, line 3, column 4 Sub Currency(str) ---^ This is the sub: Sub Currency(str) if str <>"" then str = FormatCurrency(str,2) End Sub What am I missing here? Reply With Quote 02-27-2006,09:09 PM #2 Brandoe85 View Profile View Forum Posts teh Moderatorinator Join Date Sep 2004 Location USA Posts 2,472 Thanks 4 Thanked 40 Times in 40 Posts Currency is more than likely a reserved word and you cannot use it's name. you also need to put your if statement on one line if you're not going to put an end if, I also think you want to use a function instead and return the value: Code: Function NewName(str) if str <>"" then str = FormatCurrency(str,2) end if NewName = str End Function ' or if you want to use a one-liner Function NewName(str) if str <>"" then str = FormatCurrency(str,2) NewName = str End Function Good luck; -Brando Why using tables for eating is stupid! Reply With Quote « Previous Thread | Next Thread » Posting Permissions You may not post new threads You may not post replies You may not post attachments You may not edit your posts BB code is On Smilies are On [IMG] code is On [VIDEO] code is On HTML code is Off Forum Rules Sponsored Ads -- Green Fluid (In Use) -- Default Mobile Style CodingForums.com Archive Top All times are GMT +1. The time now is 11:44 AM. Powered by vBulletinCopyright ©2000 - 2016, Jelsoft Enterprises Ltd.

 

Related content

800a03ea vbscript compilation error

a ea Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Expected End Of Statement a li li a href Vbscript Compilation Error Expected Identifier a li ul td tr tbody table p here for a quick overview of the site relatedl Help Center Detailed answers to any questions vbscript compilation error a ea class you might have Meta Discuss the workings and policies of this p h id Microsoft Vbscript Compilation Error a p site About Us

800a03ee vbscript compilation error

a ee Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected Statement a li li a href Vbscript Compilation Error a ea a li li a href Vbscript Compilation Error Name Redefined a li li a href Vbscript Compilation Error Cannot Use Parentheses When Calling A Sub a li ul td tr tbody table p jokes This Error A EE can be tricky While it is indeed relatedl a syntax error it may not be where microsoft vbscript compilation error a you expect Therefore check the Char

800a0409 vbscript compilation error

a Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error a ea a li ul td tr tbody table p A - Unterminated string constant An easy error to cure especially if you count the Char number Naturally start at relatedl the beginning of the line referenced in the error microsoft vbscript compilation error a message Solving A really is that easy Introduction to Error Code A This

const strfolder syntax error

Const Strfolder Syntax Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error a a li li a href Use Strict a li ul td tr tbody table p relatedl p h id Microsoft Vbscript Compilation Error a p HomeLibraryLearnDownloadsRepositoryCommunityForumsBlog Ask a question Quick microsoft vbscript compilation error a access Forums home Browse forums users FAQ Search p h id Vbscript Compilation Error Syntax Error p related threads Remove From

error 1032 invalid character

Error Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a ea a li li a href Microsoft Vbscript Compilation Error Fix a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site relatedl About Us Learn more about Stack Overflow the company Business Learn microsoft vbscript compilation error invalid character more about hiring developers or posting ads with us Stack Overflow Questions Jobs

error 800a0401

Error a table id toc tbody tr td div id toctitle Contents div ul li a href Vb Error a a li li a href Expected End Of Statement Vbscript Compilation Error a li li a href Expected End Of Statement Error In Qtp a li li a href Vbscript Compilation Error Expected Statement a li ul td tr tbody table p A - Expected End of Statement Good news here is another example of a WSH error message with a helpful Char number Count along the line until you get relatedl to the offending character With Error A start

error 800a0400 expected statement

Error a Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Vbscript Compilation Error Expected End Of Statement a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have noticed with error A how often the problem is at the relatedl beginning or the end of the line mentioned in the vbs error a error message Introduction

error 800a0400

Error a table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected Statement a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href a Expected statement a li li a href Expected Statement End If a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company relatedl Business Learn more

error code 800a0400

Error Code a table id toc tbody tr td div id toctitle Contents div ul li a href a Expected statement a li li a href Expected Statement End If a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have relatedl noticed with error A how often the problem is microsoft vbscript compilation error a expected statement at the beginning or the end of the line mentioned in the vbs error a error message Introduction to Code A Error code A is a generic

error type microsoft vbscript compilation 0x800a0400 expected statement

Error Type Microsoft Vbscript Compilation x a Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected Statement a li li a href a Expected statement a li li a href Expected Statement End If a li li a href Vbscript Tutorial a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have noticed with error A how often the problem is at the relatedl beginning or the end of the line

error type microsoft vbscript compilation 0x800a0408 invalid character

Error Type Microsoft Vbscript Compilation x a Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Invalid Character a li li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Fix a li li a href Microsoft Vbscript Compilation Error a a li ul td tr tbody table p Ask a Question Need help Post your question and get tips solutions from a community of relatedl IT Pros Developers It's quick easy p h id Microsoft Vbscript Compilation Error a

error type microsoft vbscript compilation 0x800a0401 expected end of statement

Error Type Microsoft Vbscript Compilation x a Expected End Of Statement table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected End Of Statement Dim a li li a href a Expected end of statement a li ul td tr tbody table p New Today's Posts FAQ Rules Guidelines Search Advanced Search relatedl Forum Server side development ASP Error Type Microsoft expected end of statement vbscript compilation error VBScript compilation x A Expected end of statement If this is your p h id Microsoft Vbscript Compilation Error a Expected

expected end of statement vbscript compilation error

Expected End Of Statement Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a f Expected end a li li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Name Redefined a li li a href Vbscript Compilation Error Cannot Use Parentheses When Calling A Sub a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to relatedl any questions you might have Meta Discuss the microsoft vbscript compilation error a

how to fix microsoft vbscript compilation error

How To Fix Microsoft Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error a ee Expected a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of relatedl this site About Us Learn more about Stack Overflow the company microsoft vbscript compilation error a Business

invalid character error in vbscript

Invalid Character Error In Vbscript table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a ea a li li a href How To Run Vbscript a li li a href Notepad Tricks a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss relatedl the workings and policies of this site About Us Learn microsoft vbscript compilation error a more about Stack Overflow the company Business Learn more about hiring developers or vbscript

invalid character vbscript error

Invalid Character Vbscript Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error Invalid Character a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a ea a li li a href Microsoft Vbscript Compilation Error a a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies relatedl of this site About Us Learn more about Stack Overflow

invalid character error in qtp

Invalid Character Error In Qtp table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error a ea a li li a href Notepad Tricks a li ul td tr tbody table p - Invalid Character Introduction to Code A This error code A occurs when you execute a VBScript A relatedl wild guess a problem with an apostrophe possibly in microsoft vbscript compilation error invalid character a 'REM statement The Symptoms You Get The script does not execute p h id

invalid character vbscript compilation error

Invalid Character Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a a li li a href How To Run Vbscript a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might relatedl have Meta Discuss the workings and policies of this p h id Microsoft Vbscript Compilation Error a p site

microsoft vbscript compilation error code 800a0400

Microsoft Vbscript Compilation Error Code a table id toc tbody tr td div id toctitle Contents div ul li a href Expected Statement End If a li ul td tr tbody table p Tips Tricks Top Articles Beginner Articles Technical Blogs Posting Update Guidelines Article Help Forum Article Competition Submit an article or tip Post your Blog quick answersQ A Ask relatedl a Question View Unanswered Questions View All Questions Linux questions vbscript compilation error expected end of statement C questions ASP NET questions SQL questions fabric questions discussionsforums All Message Boards Application Lifecycle microsoft vbscript compilation error expected statement

microsoft vbscript compilation error expected statement

Microsoft Vbscript Compilation Error Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Expected Statement End If a li li a href Vbscript Expected a li li a href Vbscript Hello World a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better relatedl error message I have noticed with error A how p h id Microsoft Vbscript Compilation Error Expected Statement p often the problem is at the beginning

microsoft vbscript compilation error 800a0400 expected statement

Microsoft Vbscript Compilation Error a Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Expected Statement End If a li li a href Vbscript Hello World a li li a href How To Run Vbscript In Cmd a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have noticed with error A how often relatedl the problem is at the beginning or the end of vbscript compilation error expected end of statement the line mentioned in the

microsoft vbscript compilation error invalid character

Microsoft Vbscript Compilation Error Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error a ea a li li a href How To Run Vbscript a li ul td tr tbody table p here for a quick overview relatedl of the site Help Center Detailed answers microsoft vbscript compilation error a to any questions you might have Meta Discuss the workings p h id Vbscript Compilation Error Syntax Error p and policies of this site About Us Learn more

microsoft vbscript compilation error 800a0400 option explicit

Microsoft Vbscript Compilation Error a Option Explicit table id toc tbody tr td div id toctitle Contents div ul li a href Expected Statement End If a li li a href Vbscript Goto a li ul td tr tbody table p of my ASP page Microsoft VBScript compilation error ' a ' Expected relatedl statement mailform asp line Option Explicit Would microsoft vbscript compilation error a expected statement anyone know why that is westmich - - UTC vbscript compilation error expected end of statement Are there any variables you are not initializing SeFu - - UTC hmm not sure i

microsoft vbscript compilation error 800a0400

Microsoft Vbscript Compilation Error a table id toc tbody tr td div id toctitle Contents div ul li a href a Expected statement a li li a href Expected Statement End If a li li a href Vbscript Goto a li ul td tr tbody table p p p p p p p MICROSOFT VBSCRIPT COMPILATION ERROR ' A ' IDMWS DOCVIEW ASP LINE -- INCLUDE FILE IN Technote troubleshooting Problem Abstract Microsoft VBScript compilation error ' a 'Expected statement idmws Do Resolving the problem Microsoft VBScript compilation error ' a ' Expected statement idmws DocView asp line -- INCLUDE

microsoft vbscript compilation error 800a0400 option

Microsoft Vbscript Compilation Error a Option table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected End Of Statement a li li a href Expected Statement End If a li ul td tr tbody table p New Today's Posts FAQ Rules Guidelines Search Advanced Search Forum Server side development ASP Option explicit error If this is your first visit be relatedl sure to check out the FAQ by clicking the link above microsoft vbscript compilation error a expected statement You may have to register before you can post click the register

microsoft vbscript compilation error 800a0408 invalid character

Microsoft Vbscript Compilation Error a Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a a li li a href How To Run Vbscript a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have relatedl Meta Discuss the workings and policies of this site p h id Microsoft Vbscript Compilation Error

microsoft vbscript compilation error

Microsoft Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Fix a li li a href Microsoft Vbscript Compilation Error a a li ul td tr tbody table p HomeLibraryLearnDownloadsRepositoryCommunityForumsBlog Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Answered by Getting Microsoft VBScript compilation relatedl error Expected statement and Terminated with exit code p h id Microsoft

microsoft vbscript compilation error '800a0401

Microsoft Vbscript Compilation Error ' a table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected End Of Statement Dim a li li a href Expected Statement Error In Vbscript a li li a href Expected End Of Statement Uft a li li a href Microsoft Vbscript Compilation Error Expected a li ul td tr tbody table p A - Expected End of Statement Good news here is another example of a WSH error message with a helpful Char number Count along relatedl the line until you get to

microsoft vbscript compilation error invalid character line 1 column 1

Microsoft Vbscript Compilation Error Invalid Character Line Column table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a ea a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the relatedl workings and policies of this site About Us Learn more microsoft vbscript compilation error a about Stack Overflow the company

microsoft vbscript compilation error 800a0408

Microsoft Vbscript Compilation Error a table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a ea a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you relatedl might have Meta Discuss the workings and policies of microsoft vbscript compilation error a this site About Us Learn more about Stack Overflow the company Business Learn p

microsoft vbscript compilation error 800a0400 expected statement end if

Microsoft Vbscript Compilation Error a Expected Statement End If table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected End Of Statement a li li a href a Expected statement a li li a href Vbscript Hello World a li li a href Vbscript Tutorial a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies relatedl of this site About Us Learn more about Stack Overflow p h id

ms vbscript compilation error 800a0400

Ms Vbscript Compilation Error a table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected End Of Statement a li li a href Expected Statement End If a li li a href Vbscript Expected a li li a href Vbscript Hello World a li ul td tr tbody table p Ask a Question microsoft vbscript compilation error expected statement Need help Post your question and get tips solutions from a expected statement a community of IT Pros Developers It's quick easy Microsoft VBScript compilation error ' a ' p h id

ms vbscript compilation error

Ms Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Fix a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies relatedl of this site About Us Learn more about Stack Overflow microsoft vbscript compilation error a the company Business Learn more about hiring