성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
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>
첨부파일
스팸 방지용 인증 번호
1323
(왼쪽의 숫자를 입력해야 합니다.)