调整Windows 11右键菜单

在Windows 11中,微软对右键菜单进行了更新,引入了“显示更多选项”的二级菜单,这改变了用户习惯,引发了一些不便。以下是一些关闭或调整这一功能的方法: 使用命令提示符: 以管理员身份运行命令提示符。 输入命令 reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /ve /d “” /f 并按回车。 重启电脑。

Continue Reading

DD在线安装系统命令

wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd '直连' bash <(wget --no-check-certificate -qO- 'https://cdn.jsdelivr.net/gh/MoeClub/Note/InstallNET.sh') --mirror 'https://mirrors.ustc.edu.cn/debian' -dd '直链' 以上两个都可 注意的是: 1:--no-check-certificate 可以省略 在http或者https证书有效的情况下 2:--mirror 'https://mirrors.ustc.edu.cn/debian 在国外可以省略,添加是解决国内源无法连接或者过慢的问题 3:简短的命令例子: bash <(wget…

Continue Reading

WordPress访问/wp-json/ 返回404

#这行是为了防止打开后台、插件页等打不开的。 if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; } rewrite /wp-admin$ $scheme://$host$uri/ permanent; #这行是为了防止打开后台、插件页等打不开的。 Wordpress访问/wp-json/ 返回404,无法查看详情页,无法发布POST,在nginx配置里面添加以上代码

Continue Reading

registry.hub.docker.com/r/akaiot/oracle_11g

docker run -d --name oracle_11g -p 1521:1521 --privileged=true --restart=always -e TZ=Asia/Shanghai -v /opt/oracle/ggs:/opt/oracle/ggs -v /opt/oracle/oradata:/home/oracle/app/oracle/oradata -v /opt/oracle/flash_recovery_area/helowin:/home/oracle/app/oracle/flash_recovery_area/helowin akaiot/oracle_11g:latest oracle镜像来自registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 账户:root/helowin docker exec -it oracle_11g /bin/bash source /home/oracle/.bash_profile su root #password:helowin…

Continue Reading

MSSQL-SQLServer数据库data source

数据源表示数据库所在设备的ip地址或名称,基本上有以下几种写方法 data source = (local) data source = "127.0.0.1" data source = . data source = “服务器设备的ip” data source = “服务器设备的名称” 如果要连接的是本地的数据库(可以简单理解为向数据库发起连接请求的程序和数据库在同一台设备上面),上面的方法都是适用的,但如果请求连接的不是本地的数据库那么就只有最后两个方法可以使用(部分情况下还要进行其他操作)。

Continue Reading

IIS Rewrite-http_toHttps-Add_WWW

<?xml version="1.0" ?> <rules> <clear/> <rule name="Add_WWW" stopProcessing="true"> <match url="^(.*)$"/> <conditions> <add input="{HTTP_HOST}" pattern="^(?!www.)(.*)$"/> </conditions> <action type="Redirect" url="http://www.{C:0}{PATH_INFO}" redirectType="Permanent"/> </rule> <rule name="http_toHttps" stopProcessing="true"> <match url="(.*)"/> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true"/>…

Continue Reading