Posts

Showing posts from April, 2026

fix sd card

✅ Use ka tarika: Notepad kholo Code paste karo Save as: fix_sdcard.bat Right click → Run as Administrator ⚠️ Important baat: Yeh script basic recovery try karta hai Har .CHK file image nahi hoti Kuch files open nahi hongi (normal hai)  _____________________________________________________-------------------------------------- ----------------------------------------------------------------------------------------------------------------------- @echo off title SD Card Repair & CHK Recovery Tool echo =============================== echo SD Card Repair Started echo =============================== echo. :: Step 1: Drive select set drive=E: echo Step 1: Drive open ho rahi hai... %drive% cd \ echo. echo Step 2: Shortcut files delete ho rahi hain... del /f /q *.lnk 2>nul echo. echo Step 3: Hidden/System files unhide ho rahi hain... attrib -h -r -s /s /d . 2>nul echo. echo Step 4: Disk check start ho raha hai... chkdsk %drive% /f /r /x echo. echo Step 5: F...

Windows 11 ke common RDP issues fix karta hai

  🧾 Use ka tareeqa Notepad kholo Upar wala code paste karo File save karo as: rdp_fix.bat Right-click → Run as Administrator ⚠️ Note Yeh script Windows 11 ke common RDP issues fix karta hai Agar phir bhi issue aaye to network ya server-side config check karna padega -------------------------------------------------------------------------- @echo off title RDP Fix Tool - Windows 11 color 0A echo =============================== echo RDP Fix Script (Win11) echo =============================== echo. :: Run as admin check net session >nul 2>&1 if %errorLevel% NEQ 0 ( echo [ERROR] Please run this script as Administrator! pause exit ) echo [1] Disabling RDP UDP (Fix for disconnect/lag)... reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client" /v fClientDisableUDP /t REG_DWORD /d 1 /f echo [2] Enabling Remote Desktop Firewall Rules... netsh advfirewall firewall set rule group="remote desktop" new enable=Yes echo [3] Ope...

Squid dashboard

 cat > /opt/squid-dashboard/app.py << 'PYEOF' from flask import Flask, request, jsonify, session, redirect, render_template_string import subprocess, re app = Flask(__name__) app.secret_key = 'squid2024' SQUID_CONF = '/etc/squid/squid.conf' LOG_FILE = '/var/log/squid/access.log' USERS = {     'admin': {'password': 'Squid@2024', 'role': 'admin'},     'junior': {'password': 'Junior@2024', 'role': 'junior'} } def login_required(f):     from functools import wraps     @wraps(f)     def decorated(*args, **kwargs):         if 'user' not in session:             return redirect('/login')         return f(*args, **kwargs)     return decorated def read_conf():     with open(SQUID_CONF, 'r') as f:         return f.read() def write_conf(content):     with open(SQUID_CONF, 'w') as f:         f.write...

Office 10 and win 10

  Win 10 and office https://mirzanumair2.blogspot.com/2024/08/microsoft-activation-scripts-mas.html

2 Internet (WAN1 + WAN2) ok

🔥 کیا کرے گا یہ اسکرپٹ؟ ✔ 2 Internet (WAN1 + WAN2) ✔ Load Balancing (50/50) ✔ Auto Failover ✔ DHCP + DNS ready ✔ Basic firewall ⚠️ Run کرنے سے پہلے چیک کریں WAN1 gateway = 192.168.2.1 WAN2 gateway = 192.168.100.1 👉 اگر آپ کے ISP کا IP different ہو تو change کر دیں INTERFACE RENAME set [ find default-name=ether1 ] name=WAN1 set [ find default-name=ether2 ] name=WAN2 set [ find default-name=ether3 ] name=LAN1 set [ find default-name=ether4 ] name=LAN2 BRIDGE CONFIG (LAN PORTS) ====================== /interface bridge add name=LAN-BRIDGE /interface bridge port add interface=LAN1 bridge=LAN-BRIDGE add interface=LAN2 bridge=LAN-BRIDGE IP ADDRESSING /ip address add address=192.168.2.2/24 interface=WAN1 add address=192.168.100.2/24 interface=WAN2 add address=192.168.0.1/24 interface=LAN-BRIDGE DNS CONFIG /ip dns set servers=8.8.8.8 allow-remote-requests=no DHCP SERVER /ip pool add name=dhcp_pool ranges=192.168.0.10-192.168.0.254 /ip dhcp-server add name=dhcp1 interface=LAN-B...

Windows Server 2019 Datacenter Activation (DOS)

 @echo off Windows Server 2019 Datacenter Activation echo Checking for Administrator privileges... net sessions >nul 2>&1 if %errorLevel% == 0 (     echo Admin privileges detected. Starting activation... ) else (     echo Please run this file as Administrator!     pause     exit ) echo. echo Step 1: Setting KMS Server... slmgr.vbs /skms kms8.msguides.com echo. echo Step 2: Installing Product Key... slmgr.vbs /ipk WMDGN-G9PQG-XVVXX-R3X43-63DFG echo. echo Step 3: Activating Windows... slmgr.vbs /ato echo. echo Step 4: Checking Status... slmgr.vbs /xpr echo. echo Activation process completed. pause

Is error (0x80070709) ke liye ek Auto-Fix Batch File

Is error (0x80070709) ke liye ek Auto-Fix Batch File niche di gayi hai. Ye file Registry mein printer ki purani settings ko clean karegi aur Print Spooler service ko reset kar degi. Step 1: Batch File Banane ka Tareeka Desktop par Right-click karein aur New > Text Document open karein. Niche diya gaya code copy karke Notepad mein paste karein: @echo off echo Processing Printer Error 709 Fix... echo. :: Stopping Print Spooler echo [1/4] Stopping Print Spooler... net stop spooler /y :: Registry Fix (Deleting faulty Device key) echo [2/4] Repairing Registry Settings... reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows" /v Device /f :: Clearing Print Queue echo [3/4] Clearing old print queue... del /Q /F /S "%systemroot%\System32\Spool\Printers\*.*" :: Restarting Print Spooler echo [4/4] Restarting Print Spooler... net start spooler echo. echo Process Complete! Please restart your PC and try to set the printer as default. pause

Windows Server 2019 Evaluation to Datacenter

 Windows Server 2019 Evaluation to Datacenter #Download https://software-download.microsoft.com/download/pr/17763.253.190108-0006.rs5_release_svc_refresh_SERVER_EVAL_x64FRE_en-us.img #Install #Note I have tried changing the edition in install.wim but it did not work. #Run the following command Dism /Online /Set-Edition:ServerDatacenter /ProductKey:WMDGN-G9PQG-XVVXX-R3X43-63DFG /AcceptEula #Reboot and enjoy #Credits go to CHEF-KOCH

server 2019 crack

  dism /online /set-edition:serverDatacenter /productkey:WMDGN-G9PQG-XVVXX-R3X43-63DFG /acceptEula