일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- install
- 스크립트
- DB
- JS
- Atlassian
- 노드
- 우분투
- 하모니카
- node
- Linux
- 윈도우
- 자바
- python
- postgres
- 자바스크립트
- 설정
- 파이썬
- javascript
- DATABASE
- PostgreSQL
- 데이터베이스
- script
- java
- Windows
- 리눅스
- 3.0
- ubuntu
- 설치
- 아틀라시안
- hamonikr
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
PowerShell 을 이용한 알림 창 띄우기 본문
반응형
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
반응형
Comments