mirror of
https://github.com/bl4d3rvnner7/sourcescodes.git
synced 2025-12-16 16:34:05 +00:00
Silent Telegram Screenshot Sender [Source Code] 👩💻 🧾 Prerequisites To compile and run this C# program, you need: ✅ Option 1: .NET SDK / Visual Studio Developer Command Prompt ▶️Install .NET SDK (https://dotnet.microsoft.com/en-us/download/dotnet) or ▶️Use Visual Studio with the Developer Command Prompt ✅ Option 2: Use csc.exe from Windows * Comes with .NET Framework (on most Windows systems) * Path: C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe 🔧 Compilation 1️⃣ Save the Code Create a new text file, e.g., Program.cs, and paste the full C# code into it. Replace: string token = ""; string chatId = ""; with your actual Telegram bot token and chat ID. 2️⃣Open CMD / PowerShell Navigate to the directory where Program.cs is saved. 3️⃣Compile with CSC "C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe" /target:exe /platform:x86 /optimize Program.cs ✅ This creates a file: Program.exe in the same folder. If you're on 64-bit Windows, you can also try: "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe" /target:exe /platform:x64 /optimize Program.cs 4️⃣ Run the Program Now just execute the program: Program.exe 🔴No window will open. 🔴No file will be saved. 🔴Screenshot is sent silently via Telegram. 💎 Features of the source code: ✅ Silent execution 🖼 Screenshot functionality 🖼 Telegram upload 💾 No file saved locally 🔄 Error fallback 🛠 Embedded Win32 calls
974 B
974 B