Troubleshooting Code 800A03F4 – Variable is undefinedIntroduction to Code 800A03F4Error code 800A03F4 occurs when you execute a VBScript. To be blunt this is due to carelessness. Either you have not declared a variable at all, or you have misspelt it later in the script. The Symptoms You GetThe script does not execute as you hoped, instead you get a WSH error message. The Cause of Error 800A03F4Code 800A03F4 means that you are using Option Explicit but you have not declared a variable as a Dim Statement in your script. Note that the Source: is a runtime error (and not compilation error). The Solution to Variable is undefinedThe key to solving error 800A03F4 is reading the reference, ‘Error: Variable is undefined: ‘xyz’. In my example ‘xyz’ is ‘numusers’. You could also double check to see if you are using Option Explicit. If so, then you need to declare the variable mentioned in the error message. In my example, Windows Scripting Host is telling us that the problem is at Line: 239, in addition to regular lines, count blank lines and lines with remarks. Beware you may, as in my example have correctly declared a similar variable, and all this error is a typo, ‘numusers’ instead of ‘intNumusers’. My point is that declaring ‘numusers’, would stop the error message but would result in a faulty script. Preventing such problems is the reason I have Option Explicit alert me to potential logical errors. In this case the Char: number (1), may not be the place on the line where the variable is found, so check the whole line. ‡ Example of Error 800A03F4 ScriptYou can see Dim statements at the beginning of the script, also observe that Option Explicit is set at the beginning of the script.
Option Explicit ‘ Objects Dim intNumusers
Then go to line 239 and see the variable numusers, this is the root cause of the problem. The solution is, either declare this variable at the start or, as it is a typo, alter numusers to intNumusers ‘…..Cut to line line 231 231 End If 236 Loop
See More Windows Update Error Codes 8004 Series• Error 800A101A8 Object Required •Error 800A0046 •Error 800A10AD •Error 800A000D • Error 80048820 •Error 800A0401 •Review of SolarWinds Permissions Monitor • Error 80040E14 • Error 800A03EA • Error 800A0408 • Error 800A03EE Guy Recommends: WMI Monitor and It’s Free!Windows Management Instrumentation (WMI) is one of the hidden treasures of Microsoft operating systems. Fortunately, SolarWinds have created the WMI Monitor so that you can examine these gems of performance information for free. Take the guess work out of which WMI counters to use for applications like Microsoft Active Directory, SQL or Exchange Server. Download your free copy of WMI Monitor Do you need additional help?
Give something back? Would you like to help others? If you have a good example of this error, then please email me, I will publish it with a credit to you: If you like this page then please share it with your friends
|