Contents

조회 수 7959 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
필요하실 분도 있을 듯 해서 2001년도에 짰던 것 같네요.
윈도우즈2000 계열의 파워 끄는 소스코드입니다.
VC6.0으로 짰고, 프로그램을 하실 줄 아시면 뭐하는 것인 지 금방 아실 듯.

PwrTest.h
#if !defined(AFX_PWRTEST_H__149C02D0_B545_4699_A4A5_DFDB719EFBFB__INCLUDED_)
#define AFX_PWRTEST_H__149C02D0_B545_4699_A4A5_DFDB719EFBFB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "resource.h"

/////////////// Jiseok
int PowerOff();
int Reboot();
int GetWinVersion(OSVERSIONINFO* windowsversion);
int DoPowerOff(OSVERSIONINFO* windowsversion);
int DoReboot(OSVERSIONINFO* windowsversion);
int AquirePrivileges(OSVERSIONINFO* windowsversion);
////////////// end Jiseok

#endif 
//!defined(AFX_PWRTEST_H__149C02D0_B545_4699_A4A5_DFDB719EFBFB__INCLUDED_)

PwrTest.cpp
// PwrTest.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "PwrTest.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

// The one and only application object
//

CWinApp theApp;

using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
    int nRetCode = 0;

    // initialize MFC and print and error on failure
    if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
    {
        // TODO: change error code to suit your needs
        cerr << _T("Fatal Error: MFC initialization failed") << endl;
        nRetCode = 1;
    }
    else
    {
        // TODO: code your application's behavior here.

        //if (PowerOff()!=0)
        if (Reboot()!=0)
            return 1;

        CString strHello;
        strHello.LoadString(IDS_HELLO);
        cout << (LPCTSTR)strHello << endl;
    }

    return nRetCode;
}

int PowerOff()
{
    OSVERSIONINFO Version;

    if (GetWinVersion(&Version)!=0)
        return -1;
    if (DoPowerOff(&Version)!=0)
        return -1;
    return 0;
}

int Reboot()
{
    OSVERSIONINFO Version;

    if (GetWinVersion(&Version)!=0)
        return -1;
    if (DoReboot(&Version)!=0)
        return -1;
    return 0;
}

int GetWinVersion(OSVERSIONINFO* windowsversion)
{
    windowsversion->dwOSVersionInfoSize=sizeof(OSVERSIONINFO);
    if (!GetVersionEx(windowsversion))
    {
        printf("Error! getting version info");
        return -1;
    }
    return 0;
}

int DoPowerOff(OSVERSIONINFO* windowsversion)
{
    UINT mode;

    if (windowsversion->dwPlatformId==VER_PLATFORM_WIN32_WINDOWS)
        mode=EWX_SHUTDOWN;
    else
        mode=EWX_POWEROFF;

    if (windowsversion->dwPlatformId==VER_PLATFORM_WIN32_NT)
        {
        // privilege 얻기
        if (AquirePrivileges(windowsversion)!=0)
        {
            return -1;
        }//if 
    }// if
  
    if (!ExitWindowsEx(mode,0))    // 끄기
    {
        printf("error ExitWindowsEx");
        return -1;
    }
    return 0;
}

      
int DoReboot(OSVERSIONINFO* windowsversion)
{
    UINT mode;

    mode=EWX_REBOOT;

    if (windowsversion->dwPlatformId==VER_PLATFORM_WIN32_NT)
        {
        // privilege 얻기
        if (AquirePrivileges(windowsversion)!=0)
        {
            return -1;
        }//if 
    }// if
  
    if (!ExitWindowsEx(mode,0))    // 끄기
    {
        printf("error ExitWindowsEx");
        return -1;
    }
    return 0;
}

int AquirePrivileges(OSVERSIONINFO* windowsversion)
{
    HANDLE current_thread,token;
    TOKEN_PRIVILEGES privs;
    LUID luid;

    current_thread=GetCurrentProcess();
    if (!OpenProcessToken(current_thread,TOKEN_ADJUST_PRIVILEGES,&token))
    {
        printf("Error! opening process token");
        return -1;
    }
    if (!LookupPrivilegeValue(NULL,SE_SHUTDOWN_NAME,&luid))
    {
        printf("Error! looking up privilege");
        return -1;
    }
    privs.PrivilegeCount=1;
    privs.Privileges[0].Attributes=SE_PRIVILEGE_ENABLED;
    privs.Privileges[0].Luid=luid;
    if (!AdjustTokenPrivileges(token,FALSE,&privs,0,NULL,NULL))
    {
        printf("Error! getting privileges");
        return -1;
    }
    return 0;
}
[출처] http://kldp.org/node/28417

?

  1. [c++] mfc에서 윈도우 항상 위 속성 주기..

    Date2013.04.23 CategoryDevelop Byhooni Views11302
    Read More
  2. [c++] Win32 API 기본 출력인 MessageBox() 함수 사용 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views12636
    Read More
  3. [c] 파이프(popen)로 다른 프로세스 실행결과 가져오기

    Date2013.04.23 CategoryDevelop Byhooni Views8396
    Read More
  4. [c] 도메인(호스트)으로 IP정보 알아오기.. (nslookup과 비슷)

    Date2013.04.23 CategoryDevelop Byhooni Views6929
    Read More
  5. [c] UTF-8을 EUC-KR로 변환.. (iconv)

    Date2013.04.23 CategoryDevelop Byhooni Views20131
    Read More
  6. [c] 바로 보고 정리할 것.. ㅋㄷㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views7133
    Read More
  7. [c] openssl 샘플코드.. 어려움 ㅠㅠ

    Date2013.04.23 CategoryDevelop Byhooni Views7022
    Read More
  8. [linux] 한글 URL 인식할 수 있게 아파치(Apache) 설정 (mod_url.c 설치)

    Date2013.04.23 CategorySystem/OS Byhooni Views13062
    Read More
  9. [c] 가변인자 함수(printf와 같은..)

    Date2013.04.23 CategoryDevelop Byhooni Views7175
    Read More
  10. [c#] BHO 한샘툴바랑 동현툴바..

    Date2013.04.23 CategoryDevelop Byhooni Views2208
    Read More
  11. [c++] Win32API를 이용한 ExitWindowsEx 사용한 예제코드

    Date2013.04.23 CategoryDevelop Byhooni Views7959
    Read More
  12. [c#] mfc 기반의 웹서비스 서버/클라이언트 샘플과 예제 소스

    Date2013.04.23 CategoryDevelop Byhooni Views2073
    Read More
Board Pagination Prev 1 ... 48 49 50 51 52 53 54 55 56 57 ... 98 Next
/ 98