I'm trying to run a MessageBoxA from User32.dll with Rundll32.exe.
As I see in Microsoft references Rundll.exe is for 16-bit applications while Rundll32.exe is for 32-bit ones.
So I write this command :
Rundll32.exe User32.dll,MessageBoxA 0,"Text","Title",0
But nothing shows!
I think there is something wrong with my syntax. Is there anyway to show a MessageBoxA from Rundll32.exe?