无忧启动论坛

 找回密码
 注册
搜索

隐藏windows11右下角指向的通知窗口

查看数: 2097 | 评论数: 33 | 收藏 2
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2025-4-26 08:04

正文摘要:

谢谢帮忙提供一下操作:怎么隐藏windows11右下角指向的通知窗口(如下图) 去除这家伙

回复

tonfro 发表于 2025-4-28 09:45:16
感谢分享
zerogeorge 发表于 2025-4-27 14:05:04
看来目前还没很好的解决办法……
wssln 发表于 2025-4-27 13:05:51
任务栏设置-打开或关闭系统图标-关闭操作中心
51xp 发表于 2025-4-27 11:04:43
了解一下
jinghexi 发表于 2025-4-27 09:59:41
了解一下
extendfar 发表于 2025-4-27 09:23:50
感谢分享。
yhage 发表于 2025-4-27 09:16:48
反正我是能隐藏的都隐藏了,实在不行的只能受着了
欧卡洗衣 发表于 2025-4-27 08:38:35
看来目前暂时是没办法,按13# 的方法禁用这个窗口还是可行!
andylxh 发表于 2025-4-26 20:46:11
感谢楼主分享
201012121135 发表于 2025-4-26 20:14:36
看来win11没办法了
zhou116yan 发表于 2025-4-26 18:54:54
谢谢分享
axinglaila2025 发表于 2025-4-26 18:18:05
学习一下 谢谢
俪尚皇 发表于 2025-4-26 17:50:21
wwoldok 发表于 2025-4-26 16:57
禁用后右下角不显示日期和时间

只有这样一个方法了
在WIN11中确实点不出 日期和时间
在WIN10中没影响
Changhe 发表于 2025-4-26 17:04:02
来了解一下
wwoldok 发表于 2025-4-26 16:57:16
俪尚皇 发表于 2025-4-26 10:31
隐藏通知中心图标
reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v "DisableNotificatio ...

禁用后右下角不显示日期和时间

点评

只有这样一个方法了 在WIN11中确实点不出 日期和时间 在WIN10中没影响  详情 回复 发表于 2025-4-26 17:50
zsw10 发表于 2025-4-26 14:49:12
进来学习
我是李刚 发表于 2025-4-26 13:57:56
俪尚皇 发表于 2025-4-26 10:31
隐藏通知中心图标
reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v "DisableNotificatio ...

正解
weilai0707 发表于 2025-4-26 13:29:04
学习一下
handsome_xiang 发表于 2025-4-26 13:14:06
了解一下
yc2428 发表于 2025-4-26 13:10:55
还有音量上面那个窗口也很烦人
guong 发表于 2025-4-26 13:03:52
来了解一下
俪尚皇 发表于 2025-4-26 10:31:12
本帖最后由 俪尚皇 于 2025-4-26 10:37 编辑

隐藏通知中心图标
reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v "DisableNotificationCenter" /t REG_DWORD /d 1 /f
423dn 发表于 2025-4-26 10:16:16
我当初也有强迫症,想去掉这个
wsdyleon 发表于 2025-4-26 10:03:59
这问题我以前问过,简单说就是没法办。
因为跟那个日历是捆绑在一起的。
当然确实有些版本是分开的,可以去除。但后来的版本就是在一起的。
细心观察你会发现后来的版本支持农历。而早期的不支持。
zhuxinyu8888 发表于 2025-4-26 09:49:09
@ECHO off

ECHO 关闭Windows Defender 安全中心
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /d 1 /t REG_DWORD /f
echo 完成

ECHO 关闭Windows Defender防火墙
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile" /v "EnableFirewall" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\PrivateProfile" /v "EnableFirewall" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\PublicProfile" /v "EnableFirewall" /d 0 /t REG_DWORD /f
sc stop MpsSvc MpsSvc & sc config MpsSvc start=disabled
echo 完成

ECHO 禁止操作中心弹窗及声音提示
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\SoftLanding" /v "Enabled" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "NOC_GLOBAL_SETTING_TOASTS_ENABLED" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "NOC_GLOBAL_SETTING_ALLOW_CRITICAL_TOASTS_ABOVE_LOCK" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "NOC_GLOBAL_SETTING_ALLOW_TOASTS_ABOVE_LOCK" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "NOC_GLOBAL_SETTING_SUPRESS_TOASTS_WHILE_DUPLICATING" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /v "ToastEnabled" /t REG_DWORD /d 0 /f
echo 完成
yigexinshou 发表于 2025-4-26 09:43:20
小鱼儿的工具可以试试
ynb168c 发表于 2025-4-26 09:39:20
同样需求
cxydeity 发表于 2025-4-26 09:33:43
同样需求
tanglf 发表于 2025-4-26 09:31:29
是有点烦人

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1 )

闽公网安备 35020302032614号

GMT+8, 2025-5-11 19:41

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表