@echo off
:: ============================================================
:: SetDisableRemoteAssistance.bat
::
:: Disable Remote Assistance.
:: Disables the ability for others to remotely assist this PC (requires admin). Requires an elevated (Administrator) prompt.
:: ============================================================

reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Remote Assistance" /v "fAllowToGetHelp" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Remote Assistance applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause