Skip to main content

How to remove shortcut virus from pendrive ?

How to remove shortcut virus from pendrive ?
--------------------------------------------------------
1. Plug in your virus affected drive,
just press Win key + R to open Run
box and type “cmd” and press Enter
key. (Without double quotes)
2. In the opened command prompt,
open your drive by enter your drive
letter as shown in the below figure.
For example, if your drive letter is
enter g: and press Enter. (To find
your drive letter just open “My
Computer” and check your drive icon)
3. Now type “del *.lnk” and hit Enter.
(without double quotes)
4. Finally type the below command
and hit Enter. (without double
quotes) “attrib -s -r -h *.* /s /d /l”
That’s it, just wait some seconds.
Then open and check your drive. Your
folders will be
retrieved. I hope this is useful for
you.
NOTE: This will definitely recover all
the folders, but
it wont completely remove all the
virus, better you scan the drive with
an antivirus.

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv