일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Linux
- hamonikr
- 노드
- python
- install
- postgres
- 아틀라시안
- 리눅스
- 자바스크립트
- 윈도우
- JS
- node
- 하모니카
- DATABASE
- javascript
- 파이썬
- java
- Atlassian
- 3.0
- 데이터베이스
- script
- ubuntu
- Windows
- 스크립트
- PostgreSQL
- 우분투
- 설정
- 설치
- 자바
- DB
- Today
- Total
목록알림 (2)
LukeHan 의 잡다한 기술 블로그
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=q..
Windows 에서 사용자에게 알림을 전달하기 위한 코드 @echo off :: 알림의 이름 set "btitle=batch notiification" :: 알림 내용 set "text=batch ballon notification text" :: 알림 아이콘 :: error, info, none, warning 중 선택 set "icon=info" (echo [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms"^) echo $objNotifyIcon = New-Object System.Windows.Forms.NotifyIcon echo $objNotifyIcon.Icon = [System.Drawing.Syste..