I want to show the result of my function as a pop up message.
This is the code: for /f "delims=" %%i in (1.txt) do (set MyResult= %MyName% %%i && net user %%i /domain | find /I "password last set")
I want to show the result of the "do" function in the pop up box.
the result shows the last time the input user changed his/hers password.
I don't want to use VBscript
, i just want it in bat
. :)
thank you in advance.