我在网上搜索,实际上是随机找到的。
长话短说,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'),否则 explorer 将看不到您的更新,并会覆盖当它退出时。
我不相信这个过程。不是我写的,是我发现的。剧本归功于 Micah Rowland。GPO 流程归功于 Geoff Kendal
没有足够的声誉链接到原始作者,除了顶部的那个。