私は、テキストファイル(C:\ textfile.txt)の内容をとり、Windowsイベントログに書き込むvbスクリプトを作成しました。私はC:\ textfile.txtからテキストを "プル"する変数 "strContents"の問題があります。誰もこの変数を書く方法を知っていますか?vbスクリプト内の変数
ありがとうございます。
CONST INFORMATION = 4
Const ForReading = 1
Set WshShell = WScript.CreateObject("WScript.Shell")
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("C:\textfile.txt", ForReading)
strContents = objFile.ReadAll
objFile.Close
wscript.echo strContents
strCommand = "eventcreate /T Information /ID 100 /L Application /SO eventlog /D " "strContents"
WshShell.Run strcommand
prevous投稿で[VBS]を除外してください。 – trancer
'[vbs]'とは何ですか?そしてなぜあなたは変数に代入できませんか?あなたが知っている、 'strContents = ...' –