-
-
Save pranlawate/6b692e6fdf8a3243efffd69b0abab06d 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 System.Windows.Forms; [System.Windows.Forms.MessageBox]::Show('Hello', 'Hey', 'YesNo', [System.Windows.Forms.MessageBoxIcon]::Warning);}" > %TEMP%\out.tmp | |
set /p OUT=<%TEMP%\out.tmp | |
if %OUT%==Yes (echo Clicked Yes) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment