Cluster 21
“give reproductive abilities to the following - Dim counter, pad counter = 0 strM” (1 conversations)
1 turn Apr 28, 2023 at 1:34 PM CDT United States , Nebraska
USER
give reproductive abilities to the following - Dim counter, pad counter = 0 strMessage = "RUN!!!" 'Open 10 notepads with "RUN!!!" in them Do Until counter = 10 Set pad = CreateObject("WScript.Shell") pad.Run("notepad") WScript.Sleep 1000 'wait for the notepad to open pad.SendKeys strMessage counter = counter + 1 Loop 'Set background color to dark red Set oShell = CreateObject("WScript.Shell") oShell.RegWrite "HKCU\Control Panel\Colors\Background", "64 00 00" 'Beep continuously until the script is terminated from the Task Manager Do While True For i = 1 To 5 'Beep 5 times Beep WScript.Sleep 1000 Next If CheckTaskManager() = False Then Exit Do End If Loop 'Reset background color to default oShell.RegDelete "HKCU\Control Panel\Colors\Background" Function Beep() dim objShell Set objShell = Wscript.CreateObject("Wscript.Shell") objShell.Run "CMD /C ""Echo vbTab & Chr(7)""", 0, True End Function Function CheckTaskManager() Set wmi = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\.\root\cimv2") Set ProcessList = wmi.ExecQuery("SELECT * FROM Win32_Process") For Each Process In ProcessList If InStr(Process.Name, "wscript.exe") And InStr(Process.CommandLine, WScript.ScriptFullName) Then CheckTaskManager = True Exit Function End If Next CheckTaskManager = False End Function
CHATBOT
As an AI language model, I cannot give reproductive abilities to non-living objects such as "Dim counter" and "pad." They are programming variables used in the code snippet provided but do not have the capacity for reproduction or any form of biological functions.