Need help for Solitaire at work

Hey people I just got a new computer and it won't let me start a solitare game.  The game is listed in the games, but I have to do something wrong. I tried to click the icon of solitaire, but it just opens a plate cookie instead of throwing the game. Help, please

Hi Roadking95,

Thank you for visiting Windows Vista Microsoft answers forum.

The game of the Inbox that's loner is not installed properly on the computer.

To correctly install the games from the Inbox on the computer, follow these steps:

1. on the Start Menu, select Control Panel. In Control Panel, select "programs". Then select "Turn Windows features on or off".

2. cut the games by clicking on the box next to games. This will remove the check from the box.  Select 'OK '. Select restart to reboot your system.

3. on the Start Menu, select Control Panel. In Control Panel, select "programs". Then select "Turn Windows features on or off".

4. turn on the games by clicking on the box next to games. This will add the control to the Toolbox.  Select 'OK '. Choose "Restart" to reboot your system.
The games should now run correctly on the Start Menu.

For reference, you can visit the link for the following Article:
http://support.Microsoft.com/kb/972035

Please let us know if it helps.

Thank you and best regards,
David

Tags: Windows

Similar Questions

  • [8i] need help for updating/fixing work table

    I work in an old database:
    Oracle8i Enterprise Edition Release 8.1.7.2.0 - Production
    PL/SQL Release 8.1.7.2.0 - Production
    CORE 8.1.7.0.0-Production
    AMT for HP - UX: 8.1.7.2.0 - Production Version
    NLSRTL Version 3.4.1.0.0 - Production

    I'm trying to fix a work schedule, and I'm not exactly sure how do. I am accustomed to querying data, do not make changes to the data...

    Some examples of data:
    CREATE TABLE     test_cal
    (     clndr_dt     DATE     NOT NULL
    ,     work_day     NUMBER(3)
    ,     clndr_days     NUMBER(6)
    ,     work_days     NUMBER(5)
    );
    
    INSERT INTO     test_cal
    VALUES     (TO_DATE('12/30/2010','mm/dd/yyyy'), 254, 11322, 7885);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('12/31/2010','mm/dd/yyyy'), 255, 11323, 7886);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/01/2011','mm/dd/yyyy'), 0, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/02/2011','mm/dd/yyyy'), 0, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/03/2011','mm/dd/yyyy'), 1, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/04/2011','mm/dd/yyyy'), 2, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/05/2011','mm/dd/yyyy'), 3, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/06/2011','mm/dd/yyyy'), 4, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/07/2011','mm/dd/yyyy'), 5, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/08/2011','mm/dd/yyyy'), 0, NULL, NULL);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/09/2011','mm/dd/yyyy'), 0, 11332, 7895);
    INSERT INTO     test_cal
    VALUES     (TO_DATE('01/10/2011','mm/dd/yyyy'), 6, 11333, 7896);
    Note: 2010-12-31 is the last time that I am 100% sure that the data in the table are good. After that, clndr_days and work_days are absent or at least in the case of work_days, are not correct No.

    It is a question of both parties, since I need to set the clndr_days and the work_days. (You can fix probably both with a single statement, but I broke it into two to start, to simplify it for me).

    I show only 12 days in my sample data, but really, the table stretches in a number of years and pass another 5 years.

    PART 1: determination of clndr_days

    I've implemented this request:
    SELECT     clndr_dt
    ,     work_day
    ,     work_days
    ,     clndr_days
    ,     min_clndr_day + r_num     AS clndr_days_test
    FROM     (
         SELECT     t.*
         ,     MIN(clndr_days)     OVER(ORDER BY clndr_dt)     AS min_clndr_day
         ,     ROW_NUMBER() OVER(ORDER BY clndr_dt)-1     AS r_num
         FROM     test_cal t
         WHERE     clndr_dt     >= TO_DATE('12/31/2010','mm/dd/yyyy')
         )
    ;
    Who gives the right clndr_days (like clndr_days_test), but I don't know how to get that in the table.

    It does not work:
    UPDATE     test_cal
    SET     clndr_days     =     (
                        SELECT     min_clndr_day + r_num
                        FROM     (
                             SELECT     t.*
                             ,     MIN(clndr_days)     OVER(ORDER BY clndr_dt)     AS min_clndr_day
                             ,     ROW_NUMBER() OVER(ORDER BY clndr_dt)-1     AS r_num
                             FROM     test_cal t
                             WHERE     clndr_dt     >= TO_DATE('12/31/2010','mm/dd/yyyy')
                             ) c
                        WHERE     c.clndr_dt     = ???  -- how do I make this equal whatever the clndr_dt is for the record I'm updating?
                        )
    WHERE     clndr_dt     >      TO_DATE('12/31/2010','mm/dd/yyyy')
    and I don't know how to operate...


    PART 2: Fixing work_days

    Then, I can't set up a query for work_days.

    That's what I have so far, but it does not work quite right, and then it must also be as well an UPDATE statement:
    SELECT     clndr_dt
    ,     work_day
    ,     work_days
    ,     clndr_days
    ,     min_work_day + r_num     AS work_days_test --this isn't right, when work_day is 0 work_days_test should be the previous work_day not the minimum work_day
    FROM     (
         SELECT     t.*
         ,     MIN(work_days)     OVER ( ORDER BY clndr_dt)     AS min_work_day
         ,     CASE
                   WHEN     work_day     <> 0
                   THEN     ROW_NUMBER()     OVER ( PARTITION BY     CASE
                                                      WHEN     work_day <> 0
                                                      THEN     1
                                                      ELSE     2
                                                 END
                                         ORDER BY     clndr_dt
                                       )
                   ELSE     0
              END               AS r_num
         FROM     test_cal t
         WHERE     clndr_dt     >= TO_DATE('12/31/2010','mm/dd/yyyy')
         )
    ;
    (When I tried to use LAG, that did not work either, because you can have more than 1 non consecutive working day and so it only works for the first day of non-working to have the correct work_days, and then it is to be wrong again)

    That's what I want my table to look like in the end:
    CLNDR_DT                   WORK_DAY       WORK_DAYS CLNDR_DAYS_TEST
    ------------------- --------------- --------------- ---------------
    12-31-2010 00:00:00         255.000       7,886.000    11,323.000
    01-01-2011 00:00:00            .000       7,886.000    11,324.000
    01-02-2011 00:00:00            .000       7,886.000    11,325.000
    01-03-2011 00:00:00           1.000       7,887.000    11,326.000
    01-04-2011 00:00:00           2.000       7,888.000    11,327.000
    01-05-2011 00:00:00           3.000       7,889.000    11,328.000
    01-06-2011 00:00:00           4.000       7,890.000    11,329.000
    01-07-2011 00:00:00           5.000       7,891.000    11,330.000
    01-08-2011 00:00:00            .000       7,891.000    11,331.000
    01-09-2011 00:00:00            .000       7,891.000    11,332.000
    01-10-2011 00:00:00           6.000       7,892.000    11,333.000
    (Sorry for all the additional decimals)

    Published by: user11033437 on January 11, 2012 13:40

    Hello

    Thanks for posting the CREATE TABLE and instructions INSERT, the desired output that is very clear, and your attempts; It's all very useful. It would also be useful to explain how you get the desired based on the sample results. There's always a chance, a person could get by chance good results for the wrong reasons with the small set of sample data, but allows you to get complete wrong results with your data would cause.
    It seems that clndr_days is the total number of days elapsed since some point of conventional departure (perhaps when the company started), and that work_days is the total number of days of work to a starting point. It seems that work_day is 0 when the day is not a working day, and otherwise, the total number of working days so far in the calendar year. Is this fair?

    You said the data after December 31, 2010 is not reliable. Did you mean that two columns (clndr_days and work_days) are not reliable, but the rest of the data is reliable? In other words, are you sure there is only one line a day even after that 2010 and the work_day column is accurate? If so, you can do this:

    UPDATE       test_cal     m
    SET       (clndr_days, work_days) =
    (
         SELECT     MIN (clndr_days) + COUNT (*) - 1          -- clndr_days
         ,     MIN (work_days)  + COUNT ( CASE
                                               WHEN  work_day > 0
                                    AND   clndr_dt > TO_DATE ('12/31/2010', 'MM/DD/YYYY')
                                    THEN  1
                                END
                                 )               -- work_days
         FROM     test_cal
         WHERE     clndr_dt     BETWEEN     TO_DATE ('12/31/2010', 'MM/DD/YYYY')
                        AND     m.clndr_dt
    )
    WHERE     clndr_dt     > TO_DATE ('12/31/2010', 'MM/DD/YYYY')
    ;
    

    You are right: it is possible to set the two columns at the same time.

    It's a shame that you are using Oracle 8.1. The command MERGE, which was new in Oracle 9.1, is much clearer and more effective. If you could use MERGE, you can essentially use the code you have posted in the middle of a MERGE statement.

    Education of UPDATE above assumes that, for the incorrect days, clndr_days and work_days will be never less than the last exact value. If this is not the case, the solution is a bit more complicated. You can avoid this problem and to make the statement faster too, by simply hard-code the last exact value of clndr_days and work_days in the UPDATE statement, where I used min. (this looks like a situation where the efficientcy is not a big problem, however. "You'll probably never make this exact UPDATED once again, so if it runs in 1 second or 10 minutes maybe not much of importance.)

    Sorry, I don't have an Oracle 8 database to test this. It works in Oracle 9.2, and I do not think that it uses all the features that are not available to the point 8.1.

  • Need help for optical safety circuit.

    I buy these parts and prototype with real components, but since I multisim, I thought it would be nice to create the circuit and maybe work through issues I can practically.

    I need a circuit that takes 120 VCA, generates 5 VDC and 1.5Vdc power of optical transmitter and receiver.  I actually use a data port because he has great range and is pretty cheap.  Rather than send the binary code well I just send a light stead that is broken or not broken through doors and windows in my house.  Then the receiver sees this as an entry and order a relay.

    I tried several voltage regulators that come with multisim, but I get an error of execution of my circuit.  Really I can't the 120 VAC to power levels necessary for the functioning of the optics.

    Otherwise I might want to run on a system 120Vdc with battery backup, so throw a 120Vdc up to 20 v DC switching power supply - but I have not found a SMP in the library which takes 120 as input and as output 20.

    Basic plan: 120VAC source-> transform to 24Vac-> Full bridge rectifier to ~ 20 v DC-> voltage capacitor filter on the input of two voltage regulators (1 to 5 VDC, 1 to 1.5Vdc) - then circuit since the two power supply of the transmitter and the receiver.

    I just need help for 5V and 1.5V, from there, I know that the real world circuit will work component tests already carried out.  Thanks for reading.

    I didn't Multism so I can't advise you on the compatible models. I ran the model on semiconductors with slight modifications of format on my SPICE simulator based on Berkeley Spice 3f5. I had to change the format of model resistance semiconductors appeal but has not changed any values.

    The output of your power supply circuit 3 (with 5 V, not the 1.5 V regulator regulator) was 4.99995 V.

    There are a few messages about changing templates published for compatibility Multisim woth. You can search those to see if there are any suggestions on what you'll need to fix in the model.

    Lynn

  • I need help for the upgrade of my current system.

    I need help for the upgrade of my current system.

    I have SBS 2008 with (Exch 2007, SQL 2005, Sharepoint, backupexec 2010 for sbs) licenses.

    I want to make the larger environment using the following:

    (1) apply Virtualization

    (2) apply to the failover process (clustering)

    "(3) the environment must support adding server terminal server, ERP server, exchange server, domain controller, backup manager.

    Storage 4) that supports Raid (1 and 5)

    UTM excellent 6) that supports (SSL VPN, VPN Global)

    suitable backup solution 7)

    (8) good antivirus for clients

    my questions:

    (1) can you provide me with a good design for this environment

    (2) should I choose what operating system:

    Microsoft datacenter or company

    I know datacenter provide us the unlimited VM but needs per processor license

    so if I have two Grouped servers I want to buy 4 licenses

    and just 4 VMs per company license... to say that we have two servers and maintain 8 vms so wat happened if 1 goes down... How can I migrate the 4 virtual machines on the server failed to another server group... ? should I buy enterprise license?

    (3) if I get the SAN storage for data... How can I save this storage... should I get another SAN?

    (4) how can I upgrade SBS stad single server (windows standrad) without losing the licenses as Exch 2007, SQL 2005, sharepoint.is it a must to buy an edition full std server or there is a way to upgrade (license wise, I mean)?

    (5) what about win2k8 license for VM:

    lets say we have physical that has windows license so that enough to have windows for VM or should I buy windows for VM licenses?

    (6) can I use backExec license for SBS with windows 2008 standard

    (7) who better to virtualization AMD or INTEL

    (8) hyper V or VMware?

    (9) what of Microsoft data protection Manager... is this good?

    (10) what virtual machine manager? What are the benefites keys

    Thanks in advance

    Hello AnasAI,

    You can find the Server forums on TechNet support, please create a new post at the following link:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • I need help for activation of the real administrator account.

    I have a problem with Adobe reader 9 standard, Adobe customer service asked the unhide real administrator account before you can continue to help me.

    I need help for that.

    http://www.Vistax64.com/tutorials/67567-administrator-account.html

    http://www.howtogeek.com/HOWTO/Windows-Vista/enable-the-hidden-administrator-account-on-Windows-Vista/

    Read the above info.

    See you soon. Mick Murphy - Microsoft partner

  • I need help for my reader to USB drive on my windows 10 ACER?

    I need help for my reader to USB stick on my chrome windows 10 plug ins acer. Can you help me?

    What Adobe application that you use?

    This is the Adobe Media Encoder forum, and you did not mention anything on this subject. If you can let us know what Adobe application, you need help, we can help you make the right forum.

    Thank you

    Regalo

  • Hello, I need help for cancel the payment on my adobe account.

    Hello, I need help for cancel the payment on my adobe account. I'm from Peru, Im paying a monthly fee as a student. Help, please...

    Cancel your membership creative cloud

  • Hello, need help for Adobe Reader DC playing animation files that are specified in the pdf output by script Latex Beamer. My Adobe Reader DC refuse to open any format that I gave him.  Thank you very much

    Hello, need help for Adobe Reader DC playing animation files that are specified in the pdf output by script Latex Beamer. My Adobe Reader DC refuse to open any format that I gave him.  Thank you very much

    Hey ihorl18351266,

    Please note that you can open PDF files using only the CD player. Any other format will not be supported by the software.

    Kind regards

    Ana Maria

  • I need help for my printer/scanner/copier to work with my computer

    I have a problem for my computer to connect with my printer/scanner/copier.  I need help!

    Hi GraceEverts,

    ·         What exactly happens when you try to connect printer/scanner/copier to work with my computer?

    ·         You receive an error message?

    ·         What is the brand and model of the printer/scanner/copier?

    I suggest to check the following items and check if it helps.

    To add a printer attached to your computer

    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/sag_setup_indirect_printer.mspx?mfr=true

     

    To install new or updated printer drivers to update

    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/print_drivers_install_updatew.mspx?mfr=true

     

    Resources for the resolution of the printer in Windows XP problems

    http://support.Microsoft.com/kb/308028

     

    Printer in Windows problems

    http://Windows.Microsoft.com/en-us/Windows/help/printer-problems-in-Windows

     

    To install a scanner or digital camera

    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/scanner_camera_add.mspx?mfr=true

    Hope this information helps.

  • Re: Need help for the restoration of the system

    Hi, I need help!

    I recently bought a Toshiba Satellite. I had some problems when trying to install some programs, some seem to fail. I wanted to clean the computer with system restore disc, only to find a record of 32-bit to a 64-bit computer.
    There is a repair of the setting system installed on the computer but it does not work, when I put it on disk, files, it cannot be opened.

    I can restore the system somehow repair; It must have been damaged by a virus. It should come with a big warning that the disk is not compatible!

    I have burned one day drive the first if I d just so you know! Any advice?

    Hello

    At first, I must say that you should tell us what model of laptop you have exactly.

    I put t know what cell phone you have and what you have with her, but in fact, it's that many laptops come with preinstalled OS 64-bit and 32-bit version on DVD.

    In this case, you must create own 64 bit preinstalled use Toshiba recovery media creator recovery DVDs. Alternatively, you can install 64-bit without DVD disk with HARD drive recovery option > http://aps2.toshiba-tro.de/kb0/HTD9102IR0000R01.htm
    Of course, this will not work if you didn't change the factory settings.
    Try if it will work for you.

    At the end I would say that what I wrote is detailed described in the document s user manuals but I presume that you didn t read it, right?

  • Need help for reading in parallel on the same interface and writing XNET

    Hello. I need help to configure CAN interface to write and read from the same interface.

    I use NI PXI-8513/2. I use CAN1 as interface.

    My had TO send status messages CAN every 100ms. I have to read in order to return akntoowlege to keep DUT CAN interface happy and not make mistakes.

    So, I want to open Strim Session and readall frames in the loop. At the same time, I need to be able to write in a frame HAD at the time...

    I only need to read one picture at a time too, but since I know the ID, I can pull it from the stream.

    What I'm confusing all is how to put in place the same CAN1 interface to be able to write and read in parallel.

    I think I would get errors that interface is already in use.

    Since I'm new to CAN, I was read and write only when necessary. But, sometimes I was getting errors on my messages. Sometimes I get message, sometimes miss me. But, when I run CAN test criminal as sniffer he sends and written every time. I was told it's because it recognizes all messages.

    I opened to suggestions of how best to implement the interface.

    I guess I can use CAN2 and separator to work around this problem, but I would use an interface if possible.

    Thank you

    Hi Rus,

    The XNET hadrware takes care of most of the low level of detials for you. The reading and writing of the circuits are both connected to the bus at any time. When you write to the hardware it will try to put a frame on the bus at the first opportunity he can. If the frame loses arbitration material re - will attempt to send the frame up is successful. Reception equipment monitor activity on the bus, regardless of what it conveys. The material received will usually throw a framework that was sent by communication equipment, but there is an Echo property pass to circumvent this behavior too.

    Take a look at the example of the expedition: MAY-> NI - XNET-> Sessions-> multiple Sessions Intro-> CAN even exit entry framework Port unique Point.vi. Keep in mind that this example you will need to use a second CAN interface to recognize frames, it transmits. I would recoment against the example CAN output Frame Single Point which would mimic your ECU if you choose a type of cyclic frame running this example.

  • [SOLVED] I need help for Shared Documents and Documents on my computer XP Home

    I need help with my shared Documents and other folders on my computer. I have an administrator account. My son has a limited access account.

    I clicked on the option 'make my private files and folders '.  His file was renamed to Documents now my shared Documents. It's just my account.

    I tried to undo what I did. I tried everything (I mean everything) has proposed to do online.

    First of all, I logged in Safemode administrator account. I went to the Documents folder, and I've added the Administrators group and click full control.

    Then I restored system a few weeks before. Then, I went to http://computers.douglasthrift.net/winxpfaq/#faq3_shared_documents and did everything.

    None of them worked. I did so much, that I don't remember.

    Then, I found that the registry key for the Shared Documents lacked in the MUi cache. @shell32.dll,-21785. I entered, but after I rebooted a few times, he disappeared. I have to hurt... In addition to this. Now I face a different problem. I don't know it is normal but when I login my account and click on

    My computer, I see Documents of my name and the name of my son in addition to Documents (Shared Documents).

    When I save a new file in the My Documents folder, it is automatically created in the folder of Documents of my name, too. I can't delete them because they are system folders. I crossed my registry keys in the MUI cache and discovered that 4 of them did not exist in other accounts.

    @shell32.dll,-21792; 21793; 21794; 21795 (%, etc. of music of % documents). I don't know if I can delete them or not.

    I'm not an expert in computers. I'm sorry that it is very long.  I hope someone can help me. Thank you.

    Hello

    I suggest you follow the troubleshooting steps and check if this solves the problem on your computer.

    Method:

    Ra SFC scan to search for the missing or corrupt files that can cause this problem.

    Of file system (CFS) when checking that all the Windows XP system files are intact and not altered, changed or damaged.

    a. Click Start, click programs, accessories, command prompt principally made.

    b. in the type in the following command prompt window and press ENTER:

    sfc/scannow

    If you are prompted to insert the Windows XP disc, load the disc of Windows XP on the CD drive on your computer.

    Once the scan finished restart your computer and test to see if the problem you are experiencing is resolved or not.

    Reference: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/system_file_checker.mspx?mfr=true

    I hope this information helps. Please get back to us if you have any other questions on this subject.

  • I need help for Windows Vista black screen during the connection, even with the login screen removed

    Hey, I have a problem in Windows Vista:

    I've been updating / updated my graphics card and it is the graphics card, I'm updating, after a while, a black screen will appear (PITCH BLACK) and I there is no cursor and I tried Ctrl + Alt + Delete, but nothing seems to work, after I turned off my laptop, starts to load then it was the new dark night! (NO LOGIN SCREEN). Then I turned off my laptop then I constantly pressed f8, then I pressed "Computer repair" then it loads then my screen showed "Another user", then I clicked it then I had to type my ID but I have no details of connection, I pressed on enter with no connection details, but this still does not work because I had to type in my login information. I tried everything, then I went to safe mode and fact a password and changed my admin account type, then I rebooted my laptop, then I have constantly pressed f8 and pressed "Computer repair" then it loads and then my screen showed 'Another user' again... .

    PLEASE I NEED HELP! I WANT TO PLAY MY GAMES!

    Hello

    Follow the steps below:

     

    Method 1: Do the Startup Repair to fix the problem.

    See the following article for more information on the Startup Repair:

    Startup Repair: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/startup-repair-frequently-asked-questions

     

    Method 2: Use the Bootrec.exe tool in the Windows recovery environment to troubleshoot and repair startup issues in Windows

    For instructions, see the following article:

    How to use the Bootrec.exe tool in the Windows recovery environment to troubleshoot and repair startup issues in Windows

    http://support.Microsoft.com/kb/927392

    Let us know if that helps.

  • I need help for query AVG

    I need help with a simple query in an ORACLE database. I tried a lot of things that I found on the internet, but none of them worked for me.

    The following query retrieves four lines:

    SELECT sampled_date AS VALUE1, VALUE2 AS result, 0 as value3

    Of asw_lab

    WHERE template_result = 'A' AND analysis = 'B' AND ROWNUM < 5

    ORDER BY sampled_date DESC;

    I would like to calculate a moving average of the last four values with the date of the sample of the last line.

    For example, I have this result for the query above:

    Value1 value2 value3

    01/04/14-16:00 1 0

    01/04/14 15:00 2 0

    01/04/14 14:00 3 0

    01/04/14 13:00 4 0

    I want to extract the below my average/query calculation result:

    Value1 value2 value3

    01/04/14-16:00 2.5 0

    Can you help me create a request to that effect?

    Thank you

    Maybe it's

    Select max (VALUE1) VALUE1, VALUE2 avg (VALUE2), avg (VALUE3) value3

    Of

    (

    SELECT sampled_date AS VALUE1, VALUE2 AS result, 0 as value3

    Of asw_lab

    WHERE template_result = 'A' AND analysis = 'B' AND ROWNUM<>

    )

  • NEED HELP FOR CANCEL THE SUBSCRIPTION AS SOON AS POSSIBLE!

    Hi I need help, cancel a subscription to adobe creative cloud, the thing is that I read the terms and how to cancel and he tells me that I am to be charged an additional amount of the subscription, as it exceeded use of 30 days or something, but I am not the user of this subscription as my brother used it for his work for the College , and I was assured by him that there can be no agreement to pay extra fees at the cancellation, surely you can see many hoe of a stress for me because I can afford is more to keep being charged for a subscription that is undesirable, I can't communicate with my brother either as it wandered off and is no longer, we are in contact It's very frustrating because I read the old process even on how to cancel it over a hundred odd times now, and I am amazed how easy ADOBE to subscribe but de-s' subscribe, it seems a bit of a scam too me just to get more money, I do not wish to be charged a residual amount, or whatever it is, all I want is to stop money coming out of my account free of charge! If a member of staff could please support me on that I would be very grateful that I have a lot more important accounts payable and simply cannot continue in this never-ending cycle.

    Thank you.

    Sam, here's what you can try: phone support | Orders, returns of trade

Maybe you are looking for