I am trying to create an .hta application with a vbscript that will open the Windows 8 RecoveryDrive program. The script I have is as follows:
Sub Windows8Recovery
'// Open the Windows 8 / 8.1 default recovery program
Set oShell = CreateObject("Wscript.Shell")
oShell.Run "c:\windows\system32\recoverydrive.exe"
End Sub
Every time I run this I get an error msg: "The system cannot find the file specified."
Help!!!