Skip to content

Instantly share code, notes, and snippets.

@shalithasuranga
Last active January 26, 2021 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save shalithasuranga/aa5fc661dda192015cfeb26d02807cf6 to your computer and use it in GitHub Desktop.
Save shalithasuranga/aa5fc661dda192015cfeb26d02807cf6 to your computer and use it in GitHub Desktop.
@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