WScript Error

Im beginner in VBScript.Im getting an
errorregarding "Wscript" means whenever I use WScript object, it shows
Errors as " Object required: WScript" & "Variable undefind :
Wscript" . Mostly I get "Object required: Wscript" erroe message
whenver I declare
WScript object.

View Replies


ADVERTISEMENT

WScript.Shell Run Error

I am currently in the process of converting a website from an existing
web host to our servers. This website used the WScript.Shell command
to execute a series of Java commands that would send an encrypted
email.

I ran these commands directly on the server and they execute properly,
but when I try to run them from within the WScript.Shell command then
I get a return code of 1, and the actions that should be completed are
not.

The shell is executing a .bat file which is in the same directory the
text files it needs to run the following sample command(s): Code:

View Replies View Related

Wscript.shell Error

Trying to view asp page which has the following code in
Set obj = WScript.CreateObject('WScript.Shell')

It falls over on this line saying 'Activex cannot create component (wscript.shell)'. Doing the same in a .vbs file results in the same error. The platform is NT4 Server Service Pack 6a.

View Replies View Related

Wscript.CreateObject Error On ASP Page

The statement in an asp page:

dim objShell
Set objShell = WScript.CreateObject("WScript.Shell")

now gives this error:
VB err= 424,Object required

If I use setobjShell=Server.CreateObject("WScript.Shell"), I get the error
VB err= 5,Invalid procedure call or argument

I believe it stopped working in July 2004 after a security update. I have
re-registered the appropriate dlls and ocxs.

Does anyone have an idea? I am trying to use this object so that I can
execute a batch file that was created earlier in the program.

View Replies View Related

Using WScript In ASP

how to use WScript in ASP? I figured out that if I use a WSH object to send the keystroke {F5} it will refresh the pages adequately. (see my thread Refreshing Pages! for what I am taling about) Anyway, this code: Code:

Set wshshell=WScript.CreateObject("wscript.shell")
wshshell.sendkeys {F5}

Should accomplish this. Or something similar should work. Anyways, I don't entirely know how to do this.

View Replies View Related

Using Wscript Object

how to copy a file from local machine to remote machine using wscript object.

View Replies View Related

Wscript.Shell

Currently, I move a application from win 2000 server to 2003 server, I use some vbs file in this application, however, it seems that those vbs file can not be run from 2003 server. Below is my code, can some one point out what did I do wrong here?

DIm objShell
Set objShell = Server.CreateObject("WScript.Shell")
objShell.Run(ExeName)
Set objShell = Nothing

View Replies View Related

Wscript Permissions

i created an asp script that calls wscript which in turn calls up an .bat file. I have tested this script on my machine on my home win2k3 machine but cannot reproduce the same thing on my other server. Right now, IIS requres "intergrated windows authentication" login and run the script.

I ve given the user account every possible permission combo i thought of. The script in question has permissiont to run, it even has admin priviledges for testing purposes. But nothing happens when i run it from my page. I am completly stuck right now. No idea how to persue this b/c ive exhuasted every possible thing i know and every tip i read about.

View Replies View Related

Wscript.Shell.run Returns 254

I am trying to run a command line from an ASP page. I am using windows 2003 with IIS6. I am able to get this to run on my local machine (Windows XP IIS5). Here is my code:

View Replies View Related

Wscript.shell Win2k

For win2k adv server/iis5.0 trying to run an external program from my asp routine that has multiple
parameters, see following.

set shell = server.createobject("wscript.shell")
shell.Run """f:phsDatahtmldochtmldoc.exe"" --webpage -f phsnew.pdf
phsnew.htm"

program either doesn't get invoked, or has an error, but since it has no error log i can't check that, so not sure why not getting a result i have run the program successfully from the command line in that directory, so know it can be run in the first place and the asp program creates and writes files in the same directory so i don't think its a permission problem. asp doesn't complain with any errors.

View Replies View Related

Wscript.Shell Run Program

I am trying to use the Run method of WScript.Shell to run a program that creates image files on the server. When I run the program through the command line it creates a text file and a bmp file which is what it is supposed to do.

If I run it from an asp page it doesnt do anything, it also doesnt give me any error messages. I can run the same vbscript code in a standalone vbs file on the server and it works right. Code:

View Replies View Related

Running .vbs File From Asp Using Wscript

i'm trying to run a .vbs file from my asp web page using wscript but keep getting a 'permission denied' error on line 5

here is the code:

<%

Dim oShell
Set oShell = Server.CreateObject ("WSCript.shell")
oShell.run "C:inetpubwwwrootib_submit.vbs" '(line 5)
Set oShell = Nothing

%>

View Replies View Related

ActiveXObject Vs WScript.CreateObject

what is the difference between these two jscript statements?

object = new ActiveXObject("myobject.object");

vs

object = WScript.CreateObject("myobject.object");


on my samples they practically does the same. what are the differences (if any). when would you use one over the other?

View Replies View Related

Using WScript.Shell And The Run Command

I've been testing the WScript.Shell object and the Run command now for a server query. The file I am running generates a file with the server querys which i later on parse in my page. But there is a problem. When running the Run command om my Windows XP machine it all seems fine. But when trying to run it on my webserver (not configured by myself) I get an error, or the command fails. It's nothing wrong with the acctuall command but ASP seems to not want to allow the Run command.

First I though it had to do with user privilegies but after giving the IUSR_X full access it didn't help. So, does anybody know a solution for this? Exactly what do I have to configure, for what user, to make this work on my webserver (win2k).

View Replies View Related

WScript.Shell Object

I've made an ASP page that calls a small executable and collects its text output into a variable ("strExeOut") below. Below is some code similar to the one I use for that purpose.

strExe = "C:whatevermyprogram.exe -h1 -d33"

Set objShell = CreateObject("WScript.Shell")
Set objScriptExec = objShell.Exec(strExe)
strExeOut = objScriptExec.StdOut.ReadAll

I developed this in my own computer and the whole thing works like a charm, but
unfortunately I assumed my hosting provider would let me run the (little and harmless) exe, and they won't.

Therefore I have to run only the "exe" portion of the code in another web server and send back the output to my website on the net. I'd like to get some feedback on what would be the best way to call an exe on another server, and to have the output sent back.

View Replies View Related

Wscript.shell To Open File

I have a big problem with some part of my code, where I'm using the wscript.shell method to open a file...

I've tried this:

dim shell
set shell= createobject("wscript.shell")
shell.run "C:Clip_CreatorTVSA02.bat"
set shell=nothing

and this

Function fnShellExecuteVB()
dim objShell
set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "C:WINNT
otepad.exe", "", "", "open",1
set objShell = nothing
End Function

I don't get any error but the application doesn't starts, I've also tried executing the notepad.exe and occurrs the same, nothing happens, I don't get error but the notepad doesnt lunch...

I'm getting tired about this code, I've tried a lot of kinds of scripts but I got the same result...

View Replies View Related

How To Use WScript.Shell Properly From An ASP Page?

I have a process that creates a whole bunch of files in a specified directory. The names of the files are the employee IDs with an .txt extension, so they are like

EMP001.txt
EMP002.txt
EMP003.txt

The background is a bit more complicated so I won't bore you with it, but I hope that I can add a button on the asp page that would

1) go to that specified directory, which is database-driven by the department id, such as

D:DepartmentDEPT001

and I'll be able to figure the directory path from the existing code

2) then loop through each employee id and append the employee name, so the above will become

EMP001JohnDoe.txt
EMP002MaryJane.txt
EMP003PeterKay.txt

The employee names are also database driven and my asp page will be able to provide the information.

What I would like is to have a button that would open the cmd.exe and make the appropriate changes, and then do the rename, and then close the cmd window.

I know that you can have something like: Code:

View Replies View Related

VBscript IIS And WScript.Shell Object

can SO tell me why the following script :

dim oShell
set oShell=WScript.CreateObject("WScript.shell")
oShell.run ("C:WINNTsystem32cmd.exe /c C:WINNTsystem32
otepad.exe")
set oShell=nothing

works as expected in the context of a .vbs script and doesn't work (with the following changes made...) when inserted in a .asp web page under IIS ?

dim oShell
set oShell=Server.CreateObject("WScript.Shell")
'
intReturn = oShell.run ("C:WINNTsystem32cmd.exe /c C:WINNTsystem32
otepad.exe")
response.write(intReturn)
set oShell=nothing

the Shell object is well created (i can check some of its properties) but the oShell.run command doesn't seem to execute the given command line.

View Replies View Related

WScript.Shell And ASP, Permission Problem On IIS 5

When I call the WScript.Shell and "RUN" the object...

I've got nothing on the server

For Example,

objWscript.Run "notepad.exe", True, 1

But on the server side, there is no this process running..

The NTFS of notepad.exe permission is set to EVERYONE already..
While the IIS is running under the account of IUSR_XXXX

Is there any something wrong in the permission settings?

However, I run the same script on Windows 2003 Server, it is ok....

View Replies View Related

WScript.Shell To Execute Ms-DOS Commands?

How can I use WScript.Shell to execute Ms-DOS commands and can I see the
outputs commands in the asp page?

In the past, using Win. NT 4 Server and cmd..shell attribute to a variable I
could write the results in the screen page.

Any sample?

I couldnīt find any samples yet for win. 2000,ms-iii 5.0 and asp in my help
files, tutorials and guides, etc...

View Replies View Related

Access Denied To Wscript.shell

I need to use nslookup on an asp page. So I use the sort of code I can see
in the discussion group:

SET objShell = Server.CreateObject("Wscript.Shell")
DIM objExec
SET objExec = objShell.Exec("%comspec% /c nslookup -type=MX "&host)

but I get "access denied" on the SET statement. (It doesn't matter what
command I am using in the shell.)

On the physical IIS application directory Web sharing is enabled
I enable anonymous access
I have full control for the internet guest account.
I have permission for scripts and executables on the virtual directory
application protection low
read write directory browse

I have enabled web sharing for windowsSystem32. (I probably shouldn't have!)

Clearly there is something I have forgotten. But what?

View Replies View Related

'WScript' Hasn't Been Defined"

I use the following code in developing a web application with ASP. But after viewing in browser, it told me "Error: 'WScript' hasn't been defined".

the following code:
<script language="JScript" >
function funGetSleep()
{
//to sleep 1 min
WScript.Sleep(60000);
alert("it is ok");
}
</script> .

View Replies View Related

Running Batch File Using WScript.shell Not Working

i used following code:

<%
set wshell = server.createobject("WScript.shell")
wshell.run "E:aaa.bat"
set wshell = nothing
response.write("worked")
%>

It does not show any error message and gives the output "worked"

I have installed .dll files for wsscript

Is there any other way to call batch file from aan asp page .

View Replies View Related

Server Object Wscript.Shell - Permission Denied

im using server object Wscript.Shell in an asp page to run a bat file, under C:inetpubwwwroot, and after i run the ASP page, it give me an error message that

Error Type:
Microsoft VBScript runtime (0x800A0046)
Permission denied
/wss1/bat.asp, line 22

im sure that Windows Scripting Host is running well in my pc. But it still giving me this problem.below is my coding of the asp pages. Code:

View Replies View Related

ActiveXObject Problem - WScript.Shell On Windows 2003 Server

I have installed MSDE on my local computer - Windows 2000 Professional. I have created a function which runs me a link whose path is placed in the input field. This function looks like this: Code:

View Replies View Related

Wscript.Shell Run PRINT And NET PRINT Returns Nothing

No error or any feedback that I can work with.

Code:
set objShell = Server.CreateObject("WScript.Shell")

objShell.Run "%comspec% /c NET PRINT GarchiveISLaser[color=blue]
>c:WUTempPrinter_Status1.txt", 0, True[/color]
objShell.Run "%comspec% /c PRINT /d:GarchiveISLaser c:WUTemp est.txt",
0, True

Set objShell = nothing

I can run these commands successfully from the command-prompt on the server
but from an ASP page, I get nothing not even an error. The Text output for
NET PRINT is a blank text file.

I feel something is different on the permissions side because this
code/approach use to work fine.

View Replies View Related

ActiveXObject("WScript.Shell")

I'm using this code
var file = new ActiveXObject("WScript.Shell");
file.Run(FileName);

but in case the file name is of type html i get the file in the same window and i'm 'loosing' my site.i want to have the new opened document in a new window.

View Replies View Related

I Have A Error Called Microsoft VBScript Runtime Error- Error '800a000d'

I got an error saying

Microsoft VBScript runtime error- Error '800a000d'

Type mismatch

/briansforums/default.asp, line 923

also another error called Code:

View Replies View Related

Error: HTTP 500.100 - Internal Server Error - ASP Error

# Error Type:

Server object, ASP 0177 (0x800401F3)

Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp.
/CoxAxis/adminEditPage.asp, line 6

My code:

<%
dim self, pid, i, c
self = Request.ServerVariables("URL")
pid = Request.Querystring("pid")
set Session("pageContent") = Server.CreateObject("Scripting.Dictionary")
Set custObj = Server.CreateObject("NFIFunctions.ValidateField") Line 6
set psi = Session("pageContent")
set errDict = Server.CreateObject("Scripting.Dictionary")
i = 1

View Replies View Related

Error :: Provider Error '80004005' Unspecified Error

i'm getting

Provider error '80004005' Unspecified error

admin/dbconnection.inc, line 4

what this is, it only started happening after i did a recent upload of my database!, i 've tryed uploading it again but the error still appears.

View Replies View Related

AspSmartMail.SendMail : Error 28 Error '8004001a', 504 Invalid Username Or Password

Let me start by saying I'm fairly new to Asp coding. That said...

My ISP only uses AspSmartMail. I've created an online form that uses fill out, which is then e-mailed to the collector of the information and CC-ed to the person who submitted the information.

The error I'm receiving is this:
aspSmartMail.SendMail : Error 28 error '8004001a'
504 Invalid Username or Password

In my script, I've Dimensioned several items, as you'll see below, passing the authenticating username/password to the smtp server, but it's not working. I tried not passing the information by entering in the actual info without it being passed by the diminsioned items. This didn't work either. I of course verified that the username/password I'm usine is correct.

Can someone plase tell me why I can't authenicate? I would really appreciate any help that might be out there.

Relavant Asp code below:
-----------------------------------------
Dim smtpserver,youremail,yourpassword,yourusername,rem oteemail

'Edit these 3 values accordingly
smtpserver = "mail.smtp_server.org"
youremail = "yourname@smtp_server.org"
yourpassword = "password"
yourusername = "yourusername"
remoteemail = "email_address_to_send_to"


Dim ObjSendMail
Set ObjSendMail = Server.CreateObject("AspSmartMail.SmartMail")

'Config remote SMTP server info.

ObjSendMail.Server = smtpserver
ObjSendMail.ServerTimeOut = 35
ObjSendMail.SenderAddress = youremail
ObjSendMail.Password = yourpassword
ObjSendMail.Username = yourusername

'End remote SMTP server config.

'Config E-mail.
ObjSendMail.Recipients.Add remoteemail
ObjSendMail.CCs.Add Request.Form("Confirm_Email")
ObjSendMail.Subject = "Email Subject"
ObjSendMail.SenderAddress = "Confirmation-NoReply@smtp_server.org"
ObjSendMail.SenderName = "SenderName"

ObjSendMail.ContentType = "text/html"
ObjSendMail.Body = strBody
'Note - strBody is Dimensioned elsewhere in my script to build the HTML message body.

'End Config E-mail.

'ObjSendMail.Send
ObjSendMail.SendMail

if err.number <> 0 then

response.write("Error n° " & err.number - vbobjecterror & " = " & err.description & "<br>")

else

Response.Write "aspSmartMail has sent your message with this file as attachment : <br>"
'Response.Write ObjSendMail.Attachments.Item(1).FilePathName

end if

Set ObjSendMail = Nothing

---------------------------------------
End code

View Replies View Related

Error :: Compiler Error Message: BC30002: Type 'ODBCConnection' Is Not Defined

i m getting this following error:

Compiler Error Message: BC30002: Type 'ODBCConnection' is not defined.

Following is my code: ...

View Replies View Related

Update Statment & Error :: Microsoft JET Database Engine Error '80040e14'

I keep getting an error when I try to run this update statment: [CODE]

INSERT INTO MYPosts ( IEname, country, server_name, LANIPAddy, license_ver, wrkstn1, wrkstn2, wrkstn3, wrkstn4, wrkstn5, notes, status, rdse, esc, eso, parent, , timezone, ) VALUES ( '" & lcIEname & "', '" & lcCountry & "', '" & lcServerName & "', '" & lcLicenseVer & "', '" & lcwrkstn1 & "', '" & lcwrkstn2 & "', '" & lcwrkstn3 & "', '" & lcwrkstn4 & "', '" & lcwrkstn5 & "', '" & lcNotes & "', " & lcStatus & ", " & lnRDSE & ", " & lcESC & ", " & lcESO & ", " & lcParent & ", " & lcTimeZone & ")"


I get the following error:

Microsoft JET Database Engine error '80040e14'

Syntax error (missing operator) in query expression

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved