윈도우즈 2000,XP 파워 끄기, 리부팅하기 C++ 소스

송지석의 이미지

필요하실 분도 있을 듯 해서
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.

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

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

	return nRetCode;
}



///////////////// Jiseok

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;
}

//////////// end Jiseok

Forums: 
ruseel의 이미지

ms보다 redhat과 좀 더 친한 분이라면,
cygwin안의 shutdown-1.4-1-src.tar.bz2을 참조하셔도 좋을 것 같습니다.

win98에서도 동작하는 프로그램이었습니다.

송지석의 이미지

음. 위의 코드도 윈 98계열을 끌 수 있습니다.

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

이부분이죠...
2000계열'도' 끌 수 있다고 표현했어야 했는데 보통 2001년 당시에는 95계열만 끌 수 있고 2000 계열을 끄지 못하는 프로그램이 많아서 짰던 코드여서 그렇게 표현했었네요.
phaze의 이미지

오오... 감사합니다! :D :D

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.