Esta es una función de este proyecto que codeé para el Abril Negro :
Saludos
Citar[ABRIL NEGRO][MALWARE]Karcrack Ransom
Código (vb) [Seleccionar]
'---------------------------------------------------------------------------------------
' Procedimiento : GetLnkTarget
' Autor : Karcrack
' Fecha : 28/04/2009
' Parametro(s) : sPath -> Ruta del fichero *.lnk
' Return : La ruta a la que apunta el fichero *.lnk
'---------------------------------------------------------------------------------------
Private Function GetLnkTarget(ByVal sPath As String) As String
Dim WSH As Object
Dim oShellLnk As Object
Set WSH = CreateObject("WScript.Shell")
Set oShellLnk = WSH.CreateShortcut(sPath)
GetLnkTarget = oShellLnk.TargetPath
Set WSH = Nothing
Set oShellLnk = Nothing
End Function
Saludos