T400 with mini-dock, trying to use a FP with displayport

Hi,  I have problem with I'm trying to resolve because someone ordered the wrong FP in our dept.  I have a T400 and advanced mini-dock.  and trying to connect to a FP that has displayport.  I've searched and searched for a solution via the web but with no answer.  Has anyone had this issue or know of a solution that wouldn't be very costly?  I know i can connect to the VGA but that is already taken from another PC.  This FP has dual screen option, takes input from 2 pc's.  Any suggestions would be greatly appreciated.

get a vga KVM box, this is the cheapest solution to this problem.
Regards,
Jin Li
May this year, be the year of 'DO'!
I am a volunteer, and not a paid staff of Lenovo or Microsoft

Similar Messages

  • New X220 support dual external monitors with mini dock plus?

    Hi,
    I need to purchase a new Lenovo laptop in urgent.
    But we need to make sure it support dual display to two external monitors. (VGA)
    My question is:
    (1) we plan to purchase with mini dock plus, it have two HDMI port.
    can it support two external monitors for Intel HD Graphics 3000?
    ( we will close the Lids when use in dual external monitors)
    (2) Can i use DVI to VGA convertor convert to VGA for supporting two external monitors
    (3) what is the weight difference for X220 SATA HDD and SSD HDD?
    Please kindly help in urgent!
    Rgds,
    Sun
    Solved!
    Go to Solution.

    Hi
    Yes, it work.
    It must need a Display port to VGA (F) convertor.
    Thank you.
    Cheers
    Sun

  • I'm trying to use kerberos V5 with ActiveDirectory but get an error

    I'm trying to use kerberos V5 with ActiveDirectory im using simple code from previuos posts but
    when i try with correct username/password i get :
    Authentication attempt failedjavax.security.auth.login.LoginException: Message stream modified (41)
    when i try incorrect username/pass i get :
    Pre-authentication information was invalid (24)
    Debug info is :
    Debug is  true storeKey false useTicketCache false useKeyTab false doNotPrompt false ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    Kerberos username [naiden]: naiden
    Kerberos password for naiden:      naiden
              [Krb5LoginModule] user entered username: naiden
    Acquire TGT using AS Exchange
              [Krb5LoginModule] authentication failed
    Pre-authentication information was invalid (24)
    Authentication attempt failedjavax.security.auth.login.LoginException: Java code is :
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.security.auth.login.*;
    import javax.security.auth.Subject;
    import com.sun.security.auth.callback.TextCallbackHandler;
    import java.util.Hashtable;
    * Demonstrates how to create an initial context to an LDAP server
    * using "GSSAPI" SASL authentication (Kerberos v5).
    * Requires J2SE 1.4, or JNDI 1.2 with ldapbp.jar, JAAS, JCE, an RFC 2853
    * compliant implementation of J-GSS and a Kerberos v5 implementation.
    * Jaas.conf
    * racfldap.GssExample {com.sun.security.auth.module.Krb5LoginModule required client=TRUE useTicketCache=true doNotPrompt=true; };
    * 'qop' is a comma separated list of tokens, each of which is one of
    * auth, auth-int, or auth-conf. If none is supplied, the default is 'auth'.
    class KerberosExample {
    public static void main(String[] args) {
    java.util.Properties p = new java.util.Properties(System.getProperties());
    p.setProperty("java.security.krb5.realm", "ISY");
    p.setProperty("java.security.krb5.kdc", "192.168.0.101");
    p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
    System.setProperties(p);
    // 1. Log in (to Kerberos)
    LoginContext lc = null;
    try {
    lc = new LoginContext("ISY",
    new TextCallbackHandler());
    // Attempt authentication
    lc.login();
    } catch (LoginException le) {
    System.err.println("Authentication attempt failed" + le);
    System.exit(-1);
    // 2. Perform JNDI work as logged in subject
    Subject.doAs(lc.getSubject(), new LDAPAction(args));
    // 3. Perform LDAP Action
    * The application must supply a PrivilegedAction that is to be run
    * inside a Subject.doAs() or Subject.doAsPrivileged().
    class LDAPAction implements java.security.PrivilegedAction {
    private String[] args;
    private static String[] sAttrIDs;
    private static String sUserAccount = new String("Administrator");
    public LDAPAction(String[] origArgs) {
    this.args = (String[])origArgs.clone();
    public Object run() {
    performLDAPOperation(args);
    return null;
    private static void performLDAPOperation(String[] args) {
    // Set up environment for creating initial context
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    // Must use fully qualified hostname
    env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389/DC=isy,DC=local");
    // Request the use of the "GSSAPI" SASL mechanism
    // Authenticate by using already established Kerberos credentials
    env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    env.put("javax.security.sasl.server.authentication", "true");
    try {
    /* Create initial context */
    DirContext ctx = new InitialDirContext(env);
    /* Get the attributes requested */
    Attributes aAnswer =ctx.getAttributes( "CN="+ sUserAccount + ",CN=Users,DC=isy,DC=local");
    NamingEnumeration enumUserInfo = aAnswer.getAll();
    while(enumUserInfo.hasMoreElements()) {
    System.out.println(enumUserInfo.nextElement().toString());
    // Close the context when we're done
    ctx.close();
    } catch (NamingException e) {
    e.printStackTrace();
    }JAAS conf file is :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };krb5.ini file is :
    # Kerberos 5 Configuration File
    # All available options are specified in the Kerberos System Administrator's Guide.  Very
    # few are used here.
    # Determines which Kerberos realm a machine should be in, given its domain name.  This is
    # especially important when obtaining AFS tokens - in afsdcell.ini in the Windows directory
    # there should be an entry for your AFS cell name, followed by a list of IP addresses, and,
    # after a # symbol, the name of the server corresponding to each IP address.
    [libdefaults]
         default_realm = ISY
    [domain_realm]
         .isy.local = ISY
         isy.local = ISY
    # Specifies all the server information for each realm.
    #[realms]
         ISY=
              kdc = 192.168.0.101
              admin_server = 192.168.0.101
              default_domain = ISY
         }

    Now it works
    i will try to explain how i do this :
    step 1 )
    fallow this guide http://www.cit.cornell.edu/computer/system/win2000/kerberos/
    and configure AD to use kerberos and to heve Kerberos REALM
    step 2 ) try windows login to the new realm to be sure that it works ADD trusted realm if needed.
    step 3 ) create jaas.conf file for example in c:\
    it looks like this :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };step 4)
    ( dont forget to make mappings which are explained in step 1 ) go to Active Directory users make sure from View to check Advanced Features Right click on the user go to mappings in secound tab kerberos mapping add USERNAME@KERBEROSreaLm for example [email protected]
    step 5)
    copy+paste this code and HIT RUN :)
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;
    import javax.security.auth.Subject;
    import javax.security.auth.login.LoginContext;
    import javax.security.auth.login.LoginException;
    import com.sun.security.auth.callback.TextCallbackHandler;
    public class Main {
        public static void main(String[] args) {
        java.util.Properties p = new java.util.Properties(System.getProperties());
        p.setProperty("java.security.krb5.realm", "ISY.LOCAL");
        p.setProperty("java.security.krb5.kdc", "192.168.0.101");
        p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
        System.setProperties(p);
        // 1. Log in (to Kerberos)
        LoginContext lc = null;
        try {
                lc = new LoginContext("ISY", new TextCallbackHandler());
        // Attempt authentication
        lc.login();
        } catch (LoginException le) {
        System.err.println("Authentication attempt failed" + le);
        System.exit(-1);
        // 2. Perform JNDI work as logged in subject
        Subject.doAs(lc.getSubject(), new LDAPAction(args));
        // 3. Perform LDAP Action
        * The application must supply a PrivilegedAction that is to be run
        * inside a Subject.doAs() or Subject.doAsPrivileged().
        class LDAPAction implements java.security.PrivilegedAction {
        private String[] args;
        private static String[] sAttrIDs;
        private static String sUserAccount = new String("Administrator");
        public LDAPAction(String[] origArgs) {
        this.args = origArgs.clone();
        public Object run() {
        performLDAPOperation(args);
        return null;
        private static void performLDAPOperation(String[] args) {
        // Set up environment for creating initial context
        Hashtable env = new Hashtable(11);
        env.put(Context.INITIAL_CONTEXT_FACTORY,
        "com.sun.jndi.ldap.LdapCtxFactory");
        // Must use fully qualified hostname
        env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389");
        // Request the use of the "GSSAPI" SASL mechanism
        // Authenticate by using already established Kerberos credentials
        env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    //    env.put("javax.security.sasl.server.authentication", "true");
        try {
        /* Create initial context */
        DirContext ctx = new InitialDirContext(env);
        /* Get the attributes requested */
        //Create the search controls        
        SearchControls searchCtls = new SearchControls();
        //Specify the attributes to return
        String returnedAtts[]={"sn","givenName","mail"};
        searchCtls.setReturningAttributes(returnedAtts);
        //Specify the search scope
        searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
        //specify the LDAP search filter
        String searchFilter = "(&(objectClass=user)(mail=*))";
        //Specify the Base for the search
        String searchBase = "DC=isy,DC=local";
        //initialize counter to total the results
        int totalResults = 0;
        // Search for objects using the filter
        NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
        //Loop through the search results
        while (answer.hasMoreElements()) {
                SearchResult sr = (SearchResult)answer.next();
            totalResults++;
            System.out.println(">>>" + sr.getName());
            // Print out some of the attributes, catch the exception if the attributes have no values
            Attributes attrs = sr.getAttributes();
            if (attrs != null) {
                try {
                System.out.println("   surname: " + attrs.get("sn").get());
                System.out.println("   firstname: " + attrs.get("givenName").get());
                System.out.println("   mail: " + attrs.get("mail").get());
                catch (NullPointerException e)    {
                System.err.println("Error listing attributes: " + e);
        System.out.println("RABOTIII");
            System.out.println("Total results: " + totalResults);
        ctx.close();
        } catch (NamingException e) {
        e.printStackTrace();
    }It will ask for username and password
    type for example : [email protected] for username
    and password : TheSecretPassword
    where ISY.LOCAL is the name of kerberos realm.
    p.s. it is not good idea to use Administrator as login :)
    Edited by: JOKe on Sep 14, 2007 2:23 PM

  • I am trying to use apple configurator with ipads. I have been successful with all our ipads but 1. It will not allow me to add apps. The error I get is that it is refreshed but with errors e

    I am trying to use apple configurator with ipads. I have been successful with preparing and supervising all ipads but one. When preparing it in configurator, I receive an error that it is refreshed but with an error. Under supervise, I am not able to add apps. I have erased all content to start over but this does not work either

    Are you trying to restore a backup, or just sync some apps? Do you have profiles installed on the device?
    Have you plugged the ipad into iTunes, and did a fresh install? I'm assuming the device went through the prepare setup properly. You many have to unsupervise it first, then plug it into iTunes to wipe it completely.
    I'd then do each step seperately. Prepare it, then install 1 app, if that works, try another app, then maybe a profile.

  • Hello,i have a retina with Mountain Lion.I have logic PRO 7 and logic Pro 8 ,with  G5.I can't use the CD with the retina!!It's not a powerpC!!How do i install Logic Studio 8 with Mountain Lion successfully ?too évolution Logic PRO 9?

    Hello,i have a retina with Mountain Lion.I have logic PRO 7 and logic Pro 8 ,with  G5.I can't use the CD with the retina!!It's not a powerpC!!How do i install Logic Studio 8 with Mountain Lion successfully ?too évolution Logic PRO 9?

    The installer for Logic Pro 8 has a bug which keeps it from operating in Lion or Mt. Lion.  Use the program Pacifist to install it.

  • How to use video conference with life messenger, how to use video conference with life messenger

    how to use video conference with life messenger, how to use video conference with msn life messenger

    Hi,
    Do you mean Window Live Messenger or it's Mac equivalent MSN for Mac ?
    Actually the app comes with Office
    In the Microsoft Office X (2001 version) it was still called MSN  Messenger
    In Office 2008 it was called Microsoft Messenger.
    The current one that can also be  downloaded as a standalone app  also comes with Office 2011 is also called Microsoft Messenger.
    This is version 8 and this version is the only one that can Video Chat as a standalone app.
    Version 7 required you  were in a mixed environment (with PCs) connected to the correct sort of Windows Server.
    This page may help you further.
    8:20 PM      Saturday; June 11, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously.

  • Help! I deleted my System preferences by mistake! I'm absolutely positive they are gone. Unfortunately so are the disks that came with it. I'm using an Imac with os 10.4.11. Any help would be greatly appreciated!

    Help! I deleted my System preferences by mistake! I'm absolutely positive they are gone. I checked spotlight, blue apple and the hard drive, applications. Gone. Unfortunately so are the disks that came with it. I'm using an Imac with os 10.4.11. Any help would be greatly appreciated!

    Try cleaning the disc, and be sure you have the right one.
    If that doesn't help, it sounds like it's time for a trip to the Apple Store. 
    Make an appointment here:  http://www.apple.com/retail/geniusbar/

  • T400 + Advanced Mini Dock + Windows 7 -- Problems

    Hi,
    I have some problems with the named combination. When I put my t400 in the docking station sometimes or better most of the time the dock is not recognized or it seems to be not recognized. The external DVI TFT does not turn on. The same problem with the attached USB hub. Sometimes it is recognized and my mouse + keyboard works, sometimes not. Switcheable graphics is always in high performance mode.
    I have no clue what the problem is. Would be please if somebody could help.
    thanks alot!

    I am having a similar problem with my T400 and Advanced Mini Dock.  My T400 has integrated graphic, by the way.  I've found that if I plug my computer into the dock while it is running, it does not detect the external DVI monitor.  But if I boot while docked, it does detect and use the external monitor.  It is very strange.

  • W520 with Mini Dock Plus Series 3 won't detect Dell U2412M Monitor

    I have a W520 Thinkpad with a Mini Dock Plus Series 3 with USB 3.0.
    Until this morning, I was able to use it with my two external monitors connected via DVI to the Mini Dock.
    The two monitors I have are:
    Acer V243H
    Dell U2412M
    The Acer works fine regardless of which DVI port I plug it into.
    The Dell refuses to work on either port.
    Again, both monitors were working fine as of yesterday.
    Any ideas on what might have caused this or what I can do to fix it?

    I have the same problem with the minidock and display port monitors. It will not recognize them at all on power up. If I then put the w520 to sleep and wake it up a few times, it will then recognize them and allow me to use them as "projectors".
    Before I upgraded the BIOS and nVidia drivers, it would always recognize one of the two, and I used to have to pull the cable out and in again on the second. Now this technique doesnt work - sleep wake is the only work around.

  • Can't get dual monitors to come back up when docking. T500 with mini dock & XP

    I have a T500 with XP installed. I am using it docked into a mini dock attached to two 20inch Viewsonic monitors. One connected via VGA and the other DVI. I setup the dual monitors just fine. Anytime after I undock and boot up the laptop I can't get the dual monitors to automatically display. I have to go into the display properties and re set it up each time. Can anyone suggest any ideas?

    When your T500 power-on , press F1 to log in BIOS, and change the option in >config>Display>Boot-Display-Device to Both or VGA, I suppose that it will reslove your problem.

  • Still Having Problem with Battery Overheating with Car Dock/Charger when using Maps/Navigation

    I'm having a problem with the battery overheating when using Google Navigation in the OEM Samsung car dock and car charger.  On a trip last weekend, I started off with a fully charged battery (because posts on other sites have complained that the Charge cannot keep up with the power draw of the Google nav app while using the car charger).  About an hour into my trip, I got a message that the battery was overheating and to unplug the charger which I did.  I then had to contend with the screen going out because it was running on the battery.  I let the phone discharge to about 70% then tried the car charger again.  Within a few minutes, I got the same overheating message.  It was not an overly hot day and the car A/C was set at 68 degrees.  
    This morning (with the battery at about 85%) I tried to use the Navigation without the car dock while charging and got the same results...the phone battery overheated and I had to unplug the charger. The battery temperature reached 116 degrees. (also, the battery level was also dropping while using the Maps or Nav application even though it was hooked up to the car charger).  
    I'm very disappointed with this situation since I was hoping I could replace my old Garmin GPS with the Charge.  But between the phone dimming the screen while running on battery, and having a depleted battery in the phone at the end of the trip, its just not a viable option.  I really like this phone, but I'm running against the "return" clock.  
    Any ideas?
    Could this be a software problem that will be corrected by an update in the future?
    fyi:  other Charge problems in the last 5 days:
    - dropping audio on calls to other Verizon phones.
    - use of camera flash causing the phone to reboot.
    (I do have the 'class 4' 32gb card in my Charge)
    Thanks in advance,
    Rich

    Jerry:
    Yes, the phone is charging while in the car dock.  I confirmed it both under the "about phone-status-battery status" menu and by my battery widget.  By watching the battery widget, I also noticed that the voltage steadily increased over the ride home.  It started at about 3.90 volts and ended at 4.02 volts.  I don't know if that is significant.  This time the battery did not overheat.  The Max temp was 110 degrees, but no notice to disconnect came up.  This might be because the sun was behind me on the drive home rather than beating down on the dash like it was this weeked.
    I've ordered a cheap universal dock from Amazon for about $15.00 which clips onto the a/c vent.  I want to see if this keeps the temperature down.  If this works, I can still return the fancy-schmantzy Samsung OEM car dock. (The car-dock interface wasn't that impressive anyway).
    Please let me know if the volt change means anything.
    And thanks again for your help!
    Rich

  • 2013 Honda Civic Si, SMS Text Message Function says "Unsupported Device" when trying to use this feature with iPhone 5. Can anyone help with this?

    In my 2013 Honda Civic Si, I'm trying to use the SMS Text Message Function, but keep getting the error message, "Unsupported Device".
    I use an iPhone 5 with latest iOS 6.1.4.
    HandsFreeLink works perfectly fine with my iPhone for voice calls and for streaming Bluetooth Audio. Does text messaging not work because of iMessage? Does anyone have any suggestions for this issue?
    Thanks in advance!

    In looking for a 2013 Honda Civic (LX model, no Navi), the text feature was very interesting and important to me. Why not have my texts available on the dash and read to me rather than messing with my phone. Anyway I won't go into the whole thing about safety while you're in your driving and all that. We all know what we should and shouldn't do. Anyways...
    I spoke to a salesman who said that this feature was not compatible with the iPhone, only BBs. Of course this didn't impress me and I found it hard to believe that Honda would restrict themselves like that. Anyway, a few searches on the web later and Honda shows that the iPhone 4, 4S and 5 are compatible for receiving texts through the car, just not sending them. I believe you need a minimum of iOS 5+ for it to work though.
    Once I found this the salesman and I did some testing with our phones. He has a 4S with iOS 6.1.3 and mine is a 4 with iOS 6.1.3. Initially we setup the phone using the Bluetooth config on the Civic's iMID display. It was setup and hands-free calling tested o.k. Next the texting was tested. Both of us have iMessage turned on. Neither of us could get the messages we would send each other (1 of us had our phone setup with the car, the other sent the text and vice versa). The messages were received by the phones, just not the car). When we would go under the Text Message section, it would say "Unsupported Device". I knew that couldn't be as Honda said it was compatible. After more web searches and a phone call to Honda by the salesman, I found the following.
    1) It seems like the person who had their phone paired with the Civic had to disable iMessage to start getting texts. The salesman still had it enabled on his though when he sent me texts (as SMS) and the Civic got them so both people aren't necessarily required to disable it. Now under the Text Message section, it would list the messages received.
    2) I changed the Notifications on my phone for Messages from Banner to Alerts. Once I did this it started to work. The texts were showing up on the car. I had read where another person had tried this successfully but then changed it back to Banner and it continued to work. I experienced the same thing.
    Granted this wasn't extensive testing but I was able to get it to do something closer to what I wanted. I'm not sure why Apple and Honda can't put their heads together to make sending texts work on the car but maybe someday it will work when enough people complain. It's kind of a disappointment that I couldn't get iMessage to work but I haven't given up hope yet. As it's a proprietary protocol, I can see Honda not supporting it though.
    Hope this helps someone out!
    FYI I bought car!

  • T400 + Advanced mini-dock: hang on power failure

    My T400 hangs if power fails while it is sitting in docking station (adv. mini dock). I have seen such problems with T60 on this forum, but not with T400.
    Does anyone experience similar problem?
    Solved!
    Go to Solution.

    You can fix this by selecting the following option in the BIOS:
    Config>>Docking Station>>Legacy Devices on Mini-Dock>>Disabled
    Basically, legacy devices (serial, parallel, PS/2) don't like being hot-plugged, which is what happens if you lose power on the dock. By disabling them, you can disconnect the dock without locking up the machine.
    See:
    http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-69370

  • HT1338 I bought a new Mac Mini and tried to pair my keyboard with the Mac Mini. They will not pair via Bluetooth. What is wrong?

    I have recently bought a Mac Mini and tried to pair the new apple wireless keyboard with the Mac but after trying 6 times no luck. What can I do about this?

    try this method:
    You need at least a USB mouse. If you don't get any option to pair a keyboard, click through the setup until you get to the "Create Your Computer Account" screen, right click in any of the text fields and select Substitutions --> Show Substitutions.  From there click on text preferences.  The preferences pane will popup and from there you can just click the back button (next to show all) to get to the full preferences menu.  Next click on keyboard, then select setup bluetooth keyboard and you're golden. 

  • I have a hp hpe-595a, i'm trying to use stereo mix with a hot mic. anyone know how to do this?

    I'm trying to sing along with the music in the chat program Paltalk and also host a music room on the same program, I can only use the mic or stereo mix but not both at the same time.
    I have been using this chat program for over 5yrs and have always been able to use Stereo mix with the mic active, using the realteck codecs or soundblaster (what you hear)
    I can't do this with the IDT codecs supplied.

    Hey Redritr,
    Thanks for the question. iTunes purchases are billed to Store Credits first, before Credit Cards, as outlined by the following article:
    When making purchases, content credits are used first, followed by Gift Certificate, iTunes Card, or Allowance Account credits; your credit card or PayPal account is then charged for any remaining balance.
    via iTunes Store: How iTunes Store purchases are billed
    http://support.apple.com/kb/HT5582
    It also may be that the iTunes Store is prompting to verify your billing information:
    When there is a mismatch between the iTunes Store's records and your credit card company's records, you will receive an error message stating that your credit card's security code isn't valid or that your zip code does not match your bank's records.
    In most cases, this issue is caused by a formatting error in the billing address that you have provided. You can correct the issue by verifying that the information you have provided is correct, or by changing the format of your address to match the format that your credit card company has on file.
    via iTunes Store: My credit card's security code or zip code does not match my bank's records
    http://support.apple.com/kb/TS1646
    Additional Information:
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/TS5366
    Thanks,
    Matt M.

Maybe you are looking for

  • Print a report on doc format truncate data

    hi I have a report launching with a form in an oracle applications, when I print a report on pdf format looks ok but when I print the same report on doc format truncate data on left and right side. Can you help me thanks

  • Uninstall Photoshop cc Trial version on  windows 8.1

    Hi, I've tried Photoshop CC for the trial period but now I wanto to uninstall it. Unfortunately I cannot find the uninstall function in panel control -> programs -> uninstall a program, the program is also present inthe disk, it works and is showed a

  • Scrolling window appears - How do I remove?

    Here is a page created with my template: http://abdavisbuilders.com/contact.html Here is another page created with the same template, but adding copy and a few divs: http://abdavisbuilders.com/index-2.html You will notice that the contact page does n

  • Where can I find the Copy-ItemFromAz​ureVM runbook?

    Hi, I would like to copy a file from my PC to a VM. I have found the Copy-ItemToAzureVM runbook in the script center, but I can not found the companion runbook Copy-ItemFromAzureVM that is referenced in the Q&A to this runbook. Does anybody know wher

  • Photos not lost- but IPhoto won't link to my 3K family treasure

    This forum is very helpful. Others with same issue and I have followed discussions and advice: Copied IPhoto library to an external hard drive.Downloaded ILife update. Downloaded IPhoto update. Created new library and moved "original " photo file to