Sunday, May 18, 2008

Trick Exact Pacify Important File From VIRUS

Latterly I am more and more hearing and meeting case of attack of virus which is in its spreading is joined to vanish and or destroy file by extension is certain, what is most attack addressed at Document file (*.doc, *.xls, *.ppt, *.txt and other) especially at file which of extension *.doc. This matter make many people very fear till they diligent of self back up periodic file in the manual, till install software antivirus and also software of other dissimilar protection is which sometime less be effective and very disturbing own self. Hence from that's I write article of this continuation is which hopefully can overcome the problem.

Nucleus Core from this Article in fact very simple that is rename of all extension of important file at one blow in a Drive once is click. Here I use aid of script VBS for its applying.

* info: Generally, first I use this script for rename file of video from VCD which extension *.DAT become *.MPG in order to can be come up (Thumbnail) of Appearance Explorer.

Virus groan some file type in relying on file extension, and because of most virus groan file *.doc, hence in example of hereunder I will apply it at this file, that is fox extension *.doc become *.MSWORD. (you can also may determine result rename by self besides *.MSWORD )
  • Following in this step:
1. Open RUN write notepad.exe so press enter.

2. After application of notepad emerge to type or copy > paste under script :

Dim Drive, Root, fname
Drive = "D" 'drive to be processed'
Set Root = CreateObject("Scripting.FileSystemObject")._
GetDrive(Drive).RootFolder
Set fname = New RegExp
With fname
.Pattern = "\.doc$" 'extension file to rename’
.IgnoreCase = True
.Global = False
.Multiline = False
End With
Call Rename(Root, fname)
Sub Rename(Folder, RegExp)
Dim SubFolder, File
For Each File in Folder.Files
If RegExp.Test(File.Name) Then
File.Name = RegExp.Replace(File.Name, ".MSWord") 'result rename’
End If
Next
For Each SubFolder In Folder.SubFolders
Call Rename(SubFolder, RegExp)
Next
End Sub
  • Its way is:

1. Enter Control Panel > Folder Options > Files Type

2. Look for and click knob "New" last at column "File Extension: "type "msword" (if you conduct modification of at script and alter string "MSWORD" with other dissimilar, accommodate).

3. Knob click "<<>

4. Last click “OK”

5. Finish…

6. (Optional) change picture default icon in order to be not gullible with virus file which often icon look like File Word.

If you wish to alter also important extension file of other you enabled can be attacked by virus of like *.xls, *.ppt, *.txt and others, hence conduct modification of at script and don't forget for the association it again with appearance default program./ process like way of above.

  • Side Effects

a. This Script VBS will only just rename extension file non file name, become for example if you have so called file.doc hence will be altered to become file *.MSWORD. Become don't doubt, its original name nope will change.

b. If file you to change its extension have the character of shared document file or which you make to be propagated to by broaden in local network area and also to other dissimilar computer hence will a few disturbing one who will open it, cause in their computer is the extension of association not yet with appearance program. Become if we like to can open this file better other dissimilar computer of rename return its extension to *.doc or can be opened by: Click - right > Properties > Change…last searched "Microsoft Office Word" (Application Microsoft Word) in column "programs" last click Ok > Apply > Ok - new open.

c. This Applying Script VBS at Drive C:\"maybe" - (maybe very infinitesimal) can bother performance of application figuring in file *.doc of at its process. Hence from that I suggest to remove your important file from drive C:\ to other drive so that drive C:\ needn't in process use this Script VBS.

  • Message to all VMI (Virus Maker Indonesia):
If we like to make virus don't be too harm others, just need, if can develop building.

Reference :
www.ilmukomputer.com
Trik Jitu Amankan File-File Penting Dari VIRUS

No comments: