0

I have the following command
"C:\Program Files\File Checksum Integrity Verifier\fciv.exe" -sha1 "D:\new.txt"

How to run this command from vbscript? Can anybody help me?

Tjs
  • 413
  • 4
  • 11
  • 23

1 Answers1

0

VBScript comes with a couple of different ways to execute command lines, both of which are on the WshShell object (WScript.Shell)

Using WshShell.Exec

Dim WshShell, oExec
Set WshShell = CreateObject("WScript.Shell")

Set oExec = WshShell.Exec("""C:\Program Files\File Checksum Integrity Verifier\fciv.exe"" -sha1 ""D:\new.txt""")

Do While oExec.Status = 0
     WScript.Sleep 100
Loop

WScript.Echo oExec.Status

Using WshShell.Run

Dim WshShell
Set WshShell = CreateObject("WScript.Shell")

WshShell.Run """C:\Program Files\File Checksum Integrity Verifier\fciv.exe"" -sha1 ""D:\new.txt""", 1, true
jveazey
  • 5,398
  • 1
  • 29
  • 44