首页 > 编程语言 >尝试使用vb写出能搞一点小破坏的程序

尝试使用vb写出能搞一点小破坏的程序

时间:2023-07-16 12:55:47浏览次数:35  
标签:尝试 vb shell 启动器 currentpath createobject fso 写出 文件夹

Const OverwriteExisting=True
set shell=createobject("wscript.shell")
msgbox "点击"
currentpath = createobject("Scripting.FileSystemObject").GetFolder(".").Path

dim fso,fld
set fso = createobject("scripting.filesystemobject")
'set fld = fso.createfolder(currentpath+"\文件夹")

set fso1 = createobject("scripting.filesystemobject")
fso1.CopyFile currentpath+"\王者皮肤启动器.vbs",currentpath+"\文件夹"

'Source: 要拷贝的源文件的路径。
'Destination: 目标文件夹的路径。

'shell.run currentpath+"\王者皮肤启动器.vbs",1,true

 

标签:尝试,vb,shell,启动器,currentpath,createobject,fso,写出,文件夹
From: https://www.cnblogs.com/cocotun/p/17557708.html

相关文章

  • VBA延时
    Application.Waitmethod(Excel)Wait 方法暂停MicrosoftExcel的所有操作,并且,Wait 起作用时可能禁止您对计算机做其他操作。不过,后台操作(如打印和重新计算)将继续进行。语法:Application.Wait(你想要恢复宏的时间,采用MicrosoftExcel日期格式。)该参数为字符串(时,分,秒)格......
  • 关闭 Windows 11 中的智能应用控制、内核隔离和内存隔离,你可以尝试以下步骤
    关闭Windows11中的智能应用控制、内核隔离和内存隔离,你可以尝试以下步骤:智能应用控制:打开“设置”(可以通过键盘快捷键Win+I来打开)。点击“隐私和安全”。在左侧导航栏中选择“智能屏幕时间”。取消勾选“在此设备上使用智能应用控制”。内核隔离和内存隔离:请注意,内......
  • 在 Windows 11 中,桌面上的右键菜单已经更新为全新设计。但如果你希望使用类似旧版本的
    在Windows11中,桌面上的右键菜单已经更新为全新设计。但如果你希望使用类似旧版本的右键菜单,可以尝试以下方法:使用注册表方法:按下Win+R组合键打开“运行”对话框,输入"regedit"并按Enter键打开注册表编辑器。在注册表编辑器中,导航到以下路径:HKEY_CURRENT_USER\Softwar......
  • netCDF文件的写出
    defnetCDF_out(tp,dims,coords,filename):tp1=[]forkey,valueintp.items():#print(key,xr.DataArray(value))tp1.append(xr.DataArray(value))tp1=xr.concat(tp1,dim='date')output_file=f"文件路径\\{f......
  • VBA常用的文本函数 instr、mid
    InStr函数DimSearchString,SearchChar,MyPosSearchString="XXpXXpXXPXXP"'Stringtosearchin.SearchChar="P"'Searchfor"P".'Atextualcomparisonstartingatposition4.Returns6.MyPos=Inst......
  • VBA自定义排序
    SortField.clear方法清除所有 SortFields 对象。SortFields.Add方法创建新的排序字段,并返回一个SortFields 对象。语法:expression.SortFields.add(key、SortOn、 Order、 CustomOrder、 DataOption)'Key:指定排序字段的范围或单元格。'SortOn:指定排序方式。例如xl......
  • excle的几种写出方式
    importpandaslis1=['a1','b1','c1','d1','e1']lis2=['a2','b2','c2','d2','e2']lis3=['a3','b3','c3','d3......
  • windows尝试写了一个打开应用程序的
    usingSystem;usingSystem.Diagnostics;namespaceHelloWorld{classProgram{staticvoidMain(string[]args){try{//要打开的软件的路径stringsoftwarePath_idea="";......
  • vba批量合并and拆分多个Excel文件
    1、拆分:一个文件按照某一列的类型,拆分成多个文件:PrivateSubSplitDataByColumn()'学习代码DimsourceWorkbookAsWorkbookDimsourceWorksheetAsWorksheetDimlastRowAsLongDimcolumnToSplitAsRangeDimuniqueValuesAsCollection......
  • 尝试写一个SpringBoot的demo
    在Spring官网使用脚手架:  https://start.spring.io/选择3项依赖:   编写代码: 启动运行应用:   启动了8080端口 访问:http://localhost:8080/hyc健康检查:  http://localhost:8080/actuator/health......