1.列出当前目录下的文件按时间desc:dir /o-d
2.用Windows Server架設NTP時間伺服器
3.创建wifi热点
1.删除使用
netsh wlan set hostednetwork mode=disallo
4.Windows Server2008 R2 设置允许多个人远程连接桌面
补充1:120天免费的,到期后需要给微软付费购买授权
补充2:120天到期后处理办法,处理后貌似还支持多用户,哈哈哈
5.激活Windows Server2008 R2
1.Windows Loader
2.使用说明
8.delphi
1.论坛
#更改powershell为默认shellNew-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -PropertyType String -Force
#让powershell把远程发送来的字符串,识别为命令,而不是脚本名
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShellCommandOption -Value "/c" -PropertyType String -Force
#远程ssh,覆盖式拷贝,覆盖式备份文件夹,等待10秒否则直接执行下一条命令,使用winrar解压,等待10秒否则ssh直接结束导致winrar未执行
ssh admin@X "xcopy html.tar.gz C:\nginx-1.17.0 /y && C: && cd C:\nginx-1.17.0\ && xcopy WSL %date:~0,4%%date:~5,2%%date:~8,2% /S/E/I/y && ping -n 10 127.0.0.1>nul && rd/s/q WSL && mkdir WSL && start winrar x -y html.tar.gz C:\nginx-1.17.0\WSL && ping -n 10 127.0.0.1>nul"
10.tomcat日志按天分割
1.startup.bat:
call "%EXECUTABLE%" run %CMD_LINE_ARGS%
2.catalina.bat:| C:\software\cronolog-1.6.1.win32-bin\cronolog.exe %CATALINA_HOME%\logs\akz.%date:~0,4%-%date:~5,2%-%date:~8,2%.out
3.cronolog下载
1.Tomcat开机启动
1.参考1、参考2
2.如配置共享目录需要域账号登录
1.参考1
12.加解密
13..p7b证书转换未.pfx证书并配置到tomcat
1.windows安装openssl
2.生成csr及privatekey
3..p7b转.cer,.cer基于private key转.pfx
4.tomcat server.xml配置
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile=”/path/to/mycert.pfx” keystoreType=”PKCS12″ keystorePass="your_PKCS12_password" />
5.自己生成证书
keytool -genkey -v -alias testKey -keyalg RSA -validity 3650 -keystore ~/Lee/test.keystore
6.JDK导入证书
keytool -import -alias opendistroes -keystore D:\01_software\jdk1.8\jre\lib\security\cacerts -file D:\01_software\jdk1.8\jre\lib\security\xx.cer
14.Windows搭建sftp并配置免密登录
15.imagemagick处理图片
1.从https://imagemagick.org/script/download.php#windows下载免安装版imagemagick
echo Starting image processing...
#遍历jpg文件
for %%f in (*.jpg) do (
echo Processing file: %%f
#调整高度为420px
D:\01_software\ImageMagick-7.1.1-39-portable-Q16-x64\magick.exe "%%f" -resize x420 "%%f"
)
echo Image processing completed.
pause