Skip to content

Latest commit

 

History

History
82 lines (62 loc) · 3.27 KB

solutions.md

File metadata and controls

82 lines (62 loc) · 3.27 KB

Solutions

  • Blocksi Enterprise Edition Bypass
  • Mobile Guardian Removal: Reliable and proven solution for iPads.
  • Local Admin Enabling: Available for most Windows devices with Parent DMA Option (A/B/C) selected.

Blocksi Enterprise Edition Bypass

This bypass works by disabling all Chrome extensions to stop Blocksi from loading.
Since MOE has made a script to stop regular Chrome from starting with extensions, the script now makes a copy of the Chrome Program Files to circumvent this.

Download Byp4.vbs

Set objShell = CreateObject("WScript.Shell")
' Get the user's profile directory
userProfile = objShell.ExpandEnvironmentStrings("%USERPROFILE%")

' Navigate to Chrome Program Files folder
chromePath = objShell.ExpandEnvironmentStrings("%ProgramFiles%\Google\Chrome\Application\")

Set fso = CreateObject("Scripting.FileSystemObject")
fso.CreateFolder(userprofile & "\Downloads\Byp4")

' Copy everything in Chrome application folder to the Bypass directory
objShell.Run "xcopy /s /y """ & chromePath & "*.*"" """ & userProfile & "\Downloads\Byp4\""", 0, True

' Rename chrome.exe to policytick.exe in the Bypass directory
Set objFSO = CreateObject("Scripting.FileSystemObject")
chromeExePath = userprofile & "\Downloads\Byp4\chrome.exe"
bypExePath = userprofile & "\Downloads\Byp4\policytick.exe"
objFSO.MoveFile chromeExePath, bypExePath

' Create a shortcut for the copied Chrome executable with the flag --disable-extensions
Set objShortcut = objShell.CreateShortcut(objShell.SpecialFolders("Desktop") & "\Google Chrome.lnk")

' Construct the path to the Downloads folder
downloadsPath = userProfile & "\Downloads\Byp4"

' Set the TargetPath of the shortcut to the Downloads folder
objShortcut.TargetPath = downloadsPath & "\policytick.exe"

objShortcut.Arguments = " --disable-extensions"
objShortcut.Save

' Close all Chrome tabs
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.

Download UnByp4.vbs

' 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")

' Kill any running instances of Chrome
objShell.Run "taskkill /f /im policytick.exe", 0, True

MsgBox "All policytick.exe/Byp4 instances closed."

' 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."