Is there a program for deleting a virus

On facebook, there was a posting that went out to my friends that I opened but did not send. Do I now have a virus?

It is not possible to say based on this information if you have a virus or not.
If you do not already have an anti-virus program you should get one now, you should always have an anti-virus program running to protect your computer. There are free anti-virus products available such as:
* [http://www.microsoft.com/security_essentials/default.aspx Microsoft Security Essentials]
* [http://www.comodo.com/home/internet-security/antivirus.php Comodo Antivirus]
* [http://www.avast.com/free-antivirus-download Avast Antivirus]
In addition to always having an anti-virus program running, I also recommend running occasional scans with at least one other anti-malware scanners. Some scanners you can try are:
* [http://www.malwarebytes.org/mbam.php Malwarebytes]
* [http://www.superantispyware.com/ SUPERAntiSpyware]
* [http://www.lavasoft.com/products/ad_aware_free.php Ad-Aware]
* [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx Windows Defender] (not required if you use Microsoft Security Essentials)
* [http://www.safer-networking.org/en/home/index.html Spybot S&D]

Similar Messages

  • Any program for Deletion the normal Parked documents in Standard SAP

    Hi All,
    is there any program for delete the normal parked documents in Standard SAP ??  we have nearly 2000 documnets so we can't do manually one by one at FBV2/FBV6.
    please help.
    Raj

    Hi,
    You can create a CATT/LSMW project, by recording the relevant transactions and then make a mass change by executing it.
    Regards,
    Eli

  • Is there a program for movies and books comparable to the amazon prime?, Is there a program for movies and books comparable to the amazon prime?

    Is there a program for I pad comparable to the amazon prime?

    You're question doesn't make a lot of sense. Amazon Prime is a service provided by Amazon. It's primary feature is free or reduced shipping. If you order things from Amazon on your iPad, you can use your Amazon Prime membership for the free or reduced shipping. It also offers some free streaming video, which is available on the iPad through an app provided by Amazon.

  • Is there a fix for the new virus that hit apple computers called "FLASHBACK"?

    Is there a fix for the new virus that hit apple computers called "FLASHBACK"?

    Current recommendations is turn Java off.  Generally you don't need it.  Do not confuse it with Javascript which you do need for your browsers.   
    You can disable in the browser you are using and/or more globally using the Java Preferences too (in Utilities), General tab (uncheck the checkboxes).
    More new tricks from Flashback
    How to check for and disable Java in OS X
    Protect Yourself from the Mac OS X Java Vulnerability
    If it turns out you need it for some specific application or web site that you trust then turn it on only when running that application or visiting that site. If your work requires Java be enabled then at least disable it in your browsers.
    If you do need to run Java, be sure that you pick up the Java Software Update 7 posted recently that takes 10.6 and 10.7 up to Java SE 6 revision 31.
    Flashback is a moving target with lots of strains (various versions, permutations) and changing all the time.  So who knows what's next?

  • Is there a program for measuring blue prints comparable to ISQFT

    Is there a program for measuring blue prints comparable to ISQFT

    Supported Operating System(s):
    Windows XP, Windows Vista, Windows 7, Windows 2000, Web browser (OS agnostic), Unix, Solaris, Mac OS, Linux, IBM OS/400, HP-UX, AIX
    Seems like it works with the old Mac OS. But you might have a look at the Linux/Unix versions. OSX is after all UNIX.
    Peter

  • Program for deletion of table content.

    Hi,
    I have a requirement to delete the contents of table RSBERRORLOG , i cannot do it directly from table content delete option due to lack of authorisation. Is there any program that can be used for deletion of tabel contents ?
    Thanks .

    Hi,
    you can delete the RSBERRORLOG table by using the RSBM_ERRORLOG_DELETE report.
    Additional info:
    You can use the report RSB_ANALYZE_ERRORLOG to analyze which DTPs have created how many single record error messages, and to how many requests these messages are distributed. You can use the report RSBM_ERRORLOG_DELETE for single DTPs to delete the messages for requests up to a specified date.
    If numerous single record errors are frequently created for specific DTPs, you should analyze the relevant requests in more detail and, if required, eliminate the error cause (for example, adjusting the transformation routines).
    Regards
    Andreas

  • Is there any Program for Perfornance Calculation?

    Hi,
    Is there any standard program for calculating ABAP program performance? Please help me in this.
    Thanks in Advance.
    Siva Sankar.

    Hi
    These are the main performance points where u have to look
    there is no program for this
    reward if usefull
    Performance Tuning is nothing but optimizing the performance of your program through various techniques thus increasing the productivity of the user.
    Purpose
    In this world of SAP programming, ABAP is the universal language . Often due to the pressure of schedules and deliveries, the main focus of making a efficient program takes a back seat. An efficient program is one which delivers the required output to the user in a finite time as per the complexity of the program, rather than hearing the comment “I put the program to run , have my lunch and come back to check the results”
    Use
    Leaving aside the hyperbole, a performance optimized ABAP Program has the following uses:
    Saves the time of the end user.
    Increases the productivity of the user.
    In turn keeps the user and hence the management happy.
    Challenges
    Performance of a program is also often limited due to hardware restrictions, which is out of the scope of this tutorial.
    Ways of Performance Tuning
    Selection Criteria
    Select Statements
    Select Queries
    SQL Interface
    Aggregate Functions
    For all Entries
    Select Over more than one Internal table
    Internal tables
    4. Typing
    5. Control Statements (If, Case, While..)
    6. Field Conversion
    7. ABAP Objects
    8. Tools for Performance Analysis
    Selection Criteria
    Restrict the data to the selection criteria itself, rather than filtering it out using the ABAP code using CHECK statement. 
    Select with selection list.
    Note: It is suggestible to make at least on field mandatory in Selection-Screen as mandatory fields restrict the data selection and hence increasing the performance.
    SELECT * FROM SBOOK INTO SBOOK_WA.
    CHECK: SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    ENDSELECT.
    The above code can be much more optimized by the code written below which avoids CHECK, selects with selection list
    SELECT CARRID CONNID FLDATE BOOKID FROM SBOOK INTO TABLE T_SBOOK
    WHERE SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    Select Statements Select Queries
    Avoid nested selects
    Select all the records in a single shot using into table clause of select statement rather than to use Append statements.
    When a base table has multiple indices, the where clause should be in the order of the index, either a primary or a secondary index.
    For testing existence , use Select.. Up to 1 rows statement instead of a Select-Endselect-loop with an Exit.
    Use Select Single if all primary key fields are supplied in the Where condition .
    Point # 1
    SELECT * FROM EKKO INTO EKKO_WA.
      SELECT * FROM EKAN INTO EKAN_WA
          WHERE EBELN = EKKO_WA-EBELN.
      ENDSELECT.
    ENDSELECT.
    The above code can be much more optimized by the code written below.
    SELECT PF1 PF2 FF3 FF4 INTO TABLE ITAB
        FROM EKKO AS P INNER JOIN EKAN AS F
          ON PEBELN = FEBELN.
    Note: A simple SELECT loop is a single database access whose result is passed to the ABAP program line by line. Nested SELECT loops mean that the number of accesses in the inner loop is multiplied by the number of accesses in the outer loop. One should therefore use nested SELECT loops  only if the selection in the outer loop contains very few lines or the outer loop is a SELECT SINGLE statement.
    Point # 2
    SELECT * FROM SBOOK INTO SBOOK_WA.
    CHECK: SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    ENDSELECT.
    The above code can be much more optimized by the code written below which avoids CHECK, selects with selection list and puts the data in one shot using into table
    SELECT CARRID CONNID FLDATE BOOKID FROM SBOOK INTO TABLE T_SBOOK
    WHERE SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    Point # 3
    To choose an index, the optimizer checks the field names specified in the where clause and then uses an index that has the same order of the fields . In certain scenarios, it is advisable to check whether a new index can speed up the performance of a program. This will come handy in programs that access data from the finance tables.
    Point # 4
    SELECT * FROM SBOOK INTO SBOOK_WA
    UP TO 1 ROWS
    WHERE CARRID = 'LH'.
    ENDSELECT.
    The above code is more optimized as compared to the code mentioned below for testing existence of a record.
    SELECT * FROM SBOOK INTO SBOOK_WA
    WHERE CARRID = 'LH'.
    EXIT.
    ENDSELECT.
    Point # 5
    If all primary key fields are supplied in the Where condition you can even use Select Single.  Select Single requires one communication with the database system, whereas Select-Endselect needs two.

  • Is there shortkeys program for mac

    the shortkeys for windows is great
    is there a version for mac?

    Take a look at this site, http://www.danrodney.com/mac/, it lists all the built in key combos. It also has a recommended 3rd party program.
    Message was edited by: macbig

  • Function module/ program for deleting Vendor purchasing org. in BBPMAININT?

    Hi,
    Is there any function module or program available by which i can delete purchasing org. maintained  for SRM vendors in BBPMAININT.
    Regards
    Bharat M

    Hi
    Please use the Standard SRM function module
    *BBPPORG_DELETE*_
    to delete the Purchasing organizations ->
    Sample code - >
        CALL FUNCTION 'BBP_PORG_DELETE' IN UPDATE TASK
          TABLES
            IT_FRG0060 = LT_FRG0060
            IT_FRG0061 = LT_FRG0061.
        COMMIT WORK.
    Hope this will help. Do let me know.
    Regards
    - Atul

  • Standard programs for deletion of transaction data over BAPIs

    Hello Experts,
    What are the pros and cons of using SAP standard programs like /sapapo/rlcdelete etc. over the SAP provided BAPIs (e.g. BAPI_PIRSRVAPS_DELMULTI in case of PIRs). What would be called as best approach when run in regular background jobs for a large number of SKUs.

    Hi Ankit,
    As per me it should be performed by the using report if it is there like /SAPAPO/RLCDELETE as it is standard program and tested program provided by SAP. BAPI may create preformance issue.
    Regards,
    R.Brahmankar

  • Hello,I`m new to Mac so I wonder what I need to make DVD from my videocam. I have the Elgato video capture and import any videorecording to my Mac in mpeg4. Is there a program for Mac to convert these videos to MPEG DVD? Fred.

    I would really like to find out about this topic,hope someone has an answer for me. Fred

    TOAST!
    http://www.roxio.com/enu/products/toast/default.html?gclid=CIDu-MaizLACFQFeTAoda nEfWA
    Ciao.

  • Is there a program for Mac computers that plays .mus files?

    What the title said.

    This is quite tricky because a number of programs use (or used) mus as a file extension, but the different formats were mutually incompatible. This means that you could try a program which apparently creates mus files, but may find that it can't open mus files created by a different app.  Most frustrating.
    Melody Assistant is sometimes listed as being able to open mus files.  Well, I just tried downloading some mus files and opening them with Melody Assistant, but that failed due to incompatible format.  Maybe Melody Assistant's big sister Harmony Assistant will be able to open them, but I don't have HA installed. 
    No joy I'm afraid
    Bob
    Message was edited by: Bob Lang1

  • Are there any programs for MBP (Universal Binaries) that allow you to...

    Rip or at least play DVDs from any region?
    Thanks for the help!

    Try these:
    http://www.versiontracker.com/dyn/moreinfo/macosx/22715
    and
    http://www.dvd2one.com/?loc=download
    William
    PS the non-binary version of DVD2OneX works on mine ...

  • Name for deletion of program?

    Hi,
    Can any one tell me the name of the standard table which is used to delete the program.

    Hi Praveen,
    In se38 give RSP* and click F4 in that search criteria give delete word you will get 6 programs for deleting various programs.
    There might lot of programs for deleting that all depends on the objects,
    sample programs
    rspc_log_delete
    rsp00029
    rsp00036
    rsp00041
    rsp01041
    RSBTCDEL - Delete batch jobs
    and there can be many more programs.
    Hope my answers helps you.
    Cheers!!

  • Mass For Deletion of Info Record

    Dear Experts
    Is there any Code  for Deletion of the Purchasing  Info record By Mass T-code.
    Rgds
    Pankaj Agarwal

    Hi Pankaj,
    find below the steps,
    1. Flag Info-Records for deletion
    2. Run the archiving program - RM06IW30 (Menu path -> Logistics - Materials Management u2013Purchasing - Master Data - Info Record - Follow on Functions - Archive)
    Create Archive File: Info Record:
    a) Select Action: Archive and enter a new Variant, for example: Z_EINA_ARCH_ 01, press 'Maintain'
    b) On selection screen enter the data range (Vendor, Material, etc.) you want to archive.
    c) Deselect the 'Test' flag if you don't want to test first.
    d) Press green back-arrow and enter the description of this new variantt on the screen which follows.
    e) Save the variantt which brings you again to the selection screen. Press green back arrow again.
    f) To start archiving process (batch-job), press the 'Start Date' button and select the time when you want to start this process. Select 'Immediate' for instant processing and press the 'Save' button on the bottom of the Start Time' window.
    g) Select the 'Spool Parameter' button and save entries. Eventually enter a valid printer to have the result outputted.
    h) You are ready now to start the process. Press the 'Start' button and monitor the success with the 'Job Overview' button You can also go the 'fast path' by using transaction SE38, program RM06IW30 to archive info records. For large data archiving, use the background jobs and run those during off-peak times. If you run the program online, you will see a confirmation on the status bar telling 'New Archive file created:.... '
    Delete Archived Records: Info Record
    a) Follow the menu path: Tools - Administration - Administration - Archiving
    b) Select the Object Name MM_EINA for info records
    c) Select the menu button 'Delete'
    d) Select the menu button: 'Archive Selection'
    e) Click the archive created in previous step
    f) Select Start Date for process and Spool Parameters for output
    g) Submit selection.
    h) Check status by pressing the Job Overview button 
    Hope the above answers your query.
    If helpful award points
    Regards,
    Vivek

Maybe you are looking for