Skip to content

Commit

Permalink
Updated solutions page to include UnByp4
Browse files Browse the repository at this point in the history
  • Loading branch information
ndrwcube committed Aug 22, 2024
1 parent 1968dff commit 6cb0c35
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions solutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,34 @@ objShell.Run "taskkill /f /im chrome.exe", 0, True
MsgBox "All Chrome tabs has been closed"

MsgBox "A Chrome shortcut has been created in your Desktop. Launch the new shortcut for the Blocksi Enterprise Edition bypass"
```

The script below can be used to automatically delete the files generated by Byp4.
<a href="UnByp4.vbs" download><p>Download UnByp4.vbs</p></a>
``` vbnet
' Create an instance of the WScript.Shell object
Set objShell = CreateObject("WScript.Shell")

' Get the current user's profile directory
userProfile = objShell.ExpandEnvironmentStrings("%USERPROFILE%")

' Define paths for the "Byp4" directory and the shortcut
byp4Path = userProfile & "\Downloads\Byp4"
shortcutPath = objShell.SpecialFolders("Desktop") & "\Google Chrome.lnk"

' Create an instance of the FileSystemObject
Set fso = CreateObject("Scripting.FileSystemObject")

' Check if the "Byp4" folder exists and delete it if it does
If fso.FolderExists(byp4Path) Then
fso.DeleteFolder byp4Path, True
End If

' Check if the shortcut exists and delete it if it does
If fso.FileExists(shortcutPath) Then
fso.DeleteFile shortcutPath
End If

' Display a message box indicating that the cleanup is complete
MsgBox "Chrome clone and shortcut have been deleted."
```

0 comments on commit 6cb0c35

Please sign in to comment.