私はオンラインで検索していて、実際にこれをランダムに見つけました。
簡単に言えば、PowerShell(スクリプト提供)とGPOの組み合わせです。
http://4sysops.com/archives/forcing-notification-area-icons-to-always-show-in-windows-7-or-windows-8/
長い話、次を含むPowerShellスクリプトを作成します。
param(
[Parameter(Mandatory=$true,HelpMessage='The name of the program')][string]$ProgramName,
[Parameter(Mandatory=$true,HelpMessage='The setting (2 = show icon and notifications 1 = hide icon and notifications, 0 = only show notifications')]
[ValidateScript({if ($_ -lt 0 -or $_ -gt 2) { throw 'Invalid setting' } return $true})]
[Int16]$Setting
)
$encText = New-Object System.Text.UTF8Encoding
[byte[]] $bytRegKey = @()
$strRegKey = ""
$bytRegKey = $(Get-ItemProperty $(Get-Item 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify').PSPath).IconStreams
for($x=0; $x -le $bytRegKey.Count; $x++)
{
$tempString = [Convert]::ToString($bytRegKey[$x], 16)
switch($tempString.Length)
{
0 {$strRegKey += "00"}
1 {$strRegKey += "0" + $tempString}
2 {$strRegKey += $tempString}
}
}
[byte[]] $bytTempAppPath = @()
$bytTempAppPath = $encText.GetBytes($ProgramName)
[byte[]] $bytAppPath = @()
$strAppPath = ""
Function Rot13($byteToRot)
{
if($byteToRot -gt 64 -and $byteToRot -lt 91)
{
$bytRot = $($($byteToRot - 64 + 13) % 26 + 64)
return $bytRot
}
elseif($byteToRot -gt 96 -and $byteToRot -lt 123)
{
$bytRot = $($($byteToRot - 96 + 13) % 26 + 96)
return $bytRot
}
else
{
return $byteToRot
}
}
for($x = 0; $x -lt $bytTempAppPath.Count * 2; $x++)
{
If($x % 2 -eq 0)
{
$curbyte = $bytTempAppPath[$([Int]($x / 2))]
$bytAppPath += Rot13($curbyte)
}
Else
{
$bytAppPath += 0
}
}
for($x=0; $x -lt $bytAppPath.Count; $x++)
{
$tempString = [Convert]::ToString($bytAppPath[$x], 16)
switch($tempString.Length)
{
0 {$strAppPath += "00"}
1 {$strAppPath += "0" + $tempString}
2 {$strAppPath += $tempString}
}
}
if(-not $strRegKey.Contains($strAppPath))
{
Write-Host Program not found. Programs are case sensitive.
break
}
[byte[]] $header = @()
$items = @{}
for($x=0; $x -lt 20; $x++)
{
$header += $bytRegKey[$x]
}
for($x=0; $x -lt $(($bytRegKey.Count-20)/1640); $x++)
{
[byte[]] $item=@()
$startingByte = 20 + ($x*1640)
$item += $bytRegKey[$($startingByte)..$($startingByte+1639)]
$items.Add($startingByte.ToString(), $item)
}
foreach($key in $items.Keys)
{
$item = $items[$key]
$strItem = ""
$tempString = ""
for($x=0; $x -le $item.Count; $x++)
{
$tempString = [Convert]::ToString($item[$x], 16)
switch($tempString.Length)
{
0 {$strItem += "00"}
1 {$strItem += "0" + $tempString}
2 {$strItem += $tempString}
}
}
if($strItem.Contains($strAppPath))
{
Write-Host Item Found with $ProgramName in item starting with byte $key
$bytRegKey[$([Convert]::ToInt32($key)+528)] = $setting
Set-ItemProperty $($(Get-Item 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify').PSPath) -name IconStreams -value $bytRegKey
}
}
選択した名前を使用して、ps1ファイルとして保存します。
グループポリシー管理MMCを開きます。選択したグループポリシーオブジェクトを選択し、右クリックして[編集]を選択します。エディターで、[ユーザーの構成]> [Windowsの設定]> [スクリプト]> [ログオン]に移動し、[画面のプロパティ]をクリックします。[PowerShell]タブに移動し、[ファイルの表示]をクリックします。
作成したスクリプトを、開いたばかりのエクスプローラーウィンドウにコピーし、ウィンドウから閉じます。
ログインスクリプトのプロパティウィンドウで、新しいPowerShellスクリプトをスクリプト名に追加し、使用したスクリプトの名前(例:NotifyIcon.ps1)を入力し、パラメーターにプログラム名(大文字と小文字を区別します!)使用する設定によって:
0 =通知のみを表示1 =アイコンと通知を非表示2 =アイコンと通知を表示<---必要なもの
たとえば、RealVNCサーバーを常に表示する必要がある場合は、次のように入力します。
winvnc4.exe 2
パラメンターとして
実行ダイアログボックスを開いmsconfig
てスタートアッププログラムを入力して確認する、インストールディレクトリに手動で移動する、実行中のファイルを探しC:\Program Files\{your program}
て目的のプログラムに一致させるなど、いくつかの方法で実行可能ファイルの名前を見つけることができますタスクマネージャのプロセス。10回のうち9回これが成功します。
これが機能するには、ユーザーが以前にアプリケーションを実行してから適切にログアウトし、explorer.exeが更新された通知領域の履歴をレジストリに書き込む必要があります。後続のログインで、スクリプトは履歴でプログラムを正常に見つけ、常に表示するように設定を更新する必要があります。
PowerShellプロンプトからスクリプトを手動で実行してデバッグすることもできますが、実行する前にexplorer.exe( 'taskkill / f / im explorer.exe')を強制終了する必要があります。そうしないと、エクスプローラーは更新を表示せず、上書きされます終了したとき。
私はこのプロセスを信用していません。私はそれを書きませんでした、ただ見つけました。スクリプトの功績はMicah Rowlandにあります。GPOプロセスの功績はGeoff Kendalにあります