Hardware_Diagnostics PC_Doctor PC-DOS option not available from TV R&R 4.21 Service Partition

I recently updated my Z61t laptop [with XP Pro preload] to TV R&R 4.21; the Service Partition experienced corresponding changes.  When I run the Service Partition, the help text continues to refer to the Hardware_Diagnostics PC_Doctor PC-DOS [reboot] option (which was available under TV R&R 3.x); however this item no longer appears as a menu option [the space it formerly occupied is now blank!]
Interestingly, with a little trickery, I can still  launch the Hardware_Diagnostics PC_Doctor PC-DOS functionality from the Service Partition using a 3rd party boot manager...
There are no apparent system problems associated with this change, but I am wondering if this feature loss is a symptom of some more significant issue [or problem] as yet undiscovered...
Message Edited by Logomach on 12-27-2008 02:23 PM
Z61t laptop with 3 GB memory and 320 GB HDD upgrades ||| Win XP Pro preload dual boot with Win Vista Business

I experienced the same problem.
In addition I can no longer view the Event Logs. 
Bob Stockler
G41 - 2886-5TU - Mobile Pentium 4 532 - 3.06 Gh
2 Gb RAM - 80 Gb Toshiba 5400rpm HDD - Win XP Pro

Similar Messages

  • Preview on [device name] option not available

    Preview on [device name] option not available on Folio Overlays

    In v20 its available in the Folio Builder panel (iPad only, I think). You have to plug to your Mac to the iPad with the USB cable and starting the Adobe Content Viewer app on the iPad first. Otherwise check iTunes on your Mac if your iPad is listed under "Devices".
    Are you using InDesign CS5.5 or InDesign CS6?
    You have to be up to date with the Overlay Creator panel to v20 as well. Check for that.
    Recently I had no chance with InDesign CS5 and the v20 tools installed on a Mac with OSX 10.5.8.
    Uwe

  • HT204266 I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the di

    I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the differences between countries' iTunes offerings? Does one really need an address and a credit card for any country to be able to access that countries iTunes store? Why these restrictions?

    You cannot.
    You cannot use another countrys itunes store.
    You must be physically locates inside the borders of a country to use that countrys itunes store and a credit card issued in that country with a valid billing address in that country.
    The owners of the distribution rights of movies/music/etc differ by country.  These distributors decide who can sell their content in that country.
    Buy from another source if your countrys itunes store does not carry somehting that you want.

  • Exception "algorithm ARC4 is not available from Provider Cryptix "

    hi all
    i am developing the application in which i am using two encryption/decryption algorithms one is "RC4" and second is "AES(256 bit key)".
    1.first i am taking the credit card number from database which is in
    the encrypted format using 'RC4".
    2.After taking the Credit card number from database i am decrypting them using RC4.
    3. After decrypting them i am encrypting them using "AES(256 bit key") and putting the paymentid and encrypted credit card number in HashMap.
    For that i have written following classes
    RC4EncMemory.java ( which is taking encrypted credit card number from database ,decrypting them using "RC4" and then encrypting them using "AES")
    import java.security.GeneralSecurityException;
    import java.security.Security;
    import java.sql.*;
    import java.util.*;
    import java.util.HashMap;
    import javax.crypto.SecretKey;
    import cryptix.jce.provider.key.RawSecretKey;
    import cryptix.provider.Cryptix;
    public class RC4EncMemory
         DbAccess db=null;
         RC4EncMemory crypt=null;
         PreparedStatement pstmt=null;
         ResultSet rs=null;
         EncryptionPerformance per=null;
         AESEccryption aes=null;
         private String originalCCnumber=null;
         private int paymantid;
         private byte[] b;
         private byte[] aesencrypted;
         public RC4EncMemory()
         {db=new DbAccess();}
         public void selectAllCCNumber()
              HashMap allccnumber=new HashMap(1000);
              String qry =DbAccess.getPropertyValue("cedera.ccnumber.selectccnumberFromPayment");
              System.out.println(qry);
              try
              {rs=db.getResultSet(qry);
              if(rs!=null)
              {     crypt=getInstance();
                   while(rs.next())
                        System.out.println("In while");
                        paymantid=rs.getInt("paymentid");
                        b=rs.getBytes("ccnumber");
                        System.out.println("paymantid >>> " + paymantid);
                        originalCCnumber=DecryptCCNumber(b);
                        Security.removeProvider("RC4");
                        System.out.println("decrypted original >>> " + originalCCnumber);
                        aesencrypted=getAESEncryption(originalCCnumber);
                        //allccnumber.put(new Integer(paymantid),new String(originalCCnumber));
                   Set key=allccnumber.keySet();
                   Iterator i=key.iterator();
                   while(i.hasNext())
                   {System.out.println(" Payment id from HashMap " +(Integer)i.next());
                   System.out.println("Size of the HashMap: >>" + allccnumber.size());
              else
                   System.out.println("empty");
              allccnumber.clear();
              }catch(SQLException exp)
                             System.out.println("Exception in SQL" + exp);
                        finally
                             try{          rs.close();
                                       pstmt.close();
                                       db.conn.close();
                             }catch(Exception er){}
         public String DecryptCCNumber(byte[] encryptedCCNumber)
              {     String decrypted=null;
                   if(encryptedCCNumber!=null)
                   {decrypted = decrypt(encryptedCCNumber);
                   return decrypted;
         public String decrypt(byte data[])
              if(data == null || data.length == 0)
              return null;
              try
                   xjava.security.Cipher cipher = xjava.security.Cipher.getInstance("RC4", "Cryptix");
                   cipher.initDecrypt(rsaKey);
                   byte out[] = cipher.crypt(data);
                   return new String(out);
              catch(GeneralSecurityException se)
              { System.out.println("SecurityException in decrypt method: " + se);
              return null;
         public static synchronized RC4EncMemory getInstance()
              if(_rc4decryption == null)
                   Security.addProvider(new Cryptix());
                   _rc4decryption = new RC4EncMemory();
                   makeRC4Key();
              return _rc4decryption;
    private static void makeRC4Key()
    {          String seed = "CvMjSpVrGsTnAj";
              rsaKey = new RawSecretKey("RC4", seed.getBytes());
    public byte[] getAESEncryption(String originalCCNumber)
    {     aes=AESEccryption.getInstance();
         return aes.encrypt(originalCCNumber);
    public static void main(String args[])
         RC4EncMemory mem1=new RC4EncMemory();
         mem1.selectAllCCNumber();
         private static SecretKey rsaKey = null;
         private static RC4EncMemory _rc4decryption = null;
    In the above programs i am getting the output as follows
    output:-
    in while
    paymantid >>> 3338157
    decrypted original >>> 5856373015065936
    inside encrypt method
    Original Data----->5856373015065936
    Encrypted Data----->[B@3cc0bc
    after encryption of data
    In while
    paymantid >>> 3338169
    SecurityException in decrypt method: java.security.NoSuchAlgorithmException: algorithm ARC4 is not available from provider Cryptix
    decrypted original >>> null
    In while
    paymantid >>> 3338290
    SecurityException in decrypt method: java.security.NoSuchAlgorithmException: algorithm ARC4 is not available from provider Cryptix
    decrypted original >>> null
    my program is able to decrypt the only first credit card numbers using RC4 and then encrypt it using AES(as shown in bold above) but it is not able decrypt the rest of the credit card number from the database using "RC4" and it is throwing above exception regarding the "RC4" algorithm .
    can anybody tell me what is reason behind this exception? my guess is the we cann't use the two providers simultaneously.
    please anybody help me
    AESEccryption.java(which helps to encrypt the credit card number in AES using encrypt method )
    import java.security.GeneralSecurityException;
    import java.security.Security;
    import java.sql.*;
    import javax.crypto.spec.SecretKeySpec;
    import org.bouncycastle.jce.provider.BouncyCastleProvider;
    import cryptix.provider.Cryptix;
    public class AESEccryption
         AESEccryption cryptAES=null;
         AESEccryption cryptAES1=null;
         public AESEccryption(){}
         public static synchronized AESEccryption getInstance()
              {     if(_aesEncryption == null)
                        Security.insertProviderAt(new BouncyCastleProvider(),3);
                        //Security.addProvider(new BouncyCastleProvider());
                        //Security.addProvider(new Cryptix());
                        _aesEncryption = new AESEccryption();
                        makeAESKey();
                   return _aesEncryption;
         private static void makeAESKey()
                   String seed = "FFF3454D1E9CCDE00101010101010101";
                   int length=seed.length();
                   if(length!=32)
                   {     System.out.println("Key size must be 32 characters only");
                        System.exit(0);
                   skeySpec = new SecretKeySpec(seed.getBytes(),0,32,"AES");
    public byte[] encrypt(String data)
         {     if(data == null)
              return null;
              try
              {     System.out.println("inside encrypt method");
                   javax.crypto.Cipher cipher = javax.crypto.Cipher.getInstance("AES");
                   cipher.init(javax.crypto.Cipher.ENCRYPT_MODE,skeySpec);
                   byte out[] = cipher.doFinal(data.getBytes());
                   return out;
              catch(GeneralSecurityException se)
                   System.out.println("SecurityException: " + se);
              return null;
         public static void main(String args[])throws Exception
         {     AESEccryption aesenc=new AESEccryption();
              aesenc.selectAllCCNumber();
              if(flag)
                   System.out.println("Flag " + flag);
         private static SecretKeySpec skeySpec = null;
         private static AESEccryption _aesEncryption = null;
    Regards
    Pandurang
    Message was edited by:
    andylimp12
    Message was edited by:
    andylimp12
    Message was edited by:
    andylimp12

    Hi Nith,
    Previously I have changed the document dispostal time out to 1 year but the error still occurs.
    Now I change the document inline size from 64 KB to 27 MB (estimated max document size) and see how the LCES behaves.
    I suspect if document size is larger than document inline size then LCES will write to some temp file. After that, user does not process the task for a long time, e.g. 3 days. And during the 3 days, the unix system/ websphere auto clear the temp file. After 3 days when user accesses the task again, LCES will complain "document is not in sending server side any more" ....
    I refer to : http://blogs.adobe.com/livecycle/2008/10/livecycle_tuning_knob_default.html
    For the Document sweep interval, I think, it relates Watch Folder, not this error so I don't change it.
    Regards,
    Anh

  • I have the latest version of photoshop cc . Why is the focus select option not available ? (for selecting the in focus area)a)

    I have the latest version of photoshop cc. Why is the focus selection option not available ?

    Use CC 2014 menu Help>System Info... use its copy option and paste the info here.  So we know your running CC 2014 not CC and that you have an enabled GPU....and latest device drivers.

  • Outboung Campaing: Error Unable to communicate with Enterprise Server. outbound Option not available

    Hi everyone,
    I'm running UCCX 8.01 + CUCM 7.1+ Cisco 7942 just for learning purpose. After creating the Outbound Campaign and imported the Contact List the call is received by the agent (call is state is received as Offering) but after press the Accept, Reject or any othe action button is received the error:
    Error Unable to communicate with Enterprise Server. outbound Option not available (attached to post).
    What does this mean?
    Regards
    Please rate all useful posts
    Favor calificar todos las respuestas útiles.
    LinkedIn Profile: do.linkedin.com/in/leosalcie
    MDGDP, CCNA, CCNA Voice, CCNP Voice Certified       

    Any idea?
    Please rate all useful posts
    Favor calificar todos las respuestas útiles.
    LinkedIn Profile: do.linkedin.com/in/leosalcie
    MDGDP, CCNA, CCNA Voice, CCNP Voice Certified

  • I have edit access to someone else's calendar.  In iCloud i can add an event to this calender.  In My calendar on my Mac I can see the calendar in the list, but when I try to add an event to this calendar, it is not avail from the list in event to select

    I have edit access to someone else's calendar.  In iCloud i can add an event to this calender.  In My calendar on my Mac I can see the calendar in the list, but when I try to add an event to this calendar, it is not avail from the list in event to select.  Any help appreciated.  Thanks

    Hi Chris,
    You can't get rid of an alert. The least you can have is one that says "none".
    Nevermind, I see you learned how to edit the event.

  • My Canon MX310 Series Printer failed as the software "is currently not available from the Software Update Server"? What is the matter with Apple OSX Mountain Lion?

    Mountain Lion stopped working with our Canon MX310 Printer? Why is the software not available from the Software Update Server?

    The printer and ICA scanner driver is available from Apple. There is probably some other reason why you cannot get the drivers.
    You can also get the drivers from Canon.
    But reading your post it sounds like you were printing to the MX310 and recently it has stopped printing. Is this the case?

  • Why is the documentary series Bomb Patrol Afghanistan not available from the Australian iTunes store?

    Why is the documentary series Bomb Patrol Afghanistan not available from the Australian iTunes store?

    Because it is the producer's decision where they want their items to be available. You can request for it if you want to.
    http://www.apple.com/feedback/itunes.html

  • WLAN override option not available for WLC 4402 - 6.0.196.

    Hi All,
    Its kind of weird BUT it seems that the option for WLAN override is missing.u.
    I could find it on the lower version BUT not on the 6.0.196.
    Please help.
    Does this mean I could only set it up via the WCS and not the WLC directly.
    Thank you.
    Warmest Regards,
    Azzafir Ariff Patel.

    Hi Scott,
    Thank you so much for the clarification.
    Thanks again.
    Quoting fella5 :
    azzafir,
    >
    A new message was posted in the Discussion thread "WLAN override
    option not available for WLC 4402 - 6.0.196.":
    >
    https://supportforums.cisco.com/message/3042635#3042635
    >
    Author : Scott Fella
    Email : [email protected]
    Profile : https://supportforums.cisco.com/people/fella5
    >
    Message:

  • All SYFY online on demand has error "Content not available from this domain"

    I keep getting an error on any SYFY online on demand shows which says "Content not available from this domain." This applies to any show from SYFY that I click on to test.  Other channels don't have that error.

    Hi,
    Thanks for bringing this issue. Yes, the message should be SEVERE. This will be fixed.
    You may also want to subscribe to [email protected] and bring up any issues, enhancements.
    Regards,
    Deepak

  • Option not available to add skype to go number in ...

     Option not available to add skype to go number in canada.... Urgent its been 1 week

    venkatesh wrote:
     Option not available to add skype to go number in canada.... Urgent its been 1 week
    Skype To Go numbers are available in the following countries:
    Australia
    Canada
    Chile
    Denmark
    Estonia
    Finland
    Greece
    Hungary
    Ireland
    Latvia
    Lithuania
    Luxembourg
    Mexico
    New Zealand
    Poland
    Portugal
    Romania
    Slovenia
    Singapore
    South Africa
    Sweden
    United Kingdom
    USA
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Valid installation itunes pkg, is not available from network resource, what ca I do?

    I have been tryng unsuccessfully to install Itunes.  I keep getting the msg. that a valid installation pkg. is not available from its network resourse.  I have windows vista.  Sometimes it says missing .dll files.  What can I do to correct this?  My Itunes worked perfectly until I was asked to upgrade it 2 weeks ago.  Now nothing works with anything else.

    See TS3704: "The feature you are trying to use is on a network resource that is unavailable" alert appears when removing Apple software in Windows.
    tt2

  • TS1702 I can not get the 12 days of Christmas to work. The app loads but it says it is not available from the Canadian store at this time

    I can not get the 12  days of Christmas to let me get the free gift. I restarted my iPad, I reloaded the app, my iTunes is a Canadian address . The error I get is " it is not available from the Canadian store at this time"

    Hi,
    See this thread:
    https://discussions.apple.com/message/20681369#20681369
    Biti

  • HT204053 iCloud option not available on MacBook Air

    Why is the iCloud option not available on my MacBook Air?  It's not under the System Preferences in the Apple dropdown...only the MobileMe options are still there.

    r_lopez wrote:
    Why is the iCloud option not available on my MacBook Air?  It's not under the System Preferences in the Apple dropdown...only the MobileMe options are still there.
    iCloud won't appear in System Preferences in Snow Leopard. But, you can get some of the features of iCloud working with 10.6.
    Mail AND iCal work just fine. See this article: http://bit.ly/LvVCR2
    I use the iCal info on two of my own Macs and it works fine. The Address Book hack is a maybe. Read through the comments associated with the blog entry. Some folks have gotten the AB hack to work by locking the plist file.

Maybe you are looking for

  • Call Manager 4.13 Multi-Level Access Question

    I need to configure MLA and have read the CCO documentation. My question is - I'm not familiar with the ccmadministrator account and want to make sure that when I'm prompted to reset the password to this account immediately after enabling MLA - that

  • Scrolling stuck at top of page

    I was wondering if someone had any ideas about how to fix this issue on my website. http://ubfinances.businesscatalyst.com/ It was working fine a few weeks ago when I completed it. Tested it from muse in chrome, firefox, ie. Then I waited for approva

  • In Authorization task, require entry of a Reject "reason" ?

    In Authorization task, require entry of a Reject "reason" ? When the Authorizer "Rejects" an authorization task, we want to require entry of the "Reject Reason".  The only thing we've thought of so far is to have a field that's mandatory during that

  • Error while using 2001 to apply for leave

    Hi, I have customized for accrual of leave using RPTQTA00. The leaves are getting generated correctly. However when I am trying to apply for leave using 2001, the error stating "subtype not valid" is shown. I have checked the Entry Screen and it is s

  • LMS Test Beds

    Hi, I was wondering if anyone has found a "test site" that would allow me to try out a course in a simulated LMS.  My goal is to try my courses out on an LMS before passing it along to my client for installation on their LMS.  I have been using the S