Stuck with updating AACS key / WinDVD 8

I have a W700 with BluRay drive. Occasionally I used it to watch BluRay movies using WinDVD 8. But when I tried this recently, WinDVD told me, that the AACS key has expired / been deacvtived and asked me, if I want to renew it. I followed all the instructions from Corel (turning off UAC, making IE the standard browser), but it is giving me an error "Server is unable to process your renewal request".
I did run ThinkVantage System Update, which updated the WinDVD version from B09.572C14.63616.00000T0000 to B09.581C14.64008.00000T0000, but still cannot renew the AACS key.
I found another update for WinDVD on Lenovo's drivers and software page: windvd88171u-a.exe. According to the description (http://support.lenovo.com/de_DE/downloads/detail.p​age?DocID=DS003904) it should be applicable for LOGID 64008, but the update fails saying it doesn't seem applicable.
So I'm stuck with renewing the AACS key / updating WinDVD 8. Any help is very much appreciated.
Thanks in advance.
Andy
Solved!
Go to Solution.

Hi, Andy
 a
I did some research and found a forum thread from Corel's site. I wasn't able to find too much, but I did find something simple that might help. A user claims to have had the same issue as you, and it would only update the AACS key if he was already logged in on the Corel site. I'm not sure if this will solve your issue, but it could be something to try.
Good luck,
Adam
Did someone help you today? Press the star on the left to thank them with a Kudo!
If you find a post helpful and it answers your question, please mark it as an "Accepted Solution!" This will help the rest of the community with similar issues identify the verified solution and benefit from it.

Similar Messages

  • Mail stuck with "updating cache directory"

    I've been getting bit by Mail getting stuck with "updating cache directory" on just one of my three IMAP accounts (separate providers). Gmail and MobileMe are fine, it is just with FuseMail which uses Microsoft Exchange servers. I have finally found something that may point to the problem:
    http://www.theexchangeguide.info/exchange-server-clients/2011/28/apples-mail-app -with-exchange-2007-via-imap-or-owa.html
    Folks,
    Azaleos has now spent 6 months working with Microsoft on this issue.
    The diagnosis appears to be that significant changes were made to the IMAP protocol implementation in Exchange 2007 that significantly deteriorates the performance of MAC Mail.App clients, especially client with large mailboxes, against Exchange 2007 vs. Exchange 2003.
    Although the Microsoft support team’s response has been absolutely exemplary, we have been unable to make the Exchange development team understand the significance of this takeback from Exchange 2003, nor been able to have them implement fixes in the Exchange 2007 stack to address the issue.
    More significantly, we have also received absolutely no response from Apple regarding the deficiencies of the MAC Mail.App client, nor even any acknowledgement of the problem. In fact, from the complete lack of response we’ve received, Apple has an absolutely abysmal Enterprise support capability and far worse than anything we’ve experienced from Microsoft.
    At this time, Azaleos does not recommend that customers who have significant MAC Mail.App implementations with sizeable mailboxes (in excess of 500MB mailboxes) upgrade from Exchange 2003 to Exchange 2007.
    We are recommending to customers that they do upgrade to Exchange 2007. But, that any users of MAC Mail.App move immediately to Entourage or to an e-mail client that implements a solution that is less than 10 years out of date.
    Thanks,
    Keith McCall
    CTO, Azaleos Corporation
    I'm posting this both as a reference for others and as a question to see if there is a way to resolve this as a customer, other than dumping FuseMail for a non-Microsoft house?
    Thanks!
    Chip

    I finally had to get FuseMail to "reset the IMAP flags" on their end and everything seemed to resolve itself.

  • Stuck with - Update- help needed

    Hello all and thank you for reading!
    I have the following problem with update statment. Tables and data in them are as follows:
    Table 1: XML_TRANSFER
    create table XML_TRANSFER as
    select 111111 TAX_NR, 1 TYPE, 3000 PRIJ, 3000 POBOT from dual union all
    select 222222 TAX_NR, 1 TYPE, 720.7 PRIJ, 350.70 POBOT from dual union all
    select 333333 TAX_NR, 1 TYPE, 2600 PRIJ, 2100 POBOT from dual;Table 2: FIR_SET
    create table FIR_SET as
    select 2011 LET, 7 KROG, 111111 TAX_NR, 10 STEV_FAK, 2000 VALUE_ODPR, 0 VALUE_POBOT from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 11 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 12 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 13 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 1 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 2 STEV_FAK, 20.7 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 3 STEV_FAK, 100 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 4 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 333333 TAX_NR, 81 STEV_FAK, 2600 VALUE_ODPR, 0 VALUE_POBOT  from dual;Ok, tables and data are set now for the "update" logic.
    Lets look at the data in table XML_TRANSFER.
    First row (with TAX_NR = 111111):
    UPDATE statment in this case should work like: the VALUE_ODPR should be same as VALUE_POBOT in table FIR_SET.
    This part i managed to do with this SQL:
    PROCEDURE     xml_update is
    BEGIN
    update fir_set an
    set an.value_pobot = an.value_odpr
    where let = (select distinct max(let) from fir_set)
    and krog = (select max(krog) from fir_set)
    and
      (select sum(a.VALUE_ODPR)-b.POBOT
      from fir_SET a, xml_transfer b
      WHERE a.tax_nr = b.tax_nr
      and an.tax_nr = a.tax_nr
      group by a.tax_nr,b.POBOT) = 0;
      commit;
      end;Resoult is as:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                 
    2011                    7                      111111                 10                     2000                   2000 
    2011                    7                      111111                 11                     400                    400
    2011                    7                      111111                 12                     100                    100 
    2011                    7                      111111                 13                     200                    200                Ok the next example is a bit more tricky and i cant figure it out. I dont know how to explain it properly ... i will
    just post the resoult and try to explain it:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                 
    2011                    7                      222222                 1                      200                    200 
    2011                    7                      222222                 2                      20.7                   20.7
    2011                    7                      222222                 3                      100                    100 
    2011                    7                      222222                 4                      400                    30   So what we need to do is we check is XML_TRANSFER.POBOT - VALUE_ODPR > 0, IF this is it then we update VALUE_POBOT with VALUE_ODPR.
    In next row we check again if above statment is correct and if it is we do the same. The process will continue as long as statment
    will be correct.
    If statment is no longer correct we have to do this operation: XML_TRANSFER.POBOT - SUM(VALUE_ODPR) (INSIDE SAME TAX_NR!!! So group by tax_nr!!)
    and update last row with given resoult. By no means we can get negative numbers.
    I really do help i explained my problem so that you will understand what i want to achive. If you have any questions please feel free to ask.
    Thank you for your help!
    Best regards, Cain!

    Hello and thank you again for taking your time!
    SQL you posted is still not quite right but we are almost there ... let me show you how it should look like (i have add a little more data into tables):
    Table XML_TRANSFER:
        TAX_NR       TYPE       PRIJ      POBOT
        111111          1       3000       3000
        222222          1      720,7        200
        333333          1       2600       2100
        444444          1       1000       1000
        555555          1       5000       3000Those are resoults i get running your SQL .....
           LET       KROG     TAX_NR   STEV_FAK VALUE_ODPR VALUE_POBOT
          2011          7     111111         10       2000        2000
          2011          7     111111         11        400         400
          2011          7     111111         12        400         400
          2011          7     111111         13        200         200
          2011          7     222222          1        200         200
          2011          7     222222          2       20,7           0
          2011          7     222222          3        100           0
          2011          7     222222          4        400           0
          2011          7     333333         81       2600           0
          2011          7     444444         55       1000        1000
          2011          7     555555        111       2000           0
          2011          7     555555         82       1000        1000
          2011          7     555555         83       1500        1500the correct resoults should be:
           LET       KROG     TAX_NR   STEV_FAK VALUE_ODPR VALUE_POBOT
          2011          7     111111         10       2000        2000
          2011          7     111111         11        400         400
          2011          7     111111         12        400         400
          2011          7     111111         13        200         200
          2011          7     222222          1        200         200
          2011          7     222222          2       20,7           0
          2011          7     222222          3        100           0
          2011          7     222222          4        400           0
          2011          7     333333         81       2600         2100
          2011          7     444444         55       1000        1000
          2011          7     555555        111       2000       500  
          2011          7     555555         82       1000        1000
          2011          7     555555         83       1500        1500Note at line 2011          7     333333         81       2600         2100 and at line 2011          7     555555        111       2000       500    I hope its more clear now.
    PS at 2600 the correct resoult is 2100 and not 0.
    Thank you
    best regards!
    Edited by: Cain_oracle on 24.8.2011 1:08

  • How do I fix Calendar getting stuck with updating to iOS5?

    I have a 3rd generation iPod Touch.  I updated to iOS5 this summer, but some programs/apps got very slow, but the biggest, consistent problem is the Calendar app.  It gets stuck, it launches and the calendar is "empty" even though there are series of appt. each day.  If it does launch okay and I try to touch the + to make a new appointment, it is extremely slow, but if it does work, when I tap "done" for it to make the appointment, it gets stuck on the screen and I have to leave the program by tapping the home screen.
    How do I get the Calendar app to function smoothly, properly, and just work?
    Here's my set up:
    3rd generation iPod Touch.
    iOS 5.1.1
    In Settings -> Accounts:
    1.****@gmail.com (which then says iCloud) with Mail "off", Contacts "on" Calendars "OFF", Bookmarks "On" Notes "Off"
    2. Gmail with Mail, Calendars and Notes "ON." 
    (This was the set up from the days of iOS4, IMAP gmail/mail program via wifi, Calendar syncs via google calendar and syncs over to iCal on MacBook Pro, Notes sync wifi into Mail program notes.)
    I have tried switching Calendar Off and on again and it doesn't help, but I can try again.  I'm looking for the next level of diagnostics or means to remedy the problem.
    Thanks!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                 
    - Restore to factory settings/new iOS device.

  • Apps iPhone stuck with update

    I just ran the new os 5.1 update for the iPhone 5, but when I went to update my apps, they all are stuck on "waiting".  I tried a hard reset, and tried to pause them.  Nothing.  Wifi, powered in, nothing.
    Anybody here?  I hate to delete them all...

    Also, it is an iPhone 4 I am updating...

  • Stuck with update for app i deleted - sorry my mistake

    nevermind, it was my mistake, i accidentally dragged the app to the desktop and not to the trash.
    Message was edited by: v470510c05
    Message was edited by: v470510c05

    do you happen to be signed in as her account in the 'app sore'? (you can tell by clicking on the 'store' menu in the app store. At the bottom of the menu there is a item called 'View My Account [email protected]") if your signed in as yourself it should show your email.

  • I did an auto software update on my iMac, which included a restart. When the machine restarted it's stuck with an Apple logo and spinning wheel. I've tried all of the key strokes that are supposed to work, but nothing has. Any suggestions? Thanks!

    I did an auto software update on my iMac, which included a restart. When the machine restarted it's stuck with an Apple logo and spinning wheel. I've tried all of the key strokes that are supposed to work, but nothing has. Any suggestions?

    Gray screen could be any number of things, bad third party at boot kext file, a bad Apple one, a bad install/upgrade of OS X, drive corruption etc.
    Run through this list of fixes
    Step by Step to fix your Mac

  • My iphone5s was accidentally disconnected while updating OS8.2 in my MacBook Pro and now it's stuck with an apple logo on its screen and won't turn on or off. What should I do?

    My iphone5 was accidentally disconnected while updating OS8.2 in my MacBook Pro and now it's stuck with an apple logo on its screen and won't turn on or off. What should I do?

    Connect to iTunes and restore. If you have difficulty, you may have to put the device into Recovery Mode. See the instructions in this support document. If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • How can I change my apple ID from the APP store so I can update my  app? my computer is stuck with an old email and won't let me change it..

            Hello, Im trying to upgrade Imovie and whatever app are about to update in the future, the problem is the my Imac is stuck with an old email on the APP store. I try to change it and nothing happen, when I put my apple ID it send me to change the password and what Im trying to do is to put my new email in the system so would be able to update my computer. You know when you press the update button a little box drop with your email and all you have to put is your password thats where my old email is stuck pls someone help me with that little problem i'll appreciate it... thanks

    An Apple ID isn't necessarily "linked" with your email other than for recovery reasons. So, as long as you know the Apple ID password, an old email isn't catastrophic. Apple ID != e-mail.
    Now, if it's really bugging you and you really want to change it, if you log in to http://appleid.apple.com and change your primary email address, this should update your Apple ID. There will be a couple hoops involved with this (i.e. verification of email change by sending email to rescue/alternate email. Alternate email can't be the same as the new primary. The new primary can't have ever been used as/with an Apple ID. etc...).

  • Im stuck with this message "no bootable device, insert boot disk and press any key". Now i want to go back to mac os but everytime i turn on my laptop that message appear..kindly help... Please

    Im stuck with this message "no bootable device, insert boot disk and press any key". Now i want to go back to mac os but everytime i turn on my laptop that message appear..kindly help... Please .... Im using my usb as bootable device but it cant be detected..

    Reboot, hold the option key down, select OSX when the startup manager appears.

  • Updating a table with no Primary key

    What I am trying to find out is if you can uniquely update a single record in a table that has no primary key. I see no way to reference the record I want, other than specifying all the field values in a where clause. This is a problem though, because if I have another record with the same field values, that will get updated too. (I know its a bad database design, but some people do it and I need to work around it!!!), there are some situations where you would have identical records as far as a where clause is concerned, for example, you cant use a blob in a where clause so that might be where your records differ...
    In SQLServer 2000, Enterprise manager throws an error if you have a table with no primary key and duplicate records that you try to update through the GUI. EM uses stored procedures to execute updates, and it rolls back ones which result in more than one update result.
    Im not too familiar with Cursors in SQL, only that they are quite slow and not implemented on all DB products. But I think that they might be able to solve the problem (but I dont logically see how).
    Can anybody explain this to me?

    another record with the same field valuesIf you have two records and all the field values are the same then the records are logically the same anyways, so it shouldn't matter if you update both (one would question why there are two records in the first place.) In other words there is no way, either computationally or manually to tell them apart.
    I suspect that that is rather rare. Instead what is more likely is that you are only using some of the fields. So just keep adding fields until it is unique.

  • HT4623 ipad stuck with a connect to itunes sign but it won't update when connected because it says content is full

    ipad stuck with a connect to itunes sign but it won't update when connected because it says content is full

    You are in Recovery Mode
    http://support.apple.com/kb/ht4097

  • Help! my iphone 4 was stucked or cannot recognize by my itunes after updating to 4.3.5? how i can open it again, it seems stucked with an itunes icon and usb on my iphone screen

    help! my iphone 4 was stucked or cannot recognize by my itunes after updating to 4.3.5? how i can open it again, it seems stucked with an itunes icon and usb on my iphone screen.
    pls help me recognize my iphone4 to itunes and bring back my iphone 4 the way it was before. THANKS!

    Hi my iphone 4 is also having the same problem of hanging with the same screen reflected. itunes keep suggesting me to do a restore setting but it fails to restore after running half way. Have u solved your problem ardy..? Hw can i / we do about it...?

  • Try updating my ipad  2 ,came back with error 1602, and now my ipad is stuck with the itune and usb icon on the screen

    Try updating my ipad 2, pop up with error 1602 and now my ipad is stuck with the itune and USB icon on the screen. I tried to restart it, but screen still comes up the same.

    See if this page helps http://support.apple.com/kb/TS3694#error1602

  • 4s bricked after trying new update, stuck with black screen with apple logo how can i fix this

    Update bricked my 4s
    phone , stuck with black screen with apple logo .. 
    how can I fix this

    Greetings r1042,
    Welcome to the Apple Support Communities!
    I understand that your iPhone is not booting up past the Apple logo. In this situation, I would recommend working through the troubleshooting steps located in the attached article.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    If your device gets stuck during startup
    When starting up, you might see the Apple logo or a red or blue screen for a long time, or your device might restart again. Try these steps:
    Make sure that you have iTunes 12 or later on your computer.
    Put your device in recovery mode.
    When you get the option to restore or update, select Update. This will reinstall iOS without erasing your data.
    Have a great day,
    Joe

Maybe you are looking for

  • Time Machine deleted all my folders now wont restore

    Big trouble here and I am lost as to how to fix it. I have a Mac Pro, and two users on it All the Users folders (home folders) are stored on a separate HDD, moved from there usual location on the system drive and the home folder locations changed in

  • Linked images in eps files

    I was playing with CS5 over the last several days and noticed somethng odd. - Place an image in a new Illustrator file. Your layers palette shows Layer 1 > Linked File. - Save a copy of that file as an eps. - Open the eps and look at the layers palet

  • End (or begining) of a clip indicator

    When I move a clip in the timeline up against another clip, I no longer get that indicator (that darker 'I" shape) to show me when the two clips are connected. I have no idea what the actual term is for this indicator. Right now, when I move a clip o

  • Re: Withholding Tax Configuration.

    Hi Experts, We have almost completed Implementation of  Company In Bangladesh. Now the Client wants T.D.S Configuration for Bangladesh. along with Callahan Remittance.I gone through Sap Note given in market place but no such configuration is availabl

  • Can I use an in focus lp70 with the iPad

    I am trying to connect an in focus lp70+ projector to an iPad with the apple via adapter but get no picture. Do I need special software or a tv adapter?  Any help is greatly appreciated.