Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to recover a running VBScript file, if the original file was already deleted?

I have one Vbscript which runs continuously on my system to monitor a web page on Internet Explorer.

I have permanently deleted this Vbscript file from its original location on system by mistake, However the script is still in RAM and is still running and monitoring the web page.

This script is very important to me but I have lost it :(

I want to know if there is any way by which I can recover the code of Vbscript file from system's RAM or any temporary file as the script is still running.

I am not allowed to use any file recovery software, so please don't suggest to install any third party data recovery software.

like image 675
Chanks Avatar asked Mar 11 '14 12:03

Chanks


1 Answers

Try using 'ADPlus.vbs' script from WinDbg:
1. http://msdn.microsoft.com/en-us/windows/hardware/hh852365
2. http://support.microsoft.com/kb/286350

like image 83
MacG Avatar answered Sep 30 '22 05:09

MacG