Files
2021-05-28 07:53:17 +02:00

11 lines
173 B
Plaintext

Sub CheckDomain()
On Error Resume Next
Set objRootDSE = GetObject("LDAP://RootDSE")
If Err.Number <> 0 Then
wscript.Quit
Else
MsgBox ("Evil")
End If
On Error GoTo 0
End Sub