Windows 7でホットコーナーを設定するにはどうすればよいですか?


10

私は仕事で私のWindows 7ボックスでデュアルモニターセットアップを持っています。ホットコーナーを設定してスクリーンセーバーを起動したり、ディスプレイをスリープ状態にしたりする方法を教えてください(可能な場合)。

回答:


12

実際、Windowsのスクリーンセーバーにこの機能がありました(少なくとも、Plus!パックの一部として含まれているものであり、旧来のユーザーは覚えておく必要があります)。

1

確かに、本当に便利なバグにより、ホットコーナーがプラスに指定されました!Plus以外に適用されるグローバル設定のスクリーンセーバー!スクリーンセーバーも!

Windowsで同様の機能を取得する最も簡単な方法は、当然のことながらHot Cornersと呼ばれるAutoITアプリ(ソースが利用可能)を使用することです。スクリーンセーバーの起動以外にも、さまざまな興味深いことができます。

2


実は、これはWindows 10では動作しないようです。
Giacomo Lacava

3

これが私が書いたhotcornersアプリです。お楽しみください!ソースもgithubで公開しました。

詳細については、https//sites.google.com/site/bytecar/home/hotcornersappをご覧ください。

ハッキングハッピー!


承認された回答とは異なり、これはWindows 10とマルチモニターでも正常に機能します。よくやった!ちなみに、最後の有効なビルドには、Githubにマージされた機能(モニタースリープ)が含まれていないことに気づきました。更新できる可能性はありますか?再度アプリをありがとう。
Giacomo Lacava

2つの未解決の問題があります。1)ゲーム内で誤ってホットコーナーをアクティブ化する2)マージされたスリープコードをビルドする(いくつかの問題があるようです)、これら2つで動作し、1月30日までにリリースされます。
バイトカー'19年

2

誰かが興味がある場合の恥ずかしそうなPowerShellバージョンはこれです(恥知らずなブログ投稿プラグイン)(またはGitHub

このコードは、特定の位置(現在は右下隅)でマウスを監視し、Win32モニターの電源オフAPIをトリガーします...実行を終了するためのコンテキストメニューと共に、タスクトレイアイコンを実行中のインジケータとして表示します

残念ながら、私はスクリーンショットを投稿するには緑が多すぎます...今のところ、堅牢な情報についてはgithubリンクを参照してください

# Source: http://www.powershellmagazine.com/2013/07/18/pstip-how-to-switch-off-display-with-powershell/

# Turn display off by calling WindowsAPI.

# SendMessage(HWND_BROADCAST,WM_SYSCOMMAND, SC_MONITORPOWER, POWER_OFF)
# HWND_BROADCAST  0xffff
# WM_SYSCOMMAND   0x0112
# SC_MONITORPOWER 0xf170
# POWER_OFF       0x0002

Add-Type -TypeDefinition '
using System;
using System.Runtime.InteropServices;

namespace Utilities {
   public static class Display
   {
      [DllImport("user32.dll", CharSet = CharSet.Auto)]
      private static extern IntPtr SendMessage(
         IntPtr hWnd,
         UInt32 Msg,
         IntPtr wParam,
         IntPtr lParam
      );

      public static void PowerOff ()
      {
         SendMessage(
            (IntPtr)0xffff, // HWND_BROADCAST
            0x0112,         // WM_SYSCOMMAND
            (IntPtr)0xf170, // SC_MONITORPOWER
            (IntPtr)0x0002  // POWER_OFF
         );
      }
   }
}
'

Add-Type -AssemblyName System.Windows.Forms

$notifyIcon = New-Object System.Windows.Forms.NotifyIcon
$notifyIcon.Icon = New-Object System.Drawing.Icon "$(Split-Path -parent $PSCommandPath)\icon.ico"
$notifyIcon.Text = "Hot Corners"

$notifyIcon.add_MouseDown( { 
  if ($script:contextMenu.Visible) { $script:contextMenu.Hide(); return }
  if ($_.Button -ne [System.Windows.Forms.MouseButtons]::Left) {return}

  #from: http://stackoverflow.com/questions/21076156/how-would-one-attach-a-contextmenustrip-to-a-notifyicon
  #nugget: ContextMenu.Show() yields a known popup positioning bug... this trick leverages notifyIcons private method that properly handles positioning
  [System.Windows.Forms.NotifyIcon].GetMethod("ShowContextMenu", [System.Reflection.BindingFlags] "NonPublic, Instance").Invoke($script:notifyIcon, $null)
})

$contextMenu = New-Object System.Windows.Forms.ContextMenuStrip
$contextMenu.ShowImageMargin = $false
$notifyIcon.ContextMenuStrip = $contextMenu
$contextMenu.Items.Add( "E&xit", $null, { $notifyIcon.Visible = $false; [System.Windows.Forms.Application]::Exit() } ) | Out-Null
$contextMenu.Show(); $contextMenu.Hide() #just to initialize the window handle to give to $timer.SynchronizingObject below

$timer = New-Object System.Timers.Timer
$timer.Interval = 500
$timer.add_Elapsed({
  $mouse = [System.Windows.Forms.Cursor]::Position
  $bounds = [System.Windows.Forms.Screen]::FromPoint($mouse).Bounds #thank you! - http://stackoverflow.com/questions/26402955/finding-monitor-screen-on-which-mouse-pointer-is-present

  <#    __  __              _          __  __            __              ____
       / / / /__  ________ ( )_____   / /_/ /_  ___     / /_  ___  ___  / __/
      / /_/ / _ \/ ___/ _ \|// ___/  / __/ __ \/ _ \   / __ \/ _ \/ _ \/ /_  
     / __  /  __/ /  /  __/ (__  )  / /_/ / / /  __/  / /_/ /  __/  __/ __/  
    /_/ /_/\___/_/   \___/ /____/   \__/_/ /_/\___/  /_.___/\___/\___/_/     #>
  # currently set to trigger at lower right corner... season to your own taste (e.g. upper left = 0,0)
  if ($mouse.X-$bounds.X -gt $bounds.Width-10 -and $mouse.Y -gt $bounds.Height-10) { [Utilities.Display]::PowerOff() }

  #run the ps1 from command line to see this output
  #debug: Write-Host "x: $($mouse.X), y:$($mouse.Y), width: $($bounds.Width), height: $($bounds.Height), sleep: $($mouse.X-$bounds.X -gt $bounds.Width-10 -and $mouse.Y -gt $bounds.Height-10)"
})

#frugally reusing $contextMenu vs firing up another blank form, not really necessary but i was curious if it'd work... the notify icon itself does not implement InvokeRequired
#see this for why SynchronizingObject is necessary: http://stackoverflow.com/questions/15505812/why-dont-add-eventname-work-with-timer
$timer.SynchronizingObject = $contextMenu

$timer.start()
$notifyIcon.Visible = $true
[System.Windows.Forms.Application]::Run()

0

私はAutoITのHotCorners(またはLekrem Yelsew氏のバリエーション、HotCorners 2)を使用しています。完全に「スクリーナー」(レガシーMac OS)ではありませんが、想定されていることを実行し、「要求されたときに終了します」(つまり、「コーナー」の1つによって設定された状態からビジネスに戻るのに遅延はありません)。

BZT


1
情報をありがとう。あなたが話しているプログラムへのリンクを含めていただければ幸いです。
Cyber​​Skull 2013
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.