“Disabling the updates is effective when you are using large data sets (or many hosts) that contain thousands of directories. We recommend that you use IIS logging instead if you maintain this information only for Web administration.”
来源:https://learn.microsoft.com/en-us/windows-server/administration/performance-tuning/role/web-server/#ntfs-file-system-settings (微软官方的性能调优指南)
复制代码
C:\Users\joshua>mklink
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
/D Creates a directory symbolic link. Default is a file symbolic link.
/H Creates a hard link instead of a symbolic link.
/J Creates a Directory Junction.
Link specifies the new symbolic link name.
Target specifies the path (relative or absolute) that the new link refers to.
复制代码
Windows 服务器环境,禁用 NTFS 文件系统的最后访问时间更新。
fsutil behavior set disablelastaccess 1
对于运行着高IO业务的服务器来说,更新最后访问时间会使得IO负载翻倍,造成性能瓶颈。
因此,更改这个设置,还是非常有必要的。
“Disabling the updates is effective when you are using large data sets (or many hosts) that contain thousands of directories. We recommend that you use IIS logging instead if you maintain this information only for Web administration.”
来源:https://learn.microsoft.com/en-us/windows-server/administration/performance-tuning/role/web-server/#ntfs-file-system-settings (微软官方的性能调优指南)
魔方云 【节点请求来源错误】:
在主控更换IP/更换主控与被控链接IP地址(如127.0.0.1改公网)后,可能会出现。
被控服务器运行命令【sed -i '/^ip=/ s/^ip=.*$/ip=null/g' /usr/local/zjmf/conf/zjmf.conf】,重新保存一下就恢复了。
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Dwm]
"ForceEffectMode"=dword:00000002
http://www.ajiang.net/products/aspcheck/jscripthelp.asp
WIN2025 JSCRIPT
把待办写下来,安排好时间,不要一直想这件事,指定的时间去想。
Win11 24h2
Internet explorer:
"C:\Program Files\Internet Explorer\iexplore.exe" anything -Embedding
wget https://raw.githubusercontent.com/xx2468171796/EasyBBR3/main/easybbr3.sh
今天开始网站服务器跑的是正版windows了 记录一下(?
童年啊,是梦中的真,是真中的梦,是回忆时含泪的微笑。
mklink /d "C:\nvm\nodejs" "C:\Program Files\nodejs"
# windows 软链接的建立及删除
1.建立举例
##建立d:develop链接目录,指向远程的目标服务器上的e盘的对应目录。
mklink /d d:\develop \\138.20.1.141\e$\develop
##建立d:develop链接目录,指向远程的目标服务器上的e盘的对应目录。
mklink /d d:\recivefiles \\138.20.1.141\e$\recivefiles
2.删除举例
#删除虚拟的链接目录,并不会删除远程文件夹真实文件,注意千万不能用del,del会删除远程的真实文件。
rmdir d:\recivefiles
rmdir d:\develop
3.补充mklink用法
复制代码
C:\Users\joshua>mklink
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
/D Creates a directory symbolic link. Default is a file symbolic link.
/H Creates a hard link instead of a symbolic link.
/J Creates a Directory Junction.
Link specifies the new symbolic link name.
Target specifies the path (relative or absolute) that the new link refers to.
复制代码
命令格式:mklink /d(定义参数) \MyDocs(链接文件) \Users\User1\Documents(原文件)
/d:建立目录的符号链接符号链接(symbolic link)
/j:建立目录的软链接(联接)(junction)
/h:建立文件的硬链接(hard link)
https://www.cnblogs.com/cnxkey/articles/7658462.html