-
-
Save pranlawate/8d8b5f5e23e2081941701bcaace6c7e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
powershell -Command "& {Add-Type -AssemblyName Microsoft.VisualBasic; [Microsoft.VisualBasic.Interaction]::InputBox('Enter your name:', 'Input box example')}" > %TEMP%\out.tmp | |
set /p OUT=<%TEMP%\out.tmp | |
set msgBoxArgs="& {Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.MessageBox]::Show('You have entered: %OUT%', 'Hello');}" | |
powershell -Command %msgBoxArgs% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment