Quote from
josevdr95 on December 20, 2023, 7:51 pm
Rundll32.exe es una aplicación incluida en Windows que se invoca desde la línea de comandos con RUNDLL32. Como su nombre sugiere permite llamar funciones incluidas en el archivo shell32.dll
SetVar "[%Datos]" "Shell32.dll,Control_RunDLL Mmsys.cpl,,0"
Ejemplo VBS (CALL)
Set objShell = CreateObject("Wscript.Shell")
objShell.Run "rundll32.exe [%Datos]"
Ejemplo JS (CALL)
var objShell = new ActiveXObject("WScript.Shell");
// Obtener el valor de la variable [%Datos] de VisualNEO Win
var datos = nbGetVar("[%Datos]");
// Ejecutar el comando rundll32.exe con los datos obtenidos
objShell.Run("rundll32.exe " + datos);
VisualNEO WIN (RUN)
Run "RunDll32.exe" "shell32.dll,Control_RunDLL appwiz.cpl,,0" "Normal" "" ""
Run "RunDll32.exe" "shell32.dll,Control_RunDLL firewall.cpl" "Normal" "" ""
Lista de comandos y ejemplos
Rundll32.exe es una aplicación incluida en Windows que se invoca desde la línea de comandos con RUNDLL32. Como su nombre sugiere permite llamar funciones incluidas en el archivo shell32.dll
SetVar "[%Datos]" "Shell32.dll,Control_RunDLL Mmsys.cpl,,0"
Ejemplo VBS (CALL)
Set objShell = CreateObject("Wscript.Shell")
objShell.Run "rundll32.exe [%Datos]"
Ejemplo JS (CALL)
var objShell = new ActiveXObject("WScript.Shell");
// Obtener el valor de la variable [%Datos] de VisualNEO Win
var datos = nbGetVar("[%Datos]");
// Ejecutar el comando rundll32.exe con los datos obtenidos
objShell.Run("rundll32.exe " + datos);
VisualNEO WIN (RUN)
Run "RunDll32.exe" "shell32.dll,Control_RunDLL appwiz.cpl,,0" "Normal" "" ""
Run "RunDll32.exe" "shell32.dll,Control_RunDLL firewall.cpl" "Normal" "" ""
Lista de comandos y ejemplos
luishp, alangonzalez91 and 2 other users have reacted to this post.
luishpalangonzalez91CN_Icemandanito