摘要: wmic /node:192.168.1.100 /user:administrator /password:123456 process call create "cmd.exe /c ipconfig>d:\result.txt" wmic /node:192.168.1.100 /user:a 阅读全文
posted @ 2022-12-01 16:06 gzhq 阅读(85) 评论(0) 推荐(0) 编辑
摘要: @echo off for /F %%i in ('schtasks /query /nh /fo table ^|find /i "GoogleUpdate"') do ( echo %%i REM schtasks /delete /tn %%i /f ) pause 阅读全文
posted @ 2022-12-01 16:05 gzhq 阅读(28) 评论(0) 推荐(0) 编辑
摘要: #在一台可以联网的机器上执行下列命令准备离线安装包,机器最好内核版本一致mkdir -p /usr/local/src/gccyum install --downloadonly --downloaddir=/usr/local/src/gcc gcc #拷贝下载好的离线安装包到无网络的机器后执行下 阅读全文
posted @ 2022-12-01 16:03 gzhq 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Tcpip\Parameters] "MaxUserPort"=dword:0000fffe "TcpTimeWait 阅读全文
posted @ 2022-12-01 16:02 gzhq 阅读(29) 评论(0) 推荐(0) 编辑
摘要: <div id="floatnotic" style="color :red ;font-size :larger; width :200px; background-color :#ffd800; position:absolute; z-index:99999;display:block;"> 阅读全文
posted @ 2022-12-01 16:01 gzhq 阅读(15) 评论(0) 推荐(0) 编辑
摘要: function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d. 阅读全文
posted @ 2022-12-01 15:55 gzhq 阅读(13) 评论(0) 推荐(0) 编辑
摘要: <input type="file" id="inputimg"> <select id="myselect"> <option value="1">webp格式</option> <option value="2">jpeg格式</option> <option value="3">png格式</ 阅读全文
posted @ 2022-12-01 15:52 gzhq 阅读(113) 评论(0) 推荐(0) 编辑
摘要: chrome://flags#closed-tab-cachechrome://flags#block-insecure-private-network-requestschrome://flags#tab-restore-sub-menus chrome://flags#enable-portal 阅读全文
posted @ 2022-12-01 15:49 gzhq 阅读(490) 评论(0) 推荐(0) 编辑
摘要: ffmpeg -re -i d:\video\test.mp4 -vcodec libx264 -acodec copy -b:v 5286k -f segment -segment_list_type m3u8 -segment_list_size 0 -segment_time 5.0 -seg 阅读全文
posted @ 2022-12-01 15:48 gzhq 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 安装PGSQL PGSQL源码地址:https://ftp.postgresql.org/pub/source/ 下载9.0版本源码 [root@localhost soft]# wget https://ftp.postgresql.org/pub/source/v9.0.0/postgresql 阅读全文
posted @ 2022-10-25 12:49 gzhq 阅读(121) 评论(0) 推荐(0) 编辑