Hi everyone!
I'm writing trojan/virus for educational purposes only. That is my final practical work.
The problem is that i need to fire up a .vbs file from disk.To do that i need path. How to find path and save it to string variable. Even bigger problem is how to execute it, when i save it to the variable.
For executing i have used this function:
Process.Start("C:\Script.vbs")
I tried to save this path to variable and execute it like this:
Dim path_string as String
path_String = "C:\Script.vbs"
Process.Start(path_String)
Guess what happened?!
Any help will be appreciated!