🔒 Ultra Security 🕵️‍♂️

0



🔷 How to set it up?

  1. Download the file 👇
  1. Open the zip file.
  2. Copy/Cut the Ultra Security.exe file.
  3. Open Startup folder.
  4. Paste the Ultra Security.exe file there.
  5. Restart your PC/laptop.

That’s it! Now when your PC starts, you’ll have 10 seconds to create a folder named iamhere , otherwise it’ll shutdown. This isn’t useful for everyday use, but it’s very handy when you're away for a few days or when you don’t want anyone else touching your PC. 

🔷 Just for your information

I have compiled the AutoHotkey script to .exe file so that everyone can use it without installing AutoHotkey 1.1 version. (what is AutoHotKey?)

  • If you want to read the code → right click on the file [Code] If you want to read - Ultra Security.ahk → Open with Notepad.
  • or you if you want to create you own script, here’s the guide 👇

🔷 Guide

  1. Download and Install AutoHotKey 1.1 → Link → https://www.autohotkey.com/download/ahk-install.exe
  2. Open Startup folder
    1. Press Windows + R → type shell:startup → press Enter
  3. Right click → New → AutoHotkey Script
  4. Copy the below code and paste it there.
  5. Save. Done!

Note: I’ve added comments inside the code so that you know what is happening!


; For the tutorial and more details, visit: bit.ly/ultrasecurity

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

; Wait for 10 seconds
Sleep, 10000

; Get the path to the desktop
desktopPath := A_Desktop "\iamhere"

; Check if the "iamhere" folder exists on the desktop; if not, shutdown the computer
If !FileExist(desktopPath)
{
Shutdown, 5
}

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.