@echo off
title Jai Computers - Security / Remote Support Report
color 0A
echo Jai Computers Osian - Security / Remote Support Report
echo.
net session >nul 2>&1
if not "%errorlevel%"=="0" (
  echo Admin permission required. UAC prompt open ho raha hai...
  powershell -NoProfile -ExecutionPolicy Bypass -Command "Start-Process -FilePath '%~f0' -Verb RunAs"
  exit /b
)
echo Admin mode: OK
echo.
echo Ye report banayega jisse Jai Computers remote diagnosis fast kar sake.
echo Password, OTP, banking details kabhi share na karein.
echo.
pause
set "LOG=%USERPROFILE%\Desktop\JaiComputers_Remote_Support_Report.txt"
echo Jai Computers Remote Support Report > "%LOG%"
echo Date: %DATE% %TIME% >> "%LOG%"
echo === SYSTEM === >> "%LOG%"
systeminfo >> "%LOG%" 2>&1
echo === NETWORK === >> "%LOG%"
ipconfig /all >> "%LOG%" 2>&1
echo === STARTUP TASKS === >> "%LOG%"
wmic startup get caption,command >> "%LOG%" 2>&1
echo === RUNNING TASKS === >> "%LOG%"
tasklist >> "%LOG%" 2>&1
start ms-settings:appsfeatures
start windowsdefender:
echo.
echo Report saved on Desktop: %LOG%
echo Is report aur problem screenshot ko WhatsApp par bhejein.
pause
