See the top rated post in this thread. Click here

Page 3 of 3 FirstFirst 123
Results 21 to 22 of 22

Thread: acad.lsp file mysteriously showing up in folders

  1. #21
    Active Member
    Join Date
    2006-05
    Location
    Pind
    Posts
    80
    Login to Give a bone
    0

    Default Re: acad.lsp file mysteriously showing up in folders

    OK regarding the same topic which is not concluded i have a file with the name acadappp.lsp with three P any how now it is clear that it is a virus than let us resolve this problem and how can we avoid this and rectify this.
    thanks

  2. #22
    Active Member
    Join Date
    2006-05
    Location
    Pind
    Posts
    80
    Login to Give a bone
    0

    Default Re: acad.lsp file mysteriously showing up in folders

    I am using this function to delete the files but some time it is deleted and some it is not also can i know from where this files are generated.

    thanks

    (defun cleanvirus( / lspfiles lspfile x)
    (setq lspfiles '("acad.mnl" "acadappp.lsp" "acad.lsp" ))
    (foreach lspfile lspfiles
    (while (setq x (findfile lspfile))
    (progn
    (vl-file-delete x)
    (princ "\nDeleted file ")
    (princ x)
    );progn
    );while
    );foreach
    )
    (cleanvirus)

    Kulfi

Page 3 of 3 FirstFirst 123

Similar Threads

  1. Replies: 0
    Last Post: 2007-12-20, 01:54 PM
  2. Local file mysteriously changing to Central File?
    By nnguyen in forum Revit - Worksharing/Worksets/Revit Server
    Replies: 13
    Last Post: 2006-11-04, 09:22 AM
  3. Folders not showing up on the left hand side of Open dialog box
    By Daniel Amon in forum AutoCAD General
    Replies: 8
    Last Post: 2006-07-17, 12:19 PM
  4. acad.lsp files are created in working folders
    By kgray.65984 in forum AutoCAD General
    Replies: 12
    Last Post: 2006-03-07, 07:31 PM
  5. Keys/Folders that have to be writeable for ACAD-M 2006
    By jonathan.landeros in forum AutoCAD Mechanical - General
    Replies: 0
    Last Post: 2005-09-27, 10:04 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •