Posts

Showing posts from May, 2026

Complete Rocky Linux 9 - daloRADIUS + FreeRADIUS + 5000 Users

✅ Complete Rocky Linux 9 - daloRADIUS + FreeRADIUS + 5000 Users Ek Command Mein Complete Setup 📥 Step 1: Copy and Run This ONE Command bash curl -fsSL https://pastebin.com/raw/XXXXX | bash Ya agar internet slow hai to manual script: bash cat > /root/full_setup.sh << 'EOF' #!/bin/bash # ============================================ # COMPLETE daloRADIUS + FreeRADIUS SETUP # For Rocky Linux 9 # 5000 MAC Users Ready # ============================================ set -e RED='\033[0;31m' GREEN='\033[0;32m' YELLOW='\033[1;33m' NC='\033[0m' echo -e "${GREEN}" echo "==========================================" echo " daloRADIUS + FreeRADIUS Complete Setup" echo " Rocky Linux 9" echo "==========================================" echo -e "${NC}" # Get IP address SERVER_IP=$(ip addr show | grep 'inet ' | grep -v '127.0.0.1' | awk '{print $2}' | cut...

TALLY SERVER FULL OPTIMIZATION SCRIPT # Windows Server 2019

 ?? IS SCRIPT KE BENEFITS ? Windows Defender properly optimized ? Tally folders safe ? Processes excluded ? High performance mode enabled ? Background noise reduced ? Temp files cleaned # ========================================= # TALLY SERVER FULL OPTIMIZATION SCRIPT # Windows Server 2019 # ========================================= Write-Host "Starting Tally Optimization..." -ForegroundColor Cyan # ----------------------------- # 1. Enable Windows Defender (Safe Mode) # ----------------------------- Write-Host "Configuring Windows Defender..." -ForegroundColor Yellow Set-MpPreference -DisableRealtimeMonitoring $false # ----------------------------- # 2. Add Exclusion Paths # ----------------------------- Write-Host "Adding Tally folder exclusions..." -ForegroundColor Yellow Add-MpPreference -ExclusionPath "C:\Tally" -ErrorAction SilentlyContinue Add-MpPreference -ExclusionPath "D:\TallyData" -ErrorAction SilentlyContinue # -----------...