Script: ADVANCED USB TOOLKIT
@echo off
title ADVANCED USB TOOLKIT
color 0A
:menu
cls
echo =======================================
echo ADVANCED USB TOOLKIT
echo =======================================
echo.
echo 1. Open Device Manager
echo 2. View Connected USB Devices
echo 3. Open Disk Management
echo 4. Safely Remove Hardware
echo 5. Show USB Driver Information
echo 6. List All Drives
echo 7. Format USB Drive
echo 8. Eject USB Drive
echo 9. Open BitLocker Drive Encryption
echo 10. Computer Management
echo 11. Event Viewer
echo 12. Restart Windows Explorer
echo 13. Exit
echo.
set /p choice=Select option:
if %choice%==1 start devmgmt.msc
if %choice%==2 powershell „Get-PnpDevice -Class USB“
if %choice%==3 start diskmgmt.msc
if %choice%==4 rundll32 shell32.dll,Control_RunDLL hotplug.dll
if %choice%==5 powershell „Get-WmiObject Win32_USBControllerDevice“
if %choice%==6 wmic logicaldisk get name, volumename, size
if %choice%==7 echo ACHTUNG: Datentraegerformatierung nur manuell ueber diskpart!
if %choice%==8 powershell „$drive = Read-Host ‚Drive Letter‘; (New-Object -comObject Shell.Application).Namespace(17).ParseName($drive + ‚:‘).InvokeVerb(‚Eject‘)“
if %choice%==9 start control /name Microsoft.BitLockerDriveEncryption
if %choice%==10 start compmgmt.msc
if %choice%==11 start eventvwr.msc
if %choice%==12 taskkill /f /im explorer.exe && start explorer.exe
if %choice%==13 exit
pause
goto menu
