#include "stdafx.h"
#include "windows.h"
#include "shellapi.h"


int _tmain(int argc, _TCHAR* argv[])
{
      SHELLEXECUTEINFO shExecInfo;

      shExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);

      shExecInfo.fMask = NULL;
      shExecInfo.hwnd = NULL;
      shExecInfo.lpVerb = L"runas";
      shExecInfo.lpFile = L"notepad.exe";
      shExecInfo.lpParameters = NULL;
      shExecInfo.lpDirectory = NULL;
      shExecInfo.nShow = SW_MAXIMIZE;
      shExecInfo.hInstApp = NULL;

      ShellExecuteEx(&shExecInfo);

      return 0;
}

출처 : http://blogs.msdn.com/vistacompatteam/archive/2006/09/25/771232.aspx

저작자 표시 비영리 동일 조건 변경 허락


스위소로우-사랑의 미로 모창

Posted 2009/03/31 10:31 by aitch

스윗소로우가 부른 사랑의 미로

다운로드

저작자 표시 비영리 동일 조건 변경 허락




http://www.codeproject.com/KB/IP/beginningtcp_cpp.aspx

http://www.codeproject.com/KB/IP/Ping_and_Traceroute.aspx

http://www.codeproject.com/KB/IP/UDP_Traceroute.aspx

저작자 표시 비영리 동일 조건 변경 허락

« PREV : 1 : 2 : 3 : 4 : 5 : ... 63 : NEXT »