我在网上搜索,实际上是随机发现的。
长话短说,是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 /imexplorer.exe'),否则Explorer将看不到您的更新,并且将覆盖它确实退出时。
我对此过程不屑一顾。我没有写,只是找到了。该剧本的荣誉归功于Micah Rowland。GPO流程的功劳归功于Geoff Kendal