🖥️ Batch (CMD)

Check "Disable Remote Assistance" Status (Batch)

Uses reg query to check the current value behind the "Disable Remote Assistance" tweak.

By WindowsScripting.com · 471 B
CheckDisableRemoteAssistanceStatus.bat
@echo off
:: ============================================================
:: CheckDisableRemoteAssistanceStatus.bat
::
:: Checks whether "Disable Remote Assistance" is currently applied.
:: ============================================================

reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Remote Assistance" /v "fAllowToGetHelp" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'fAllowToGetHelp' is not set (using the Windows default^).
)
pause