编辑配置文件
%localappdata%\Logitech\Logitech Gaming Software\settings.json
在最后一个括号前添加

, "notification" :    {     "showDpiChangeToastNotify" : false,     "showProfileChangeToastNotify" : false   }

保存退出,然后把settings.json设置成只读

如图:



     To anyone that stumbles with this you can disable the notifications  by editing the file located at: `%localappdata%\Logitech\Logitech Gaming  Software\settings.json`  

     and adding this before the last }:  

, "notification" :    {     "showDpiChangeToastNotify" : false,     "showProfileChangeToastNotify" : false   }

Set the file to read-only!





原因:微软在  24H2 更新中强制使用 SMB 签名、禁用访客回退等措施
解决方法:组策略---Microsoft 网络客户端: 对通信进行数字签名(始终) 改成禁用



首先按照https://rspamd.com/downloads.html操作,安装出现缺少以下库

The following packages have unmet dependencies:
 rspamd : Depends: libc++1-16 (>= 1:16.0.0~++20230308013049+7b4e71bcf991) but it is not installable
          Depends: libc++abi1-16 (>= 1:16.0.0~++20230308013049+7b4e71bcf991) but it is not installable
          Depends: libunwind-16 (>= 1:16.0.0~++20230308013049+7b4e71bcf991) but it is not installable
E: Unable to correct problems, you have held broken packages.

解决办法:
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 16

sudo apt install libc++-16-dev libc++abi-16-dev libunwind-16-dev
Windows使用网络位置感知 (NLA) 服务检测网络的属性并确定如何管理与该网络的连接。 NLA 使用名为网络连接状态指示器 (NCSI) 的组件来确定计算机是否已成功连接到网络,以及网络是否具有 Intranet 或 Internet 连接。

NCSI 同时使用主动和被动探测器。 这些探测器由任意网络接口中的更改触发。 当按照"症状"部分所述将计算机连接到网络时,NCSI 将开始一个包含以下一个或多个内容的进程:


解决方法

开始-运行-gpedit

若要使用组策略禁用 NCSI 活动探测器,请配置以下 GPO:

  • 计算机配置 \管理模板 \系统 \Internet 通信管理 \Internet 通信设置 \关闭Windows网络连接状态指示器活动测试
    • 值:已启用

若要使用组策略禁用 NCSI 被动探测器,请配置以下 GPO:

  • 计算机配置 \管理模板 \网络 \网络连接状态指示器 \指定被动轮询
    • 值:已启用
执行下列查询,其中Password 为要锁定的列

DELIMITER ;;
drop trigger if exists foo_upd;;
CREATE TRIGGER foo_upd BEFORE  UPDATE ON 表名 FOR EACH ROW
begin 
IF OLD.Password != NEW.Password THEN
set NEW.Password=OLD.Password ;
END IF;
END;;
DELIMITER ;

 
分页: 1/18 第一页 1 2 3 4 5 6 7 8 9 10 下页 最后页 [ 显示模式: 摘要 | 列表