윈도우는 윈도우탐색기가 이미 쉘을 포함하고 있고, 메일과 웹주소는 이미 쉘이 인지하고 있는 상태이다.
그래서 특정주소로 페이지를 열거나 메일을 보내거나 할 수 있다.
.data
lpPage db "http://www.openserver.co.kr",0
lpMail db "piljin.kwon@gmail.com",0
lpOperation db "open",0
.code
invoke ShellExecute,hWin,addr lpOperation, addr lpPage, NULL, NULL, SW_SHOWNORMAL
invoke ShellExecute,hWin,addr lpOperation, addr lpMail, NULL, NULL, SW_SHOWNORMAL