Windows开机自动关闭代理 Windows

保存为bat放在启动目录即可 if "%1"=="h" goto begin start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit :begin #关闭代理 reg add "HKCU\Software\Micr...
myluzh 发布于 

Windows挂载WebDAV Windows

在WIN7、WIN10操作系统用WebDAV映射网络驱动器需要的操作 如果WebDAV不是https的,win7默认是添加不上的,需要修改注册表使得WIN7同时支持http和https,默认只支持https,然后重启服务 某一服务器,配置好了WebDAV。用苹果电脑作客户端可以成功添加网络盘,而WIN7却不行。 后查资料,根据资料操作解决了这一问题。 资料原...
myluzh 发布于 

CentOS 7.9 搭建 AdGuard Home Linux

0X01 安装 CentOS7.9 Minimal版 https://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/CentOS-7-x86_64-Minimal-2009.iso 0X02 手动配置CentOS的静态IP地址 ipconfig查看当前网卡名称,如果没有ifconfig可以使用ip addr命令...
myluzh 发布于 

CentOS利用VLMCSD部署本地KMS服务器 Linux

利用VLMCSD部署本地KMS服务器 VLMCSD 项目名称:VLMCSD 项目简介:KMS Emulator in C (Currently runs on Linux, Mac OS, iOS, Windows with or without Cygwin) 项目主页:https://github.com/Wind4/vlmcsd 软件下载:https:...
myluzh 发布于 

Windows10添加照片查看器 Windows

Windows Registry Editor Version 5.00 ; Change Extension's File Type @="PhotoViewer.FileAssoc.Tiff" ; Change Extension's File Type @="PhotoViewer.FileAssoc.Tiff" ; Change Extensio...
myluzh 发布于 

MacBook利用自带airport抓包cap包,并使用aircrack-ng暴破wifi密码 macOS

安装homebrew /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 安装aircrack-ng brew install aircrack-ng 查看网卡设备名字 系统偏好设置->网络->Wi-Fi->高级->...
myluzh 发布于 

Linux调整CPU性能模式 Linux

模式说明: performance 运行于最大频率 powersave 运行于最小频率 userspace 运行于用户指定的频率 ondemand 按需快速动态调整CPU频率,一有cpu计算量的任务,就会立即达到最大频率运行,空闲时间增加就降低频率 conservative 按需快速动态调整CPU...
myluzh 发布于 

Linux下删除乱码文件及文件夹 Linux

使用 ls -i 命令找到文件或目录的 inode节点号 删除文件(用 inode 替换下面的 12345678): find -inum 12345678 -delete 删除目录(会提示 No such file or directory): find -inum 12345678 -exec rm -rf {} \;
myluzh 发布于 

CentOS7 安装GNOME桌面 开启VNC连接 Linux

0x01安装GNOME桌面 1.更新系统 yum -y upgrade 2.安装必要的软件包 yum -y install grub2-efi fwupdate 3.安装GNOME桌面 yum -y groupinstall 'GNOME Desktop' 'Graphical Administration Tools' 4.如何卸载GNOME桌面? sud...
myluzh 发布于 

Linux 启动服务 systemctl命令 Linux

systemctl is-enabled servicename.service #查询服务是否开机启动 systemctl enable *.service #开机运行服务 systemctl disable *.service #取消开机运行 systemctl start *.service #启动服务 systemctl stop *.service...
myluzh 发布于