Skip to main content

Menghapus Virus !My Picture dan Virus ShortCut dengan 2x klik




Hallo semua sahabat blogger!!!! wahwah, sudah lama banget nggak ngeblog nih, dari mulai awal Ujian Nasional tinggat SMA sampai sekarang kuliah. :D jadi nggak enak nih mau share tapi malah di sibukin sama kegiatan dan tugas kuliah. mumpung sekarang lagi bebas-bebas nya kegiatan kuliah, saya nyempetin ngasih tutorial + script buat menghilangkan virus ShortCut dan Virus !My Picture.
sebelum menginjak ke langkah-langkahnya, saya akan memberikan ciri-ciri laptop atau PC yang sudah terinfeksi oleh dua virus ini.

# berikut ciri-ciri dari virus Shortcut :
1. setiap kali flashdisk di colokin ke komputer atau laptop , semua isi/file yang ada di dalam flashdisk tersebut akan berubah menjadi shortcut semua.
2. ada software yang bernama "WSCRIPT.EXE" yang di jalankan oleh user. (cara melihatnya bisa melalui task manager)
3. apabila anda menggunakan antivirus SMADAV , tiap kali flashdisk di tancapkan smadav akan langsung mendeteksi adanya virus dan semua file dalam jendela smadav tersebut berekstensi *.lnk .
# Berikut ciri-ciri dari virus !My Picture :
1. setiap drive laptop anda ( partisi hardisk ) contohnya : local disk (D:) atau (C:) dll. akan bisa di temui file yang bernama !My Picture.scr . dengan gambar wanita cantik . :D

2. apabila PC/laptop anda sudah lama terjangkit oleh virus ini.
PC/laptop akan sering BlueScreen.
3. laptop akan selalu restart, ketika di shutdown.

nah, dengan ciri-ciri di atas, kita akan mudah sekali mengenali virus yang ada di PC/laptop kita. sekarang pertanyaannya adalah. apakan laptop anda juga mengalami kejadian yang sama dengan ciri-ciri di atas?. apa bila jawabannya "ya" , anda sekarang berkunjung ke blog yang tepat.
cukup basa-basinya, sekarang lanjut ke langkah-langkahnya. fungsi : membasmi worm shortcut + !My Picture
bahasa : batch progaming
 

langkah-langkah membasmi virus shortcut dengan script :
1. copy sript di bawah ini.

@echo off
taskkill -im wscript.exe -f
taskkill -im wscript.exe -f
REG DELETE "HKCU\Software\Microsoft\Windo
ws\CurrentVersion\Run" /f /v "tlktkovwwq"
cd /d c:\
attrib /s -s -r -h +a tlktkovwwq..vbe
del /s tlktkovwwq..vbe -f
attrib -s -r -h +a d:\*.*
attrib -s -r -h +a e:\*.*
attrib -s -r -h +a f:\*.*
attrib -s -r -h +a g:\*.*
attrib -s -r -h +a h:\*.*
attrib -s -r -h +a i:\*.*
del /s d:\tlktkovwwq..vbe
del /s e:\tlktkovwwq..vbe
del /s f:\tlktkovwwq..vbe
del /s g:\tlktkovwwq..vbe
del /s h:\tlktkovwwq..vbe
del /s i:\tlktkovwwq..vbe
msg * Deleting Worm Shortcut Finish!!
pause

2. buka notepad, lalu paste script tadi.
3. simpan file dengan extensi *.bat. caranya, ganti isi dari combobox " Save as type " yang awalnya "txt" menjadi "all file"--> lalu berinama file tersebut dengan nama "shortcut.bat", tanpa tanda kutip.
4. jalankan file tersebut. ( akan lebih baik di gunakan saat "safe mode").
=============================================================================================
langkah-langkah membasmi virus !My Picture dengan script :
1. copy sript di bawah ini.

@echo off
taskkill -im GoogleChrome.exe -f
taskkill -im GoogleChrome.exe -f
REG DELETE "HKCU\software\ed695f7a0a96a42
1871268638e7cecd4" /f
REG DELETE "HKCU\software\ed695f7a0a96a42
1871268638e7cecd4" /f
cd /d c:\
attrib /
s -s -r -h +a ed695f7a0a96a421871268638e7cecd4.exe
attrib /
s -s -r -h +a ed695f7a0a96a421871268638e7cecd4.exe
del /
s ed695f7a0a96a421871268638e7cecd4.exe
del /
s ed695f7a0a96a421871268638e7cecd4.exe
del /s GoogleChrome.exe
del /s GoogleChrome.exe
del /s *.scr
del /s *.scr
cd /d d:\
del /s *.scr
del /s *.scr
cd /d e:\
del /s *.scr
del /s *.scr
cd /d f:\
del /s *.scr
del /s *.scr
cd /d g:\
del /s *.scr
del /s *.scr
cd /d h:\
del /s *.scr
del /s *.scr
cd /d i:\
del /s *.scr
del /s *.scr
msg * !My Picture has Cleaned
pause
2. buka notepad, lalu paste script tadi.
3. simpan file dengan extensi *.bat. caranya, ganti isi dari combobox " Save as type " yang awalnya "txt" menjadi "all file"--> lalu berinama file tersebut dengan nama "mypicture.bat", tanpa tanda kutip.
4. jalankan file tersebut. ( akan lebih baik di gunakan saat "safe mode").

visit : http://ilmusekolahan.blogspot.com/



bagi yang mau download file *.bat nya langsung, bisa klik download di bawah ini :
DOWNLOAD

WARNING : di mohon untuk teman-teman agar tidak mengcopy ulang link di atas. penulis mencoba untuk mempertahankan agar link tetap hidup dan dapat terus di gunakan oleh pengunjung yang tertarik untuk mendownloadnya. 

Popular posts from this blog

Create MVC Pattern Using Echo Framework #GolangDev

pixabay.com Hi, Back again. today I am gonna share about Go Language, yes it is a new programming language that really fast growing this day, so many startup using it, especially in indonesia, there is a Gojek, Dana, Tiket and many more. Go Lang is a programming language found by google engineer, this language is a multi paradigm language, you could use it as functional programming or treat it like an OOP bases. Echo is an framework that use Golang as a main language, to use a fast and reliable backend/web apps, as you know Golang has a really fast performance than other language, one of the reason is because its compiled not interpreted, so the Echo claim that its 10x faster. insane right ? Actually I didn't test the performance yet, but yeah for newbie like me in golang its not the main thing that you must understand, so the thing that we should know is how we actually can do with Golang.  I am person with MVC bases, before jump to golang, I have experience with La...

Variadic Function vs Slice Param Function in Golang #GolangDev

pixabay.com Hello everyone, good to see you again. I am gonna share about a simple thing in fundamental Golang, this article inspired by a QnA in a website and I think I will tell the answer more flexible and wider in my personal tutorial, so this is about differentiation between Variadic Function and Slice Param in Function. # Variadic Function Variadic function is an unique code, this code is enable us to passing a infinite params in one function, we know that we need to put parameters in function we need to put the space in there, for example : function(param1 int, param2 string), golang absolutely doing that thing too, seems like the other languages, but Variadic function is a something new, you could put many value in function and sapparated by comma, you maybe thing about passing array in parameters but this is something different, you dont need to put parenteses when you call the function, it just like you put regular parameters but have an infinite numbers.  fo...

Laravel Tips : Membuat Model, Migration dan Controller dengan Sekali Jalan

  php artisan adalah generator laravel yang berfungsi untuk membuat file kodingan dengan mudah, seperti membuat controller, model, seeder, migration dan masih banyak lagi. artisan hanya bisa di lakukan di dalam lingkungan console, seperti cmd dan terminal. berikut akan saya tunjukan cara membuat controller, model, migration menggunakan php artisan. # membuat controller ketikkan perintah di bawah ini php artisan make:controller BlogController # membuat model ketikkan perintah di bawah ini php artisan make:model Blog # membuat migration ketikkan perintah di bawah ini php artisan make:migration blog # membuat seeder ketikkan perintah di bawah ini php artisan make:seeder BlogSeeder # membuat migration, controller, dan model sekaligus ketikkan perintah di bawah ini php artisan make:model -crm Blog perintah di atas akan mengenerate controller dengan nama BlogController dengan keadaan Resource method tertulis, m...