Thanks for checking — let me guide you again step-by-step
to create a working no-UAC desktop shortcut that unlocks your BitLocker
drive (E:), using Task Scheduler correctly.
✅ Final Working Method: Unlock
BitLocker Drive Without UAC Prompt
We’ll create:
- A Task
Scheduler task that runs with admin privileges
- A desktop
shortcut to run it silently (no UAC)
๐ Step 1: Create Task in Task
Scheduler
- Press
Win + R, type taskschd.msc, press Enter
- Click
“Create Task…” (not Basic Task)
- Under
the General tab:
- Name:
UnlockE
- Check:
✅ Run with highest privileges
- Configure
for: Choose Windows 10 or 11
- Go
to the Actions tab:
- Click
New…
- Action:
Start a program
- Program/script:
- cmd.exe
- Add
arguments (optional):
- /c
manage-bde -unlock E: -password
- Click
OK and finish creating the task.
๐ When you run this, it
will ask for the BitLocker password inside the terminal window.
๐ก Step 2: Create Desktop
Shortcut to Run Task (No UAC)
- Right-click
desktop → New → Shortcut
- Type
this as the location:
- schtasks
/run /tn "UnlockE"
- Click
Next
- Name
it:
- Unlock
E Drive
- Click
Finish
✅ Now when you double-click the
shortcut — it should run as administrator with no UAC prompt, and open
the BitLocker unlock prompt in a Command Prompt window.
๐งช Test
- Lock
your drive using:
- manage-bde
-lock E: -forceDismount
- Then
double-click your shortcut — it should prompt for the password and unlock
the drive.
⚠️ If It Still Doesn’t Work
- Open
Task Scheduler → Find your task → Right-click → Run
- Does
it open the terminal and ask for the password?
- If not,
check:
- Did
you enter the arguments correctly?
- Is
the drive letter correct?
Would you like an option that auto-unlocks the drive using a
.bek key file (safer and no manual typing)?
Comments
Post a Comment