40

プログラムの実行中にウィンドウがスリープ状態にならないようにする必要があります。

また、スリープタイマーを防ぎたいだけでなく、スリープボタンを押すか、他の方法でコンピューターにスリープを積極的に指示した場合に、スリープイベントをキャンセルしたいと考えています。したがって、SetThreadExecutionState では不十分です。

または...実際にスリープを完全に防ぐ必要はありません。プログラムがタスクを終了できるように、スリープを5〜10秒遅らせるだけです。

(これが悪いプログラムの動作であることはわかっていますが、個人的な使用のみを目的としています。)

4

8 に答える 8

23

vimの答えを検討した後

「PowerCreateRequest、PowerSetRequest、および PowerClearRequest 関数を使用することをお勧めします。」

msdnのリンクされたAvailabilityRequests.docxを使用すると、アクセスするのが面倒です(読むには多すぎます)。PowerCreateRequestに基づく//go4answers.webhost4life.comを見つけました/Example/problem-monitor-wakeup-service-windows7-12092.aspx [編集 2016 - もう利用できません]

私のニーズに合わせてコピーして調整しました(msdnからコピーされた CloseHandle の PInvoke ):

using System.Runtime.InteropServices;

    #region prevent screensaver, display dimming and automatically sleeping
    POWER_REQUEST_CONTEXT _PowerRequestContext;
    IntPtr _PowerRequest; //HANDLE

    // Availability Request Functions
    [DllImport("kernel32.dll")]
    static extern IntPtr PowerCreateRequest(ref POWER_REQUEST_CONTEXT Context);

    [DllImport("kernel32.dll")]
    static extern bool PowerSetRequest(IntPtr PowerRequestHandle, PowerRequestType RequestType);

    [DllImport("kernel32.dll")]
    static extern bool PowerClearRequest(IntPtr PowerRequestHandle, PowerRequestType RequestType);

    [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)]
    internal static extern int CloseHandle(IntPtr hObject);

    // Availablity Request Enumerations and Constants
    enum PowerRequestType
    {
        PowerRequestDisplayRequired = 0,
        PowerRequestSystemRequired,
        PowerRequestAwayModeRequired,
        PowerRequestMaximum
    }

    const int POWER_REQUEST_CONTEXT_VERSION = 0;
    const int POWER_REQUEST_CONTEXT_SIMPLE_STRING = 0x1;
    const int POWER_REQUEST_CONTEXT_DETAILED_STRING = 0x2;

    // Availablity Request Structures
    // Note:  Windows defines the POWER_REQUEST_CONTEXT structure with an
    // internal union of SimpleReasonString and Detailed information.
    // To avoid runtime interop issues, this version of 
    // POWER_REQUEST_CONTEXT only supports SimpleReasonString.  
    // To use the detailed information,
    // define the PowerCreateRequest function with the first 
    // parameter of type POWER_REQUEST_CONTEXT_DETAILED.
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    public struct POWER_REQUEST_CONTEXT
    {
        public UInt32 Version;
        public UInt32 Flags;
        [MarshalAs(UnmanagedType.LPWStr)]
        public string
            SimpleReasonString;
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct PowerRequestContextDetailedInformation
    {
        public IntPtr LocalizedReasonModule;
        public UInt32 LocalizedReasonId;
        public UInt32 ReasonStringCount;
        [MarshalAs(UnmanagedType.LPWStr)]
        public string[] ReasonStrings;
    }

    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    public struct POWER_REQUEST_CONTEXT_DETAILED
    {
        public UInt32 Version;
        public UInt32 Flags;
        public PowerRequestContextDetailedInformation DetailedInformation;
    }
    #endregion



    /// <summary>
    /// Prevent screensaver, display dimming and power saving. This function wraps PInvokes on Win32 API. 
    /// </summary>
    /// <param name="enableConstantDisplayAndPower">True to get a constant display and power - False to clear the settings</param>
    private void EnableConstantDisplayAndPower(bool enableConstantDisplayAndPower)
    {
        if (enableConstantDisplayAndPower)
        {
            // Set up the diagnostic string
            _PowerRequestContext.Version = POWER_REQUEST_CONTEXT_VERSION;
            _PowerRequestContext.Flags = POWER_REQUEST_CONTEXT_SIMPLE_STRING;
            _PowerRequestContext.SimpleReasonString = "Continuous measurement"; // your reason for changing the power settings;

            // Create the request, get a handle
            _PowerRequest = PowerCreateRequest(ref _PowerRequestContext);

            // Set the request
            PowerSetRequest(_PowerRequest, PowerRequestType.PowerRequestSystemRequired);
            PowerSetRequest(_PowerRequest, PowerRequestType.PowerRequestDisplayRequired);
        }
        else
        {
            // Clear the request
            PowerClearRequest(_PowerRequest, PowerRequestType.PowerRequestSystemRequired);
            PowerClearRequest(_PowerRequest, PowerRequestType.PowerRequestDisplayRequired);

            CloseHandle(_PowerRequest);
        }
    }
于 2014-01-08T12:48:48.583 に答える
22

USB経由で接続されたハードウェアデバイスでこのような問題が発生しました。XP /Vistaは途中でスリープ/休止状態になります... 素晴らしい、再開するとそのまま続行できます。ハードウェアがまだ接続されている場合!!! ユーザーは、いつでもケーブルを引き抜く習慣があります。

XPとVistaを扱う必要がある

XP では、WM_POWERBROADCAST をトラップし、PBT_APMQUERYSUSPEND wparam を探します。

   // See if bit 1 is set, this means that you can send a deny while we are busy
   if (message.LParam & 0x1)
   {
      // send the deny message
      return BROADCAST_QUERY_DENY;
   } // if
   else
   {
      return TRUE;
   } // else

Vista では、次のように SetThreadExecutionState を使用します

// try this for vista, it will fail on XP
if (SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED | ES_AWAYMODE_REQUIRED) == NULL)
{
   // try XP variant as well just to make sure 
   SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED);
}  // if 

アプリが終了したら、通常に戻します

// set state back to normal
SetThreadExecutionState(ES_CONTINUOUS);
于 2009-03-10T08:06:42.373 に答える
1

スクリーンセーバーの使用を防止する場合と同じ手法が適用されます。Windows スクリーンセーバーの起動をプログラムで防止するを参照してください。

一部のセキュリティ設定はこれを上書きできることに注意してください (一定時間後にコンピュータを強制的にロックすることが 1 つです)。

于 2009-03-10T07:51:13.487 に答える
0

スリープ状態になったら、もう一度起こしてみませんか?

http://www.enterprisenetworksandservers.com/monthly/art.php?1049

于 2009-03-10T07:48:43.633 に答える