OS/Windows
PowerShell 을 이용한 알림 창 띄우기
LukeHan1128
2021. 8. 31. 20:00
반응형
echo msgbox "LukeHan",64,"Notification" > test.vbs & start /wait test.vbs & del test.vbs
echo msgbox "LukeHan",64,"Notification" > test.vbs
msgbox 메시지를 test.vbs 파일로 생성
- LukeHan : 알림 창에서 보여질 내용
- 64 : 좌측에 표시될 아이콘. 64는 i 32는 ? 가 표시된다.
- Notification : 알림 창 타이틀 제목
start /wait test.vbs
test.vbs 파일을 읽어들여 알림창을 실행
del test.vbs
test.vbs 파일 삭제
참고1 : https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_function&wr_id=294181&page=1821
참고2 : https://coolenjoy.net/bbs/37/709
반응형