성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] 그냥 RSS Reader 기능과 약간의 UI 편의성 때문에 사용...
[이종효] 오래된 소프트웨어는 보안 위협이 되기도 합니다. 혹시 어떤 기능...
[정성태] @Keystroke IEEE의 문서를 소개해 주시다니... +_...
[손민수 (Keystroke)] 괜히 듀얼채널 구성할 때 한번에 같은 제품 사라고 하는 것이 아...
[정성태] 전각(Full-width)/반각(Half-width) 기능을 토...
[정성태] Vector에 대한 내용은 없습니다. Vector가 닷넷 BCL...
[orion] 글 읽고 찾아보니 디자인 타임에는 InitializeCompon...
[orion] 연휴 전에 재현 프로젝트 올리자 생각해 놓고 여의치 않아서 못 ...
[정성태] 아래의 글에 정리했으니 참고하세요. C# - Typed D...
[정성태] 간단한 재현 프로젝트라도 있을까요? 저런 식으로 설명만 해...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>C# - Win32 API를 이용한 모니터 전원 끄기</h1> <p> 재미있는 글이 떴군요. ^^<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Turn off monitors when locking the computer ; <a target='tab' href='https://www.meziantou.net/turn-off-monitors-when-locking-the-computer.htm'>https://www.meziantou.net/turn-off-monitors-when-locking-the-computer.htm</a> ; <a target='tab' href='https://forum.dotnetdev.kr/t/topic/8212#grald-barr-10'>https://forum.dotnetdev.kr/t/topic/8212#grald-barr-10</a> </pre> <br /> 사실, Win32 API에서 하드웨어를 제어하는 것은 흔치 않습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Safely remove a USB drive using the Win32 API? ; <a target='tab' href='https://stackoverflow.com/questions/85649/safely-remove-a-usb-drive-using-the-win32-api'>https://stackoverflow.com/questions/85649/safely-remove-a-usb-drive-using-the-win32-api</a> 안전하게 eject시킨 USB 장치를 물리적인 재연결 없이 다시 인식시키는 방법 ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/12047'>https://www.sysnet.pe.kr/2/0/12047</a> Passing through devices to Hyper-V VMs by using discrete device assignment ; <a target='tab' href='https://devblogs.microsoft.com/scripting/passing-through-devices-to-hyper-v-vms-by-using-discrete-device-assignment/'>https://devblogs.microsoft.com/scripting/passing-through-devices-to-hyper-v-vms-by-using-discrete-device-assignment/</a> </pre> <br /> 의외로 ^^ 모니터는 쉽게 끄도록 해주는군요. 코드도 간단합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > using System.Runtime.InteropServices; namespace ConsoleApp1; internal class Program { const int WM_SYSCOMMAND = 0x0112; const int SC_MONITORPOWER = 0xF170; const int MONITOR_OFF = 2; const int MONITOR_ON = -1; [DllImport("user32.dll")] public static extern int SendMessage(int hWnd, int hMsg, int wParam, int lParam); static void Main(string[] args) { SendMessage(-1, WM_SYSCOMMAND, SC_MONITORPOWER, MONITOR_OFF); } } </pre> <br /> 실제로 수행해 보면 잘 동작하는데, 심지어 2개 이상의 모니터를 가진 경우에도 모든 모니터의 전원을 꺼버립니다. ^^ (참고로, MONITOR_ON 동작의 경우, 그다지 매끄럽게 수행이 안 되었습니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1658
(왼쪽의 숫자를 입력해야 합니다.)