Shortcut virus হলো এমন একটি সাধারণ কিন্তু বিরক্তিকর malware, যা USB drive, memory card বা PC-র ফাইলগুলোকে shortcut বানিয়ে দেয় এবং আসল ফাইলগুলো hidden করে রাখে। এতে মনে হয় সব data delete হয়ে গেছে, কিন্তু আসলে তা থাকে—শুধু hidden থাকে।
এই গাইডে আমরা Shortcut Virus remove করার সব কার্যকর উপায় দেখাবো—CMD, Antivirus, Software এবং Manual পদ্ধতিতে।
---
🔍 Shortcut Virus কি এবং কীভাবে ছড়ায়?
Shortcut virus সাধারণত নিচের মাধ্যমে ছড়ায়:
- Pendrive / USB drive
- Infected PC থেকে file transfer
- Unknown software install
এটি ফাইলগুলোকে ".lnk" (shortcut) বানিয়ে দেয় এবং original file hidden করে রাখে।
---
🛠️ Method 1: CMD দিয়ে Shortcut Virus Remove (Best Method)
CMD ব্যবহার করে খুব সহজে shortcut virus remove করা যায়।
Step:
1. Start Menu → CMD লিখে Run as Administrator
2. নিচের command লিখো:
attrib -h -r -s /s /d X:\*.*
👉 এখানে "X" এর জায়গায় তোমার drive letter বসাও (যেমন: E:, F:)
Result:
- hidden file visible হবে
- shortcut virus remove হবে
---
🔧 Method 2: Manual Hidden File Recovery
1. Folder Options → Show hidden files ON
2. Protected system files OFF
3. Original file copy করে safe location এ রাখো
---
⚡ Method 3: .bat Script দিয়ে Auto Remove
Notepad খুলে এই code past করো:
@echo off
chcp 65001 >nul
title USB Shortcut Virus Remover
echo ==============================
echo USB Shortcut Virus Remover
echo ==============================
echo.
set found=0
:: PowerShell দিয়ে শুধু removable (USB) drive detect
for /f "tokens=1" %%d in ('powershell -NoProfile -Command "Get-WmiObject Win32_LogicalDisk | Where-Object {$_.DriveType -eq 2} | Select -Expand DeviceID"') do (
echo USB Found: %%d
echo Cleaning...
attrib -h -r -s /s /d %%d\*.* >nul 2>&1
del /s /q %%d\*.lnk >nul 2>&1
echo Done cleaning %%d
echo.
set found=1
)
if %found%==0 (
echo ❌ No USB drive detected!
)
echo.
echo ✅ Process finished.
pause
👉 Save as: "fix.bat"
👉 Right click করে Run as administrator করো
---
🚀 Extra Tips (Future Protection)
- Unknown PC-তে USB লাগানো avoid করো
- AutoPlay off রাখো
- Regular antivirus scan করো
- Hidden file check করো
---
🏆 Final Verdict
Shortcut virus খুব common হলেও সহজেই remove করা যায়।
সবচেয়ে effective method হলো CMD command + antivirus scan।
👉 Regular protection maintain করলে এই virus থেকে safe থাকা যায়।
---
🔎 SEO Keywords (useful)
- shortcut virus remove
- remove shortcut virus from usb
- cmd shortcut virus fix
- pendrive virus remove
- how to recover hidden files
---
👉 এই guide follow করলে তুমি সহজেই shortcut virus remove করতে পারবে 💯
