从命令行传递文件位置

时间:2016-08-19 18:02:35

标签: command-line vbscript arguments email-attachments

以下是我的VBScript代码,用于发送附带文件的电子邮件。该文件出现在我发送电子邮件时需要抓取的位置。

Set objMessage = CreateObject("CDO.Message")
Set args = WScript.Arguments
Set arg1 = args.Item(0)
objMessage.Subject = "Sample subject" 
objMessage.From = "test@gmail.com" 
objMessage.To = "test2@gmail.com" 
objMessage.TextBody = "Please see the error logs attached with this email"
objMessage.AddAttachment ""&arg1&""
'==This section provides the configuration information for the remote SMTP server.
'==Normally you will only change the server name or IP.
objMessage.Configuration.Fields.Item _
  ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 

'Name or IP of Remote SMTP Server
objMessage.Configuration.Fields.Item _
  ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "hostname"

'Server port (typically 25)
objMessage.Configuration.Fields.Item _
  ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 

objMessage.Configuration.Fields.Update

'==End remote SMTP server configuration section==

objMessage.Send

要通过命令行运行此脚本,我使用:

>cscript sendemail.vbs D:\users\me\Desktop\readme.txt

当我运行此操作时,我收到错误消息:

  

D:\ Users \ me \ Desktop \ sendemail.vbs(3,1)Microsoft VBScript运行时错误:所需对象:' [string:" D:\ Users \ me \ Desk" ]'

有什么建议可能出错吗?

1 个答案:

答案 0 :(得分:1)

错误消息实际上说明了一切。虽然Arguments集合是一个对象,但它的第一个元素却不是。它是一个字符串,在VBScript中是一种原始数据类型。 Set关键字专门用于将对象分配给变量。仅使用赋值运算符分配原始数据类型。

改变这个:

Set arg1 = args.Item(0)

进入这个:

arg1 = args.Item(0)

并且错误将消失。