Iphoto does not respond with batch change

Recently, when I do a batch change for example "descriptions" iphoto does not respond.  I tried to see if it was the number of pictures that I was batch changing but it freezes even with one photo.  I tried rebuilding thumbnails.  Any ideas?

Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
     User/Home()/Library/ Preferences folder.
2 - delete iPhoto's cache file, Cache.db, that is located in your
     User/Home()/Library/Caches/com.apple.iPhoto folder. 
Click to view full size
3 - launch iPhoto and try again.
NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
OT

Similar Messages

  • I just upgraded to the maverick and, of course, the iPhoto does not work with it.  How do I upgrade to version 11?  I cannot find it anywhere

    Recently upgraded to Maverick and the version of iphoto does not work with it.  How do I get and download the version 11?    I can't find it anywhere

    Which iPhoto? 9.4.6  and 9.5.1 work here.
    FWIW, iLife '11 is available here: http://www.amazon.com/Apple-MC623Z-A-iLife-VERSION/dp/B003XKRZES

  • TS3186 My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! Th

    My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! The sound is ok if I play CDs & respond to remote control fine... The hifi & docking station are Sony

    1) When I go to the apple.com website my computer will either be really slow or freeze my whole system down to where I have to reboot my computer again. This does not happen all the time but when it does operate it is molasses slow.
    By any chance, are you uswing Kaspersky security software?
    If so, see:
    [With Kaspersky Internet Security 2011 installed on my computer the website apple.com is imaged incorrectly. What should I do?|http://www.kaspersky.com/support/kis2011/all?page=14&qid=208282422]

  • Changed icon now iPhoto does not respond

    Hi,
    Can anyone help me, I went a bit silly changing my folder icons, but have now found that iPhoto does not work. I did change the icon for my pictures folder, and the data is still there, but now when I try to open iPhoto it just says 'loading library' and nothing happens. I am using iPhoto 4.0.3.
    Thanks
    G4 Powermac   Mac OS X (10.3.2)  

    HI, Stuart. Changing a folder's icon puts an invisible icon file inside the folder, so you changed your iPhoto Library folder's contents without iPhoto's participation or knowledge, and now iPhoto sees its database as damaged. This is a useful lesson in letting well enough alone, particularly where no useful purpose is actually served by your meddling. "Purely cosmetic" tweaks of the user interface can have more-than-cosmetic adverse effects on how things work (or don't).
    Delete your custom icon from the folder, then hold down the Shift and Option keys while starting iPhoto. Keep holding them down until you're asked whether you want the database rebuilt. Say Yes and let iPhoto do its work. You will probably get everything back again in good shape.
    If your adventures with custom icons haven't messed anything else up, you're probably lucky.

  • Button does not respond (with attachment)

    Hi,
    I'm trying to develop a LV program for a psychology experiment to record a participants mouse movements whilst drawing or tracing a picture using the mouse.
    My program uses an event structure to generate an event each time the mouse is moved or the mouse button is pressed or released. Upon each of these events the coordinates and button position is recorded to an array.
    When they have finished drawing there is a button "Stop & Save" that allows the user to save the coordinate data to a file. This can then be opened by a sister program I'm developing that allows the movements to be replayed and shows where the mouse button was down and up.
    At the start of the program there is the option of loading a background jpeg picture to trace over on the screen.
    The program then waits for a 'Record' button to be pressed before moving on to record all coordinates there after until the 'Stop & Save' button is pressed.
    The problem I have is that the record button does not respond. It doesn't even change state when pressed, even though at that stage it's just sat in a while loop waiting for it to be pressed before moving on to the event structure.
    I attach the program for you to look at.
    Any help/hints much appreciated.
    Thanks,
    Dave.
    Attachments:
    MouseCoordinatesForPW.vi ‏178 KB

    altenbach wrote:
    Your overall program design is higly flawed. This calls for a single state machine with an event structure that handles all FP events. All your locals can be handled by shift regsters. Get rid of that useless stacked sequence!
    Frame 0: Initialization belongs to the left of the state machine. CoordinatesArray should initialize a shift register (no locals needed). Use a boolean shift register to set state to either recording or not. Event for "record, value changed" will switch the boolean to be used on the other states.
    Frame 1: "Clear" and "stop" need to be inside their own events. Running it parallel to the event structure is a no-no! Do you really want to record mouse movements on the entire FP or only on the picture area?
    Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes no sense.
    Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values.
    Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead.
    Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help.
    Message Edited by altenbach on 05-22-2007 09:23 AM
    Hi, thanks for your reply.
    The reason for the main stacked sequence was to get some order to the program, my programming background's text based and as such I like to think of a program running in a list/sequence order. LabView seems strange when you've been used to programming in asm or C. Does anyone know of any books or online documentation for people migrating from text languages to LV? - I haven't found any.
    "Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes sense."
    - The string 'CoordsArray' is cleared to make sure it's empty before chars concatanated to it in the next frame. Call me old fashioned but is it not good practice to clear out any junk in a variable rather than just assuming it's empty?
    "Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values." - not sure what you mean by that?
    "Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead."
    - No, it's not an empty string since in the previous frame the coordinates array is converted to numbers and concatanated to it. Trust me, it generates a file with lots of data in so no way is it an empty string!!
    - Yes, you could just swap the cases instead of inverting the 'canceled' output but sometimes it reads better to say 'if NOT cancelled then DO theTask, ELSE DO nothing' rather than 'if cancelled DO nothing ELSE DO theTask'. Not sure if that makes sense but I guess it's just personal prefference there.
    "Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help."
    - I wasn't sure how that one would work. I wanted the final exe version to close the program window when the program comes to the end, what's the best way to do that? In the past I think I used the 'Exit' function but this would annoyingly quit LabView at the end of each trial run whilst still in the development stage.
    Thanks,
    Dave.

  • IPhoto does not open with new Mt Lion

    Just installed Mt Lion and cannot open iPhoto.  Purchased iPhoto Library Manager and can add new photos and have my old library rebuilt but still cannot open iPhoto. This is the response I get when tried "Your photo library is either in use by another application or has become unreadable". In iPhoto library manager iPhoto will not open with the option/command key pressed. Could not rebuild/open it in Time Machine. Suggestions?

    applesRnice
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    Regards
    TD 

  • Iphoto does not open with mountain lion

    I have intalled mountain lion on my iMac and now iPhoto does not open anymore. I get an error mesage "unexpected error occured    etc"
    Has anyone got experience with this issue?
    Thanks, Gilbert

    Dear Mende1,
    Both files were not there. Have tried to open iPhoto and it did not work.
    I have also restarted my iMac (3.06 Ghz Intel Core 2 Duo) with OSX version 10.8.1 using the "R" key wile restarting. This does also not work.
    Someone suggested to re-install iPhoto. How do I do that?
    Gilbert

  • Numbers hangs / does not respond with Lion OS 10.7

    I have the latest version of Numbers but it does not work with Lion OS X: Numbers hangs / stop responding on opening existing files or creating new files. When I run Numbers "Template chooser" appears, I chose an existing file, then the program reports "Progress... Opening..." and hangs. Your help will be greatly appreciated!

    Thanks
    (1) If you are annoyed by the alternate account you may remove it but it may be useful if you have other questions about an odd behavior.
    (2) Now, it's clear that the problem is in the main set of files, those shared by every accounts.
    I'm not really at ease because I'm not sure of the way apps bought thru the MAS are installed on the HD.
    I will ask you to apply two tasks :
    (a) run the application "FontBook" (from Applications) and ask it to scan the system in search of corrupted fonts as well as duplicate ones.
    (b) Go to : http://www.titanium.free.fr/
    and download the free Onyx dedicated to Lion (I know, it's a beta version)
    Run it to :
    check/repair permissions
    clean most of the caches used on the machine.
    With a bit of luck, you will get a normal behavior.
    May you also, for my own information, tell me :
    (I) if there is such a folder (Frameworks) on your machine :
    On yours, I guess that "Bibliothèque" is spelled "Library"
    (II) if Numbers is stored in the folder "Applications" or in a folder "Applications:iWork '09"
    Yvan KOENIG (VALLAURIS, France) lundi 25 juillet 2011 16:41:26
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • CF 7 cluster does not respond to configuration changes

    I am evaluating the clustering capabilities of CF 7 in order
    to upgrade our current CF6 + ClusterCats cluster.
    I installed CF7 (enterprise edition – multiserver) in
    two physical servers (Win 2003). On each server I created one
    instance of CF and successfully registered the remote instance on
    each server. Then, I configured the cluster on the first server,
    selecting the weighted random algorithm for load balance and
    session replication. Then, I used the webserver configuration tool
    to bind the cluster to each IIS server.
    The cluster worked properly, balancing the load between the
    two cf instances, but when trying to find a way to temporally
    restrict the load on one server for maintenance purposes I found
    that the cluster does not respond to cluster configuration changes.
    I changed the load to 0-100% using the coldfusion administrator
    interface but it did not work. The cluster still sends requests to
    the “restricted” instance. I even eliminated that
    instance from the list of instances that integrates the cluster,
    but it did not affect the behavior of the cluster. The eliminated
    instance still serves request from the cluster. I even eliminated
    the remote instance register and nothing… the cluster still
    balancing the load between the two instances that originally
    integrated the cluster.
    I do not understand how this is supposed to work. Does the
    cluster configuration interface works only when creating the
    cluster? When the changes in the cluster configuration performed
    from the CF admin interface should be reflected by the behavior of
    the cluster? What is the recommended procedure to temporally
    restrict one instance from the cluster without stopping the
    service?
    I appreciate your help
    Eduardo

    Thanks for the information Jochem. I am afraid that these are
    not good news. If I have to restart the webserver in order to
    change the load balance, some requests in progress could be lost.
    My current configuration is composed by two physical severs,
    each one running a web server and a coldfusion instance. We balance
    the load between both webservers using hardware load balancing.
    This is the procedure that I have to follow in order restrict one
    instance without loosing any request:
    1.- Change server weight using Coldfusion admin interface
    2.- Configure hardware load balance to restrict server 1
    3.- Restart webserver at server 1
    4.- Configure hardware load balance to enable server 1 and
    restrict server 2
    5.- Restart webserver at server 2
    6.- Configure hardware load balance to enable server 2
    A similar procedure should be followed in order to enable the
    restricted instance. I know that I can do it for 2 servers; but,
    how is it handled in larger clusters? Is there a better procedure
    to restrict one instance without missing requests?
    Eduardo

  • IPhoto does not sync with iPhone over USB anymore

    I'm using iPhoto '11 (9.4.2) on OS X 10.8.2 and an iPhone 4S (now with iOS 6.1.2).
    A few months ago when I connected my iPhone over USB iPhoto would start and do the expected workflow as it still does when I connect any other camera: Import the new images and delete them on the iPhone.
    Since around I installed iOS 6 on the iPhone iPhoto will not start anymore when the iPhone is connected. When started manually it will show the iPhone but not recognize any new images.
    I don't (want to) use Fotostream.
    I have looked for other answers and the usually suggested restarting / resetting has not helped.

    Main drive apple powerbook
    Have tried changing libraries to backups on external but same result.  They work but not recognized by other programs. All are named iphoto library

  • Youtube fullscreen video playback does not respond with more then one tab open.

    Right, so i've got a dual monitor set-up, and I've found that if I have two or more tabs with youtube videos paused, and I start one in full screen, then click my second monitor, the flash plugin essentially crashes. the video still plays apparently, or at least the sound does, but I cannot click anything, trying to change tabs or do anything on my secondary monitor does nothing other then grey it out saying that it's not responding. Same with my primary monitor if I try to alt+tab out of the flash player fullscreen thing. I have found that ending the flash player process imediately gives me control back, since it's forcing the fullscreen to shut down, but if i do not do this, then I have no access to my browser for several minutes.
    Does anyone know what i need to do to fix this? I've trying turning off hardware acceleration and the various commonly suggested fixes, and they don't do shit. So please, help me figure this out. if you need more information, I can provide it.

    I should mention that I have this problem in safe-mode as well. all addons are dissables, and I still have this problem. I've already tried re-installing adobe flash, and still nothing changes.

  • Scrolling and zoom in and out does not respond with touch pad gestures

    I have Just installed Firefox today not even an hour ago and already I've closed it at least 15 times reset it started it in safe mode and checked all my settings that have been tinkered with.
    I have: Windows 7 (64-bit)
    Dell XPS Laptop and No mouse, using the Touchpad on the laptop
    I have Tried:
    Changing multiple settings one at a time in about:config and changed them back
    Started in safe mode
    Changed scroll settings in Options
    Uninstalled all Apps to see if that worked
    Attempted scrolling in multiple kinda of pages (gmail, wiki, tumblr, facebook) with very little to no luck
    I have had it just slightly move on Gmail and managed to make it zoom in somehow on Tumblr but have not managed to repeat either instance

    Miss clicked. Keyboard commands do work. That is not the problem I reported. This (mouse roller with control key) used to work. Does not work now. Works in Gmail/firefox Works with web pages and firefox, works with chrome browser, but not with firefox and G-Docs

  • Iphoto does not open with itunes when my iphone is connected.

    I found an article about importing my photos from my phone that describes using iphoto to automatically import them. I cannot get iphoto to open when my iphone is connected tharefor, I can't get to the import screen or access my iphone with iphoto in any way.

    Duh!  Yes iTunes does talk to the iPhone. But it's primarily for syncing photos from iPhoto to the phone and not the other way. 
    Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try communicating with the iPhone again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    If that doesn't help try repairing disk permisisons with Disk Utility and reboot your Mac.  Lastly give Image Capture a try to see if you can manually download the photos to a folder on your Desktop and then import the folder into iPhoto. 

  • WRT610N Loses Internet connection, does not respond - with HP Mediasmart HomeServer plugged in

    OK - this makes no sense to me - and I consider myself somewhat technical.   Hopefully it will make sense to someone else.
    I have a new WRT610N v2 (2.00.00.B05) with 3-6 computers (Vista, W7) attached wired and wireless to them at any point in time.  I also have an HP Mediasmart EX470 (Windows Homeserver) attached to the network to back them all up.  Everything worked great with a WRT54G - but I wanted Gigabit.
    Every moring since I got the router, I found it completely unresponsive - all lights on, all systems with IP addresses, etc. - but the router was not communicating with the Internet - and it would not connect newly booted computers, etc.
    This happened with my original v1 - so I had it replaced - and I replaced my cable modem as well.  I now have an Ambit uc1018.80.
    Rather than pushing the reset button today and going through the reconfig process; I tried unplugging network cables to see if it would have an effect.  I unplugged the homeserver - and my cable modem "send" light flashed - I was connected (I could browse, etc.)  I plugged it back in - and everything went dead - no more send light on the cable modem - and no more internal network traffic either.
    I rebooted the homeserver - and everything now works - until, I expect,  the next night.  The homeserver is a HP EX470 Mediasmart with a memory upgrade (2gb) and a processor upgrade (AMD 1640).  It is running Windows Home Server Powerpack 3 (HP Update 1.2.1) with the following addons (PacketVideo PVConnect 4.4.4, Microsoft Homeserver Toolkit 1.1 (6.0.1800.0); and McAfee Total protection 5.0.0.648-patch003).  I do not have remote access settings configured.
    The homeserver is configured to backup all computers on the network overnight - most of the time they complete successfully - last night one of them failed. 
    The homeserver has a SiS191 1000/100/10 adapert running at 1000 (DHCP) driver version 2.0.1039.1070 dated 12/20/2006.  I am going to look for a newer driver - but it does not make sense that one computer can render a router unresponsive - does it?  Any ideas?
    Thanks....

    Here's an update - it looks like it might have somewith to do with DHCP and IPv6....
    Testing steps taken - notice that changes in ipconfig/all output is IPv6 related...
    1. Router set to factory defaults and re-configured.
    2. All systems rebooted and connected to router.
    3. All works well for several hours.
    4. Cable Modem send light goes out - all network access from client computers ceases.
    5. WHS cable disconnected from router - all client network traffic starts working and continue to work for several days without WHS connected.
    6. IPconfig of Vista SP2 client computer taken:
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : Computer
       Primary Dns Suffix  . . . . . . . :
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : roc.mn.charter.com
    Ethernet adapter Local Area Connection:
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Intel(R) 82566DC-2 Gigabit Network Connection
       Physical Address. . . . . . . . . : 00-1E-8C-2B-1B-8D
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : 2002:4b86:9d9a:0:7535:633a:5ca9:b7be(Preferred) ******
       Temporary IPv6 Address. . . . . . : 2002:4b86:9d9a:0:740d:b08d:72f5:a267(Preferred) ******
       Link-local IPv6 Address . . . . . : fe80::7535:633a:5ca9:b7be%10(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.1.225(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.224
       Lease Obtained. . . . . . . . . . : Sunday, December 27, 2009 10:29:48 AM
       Lease Expires . . . . . . . . . . : Tuesday, December 29, 2009 10:29:46 PM
       Default Gateway . . . . . . . . . : fe80::225:9cff:febe:e726%10
                                           192.168.1.254
       DHCP Server . . . . . . . . . . . : 192.168.1.254
       DHCPv6 IAID . . . . . . . . . . . : 251666060
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-10-F7-21-EE-00-1E-8C-2B-1B-8D
       DNS Servers . . . . . . . . . . . : 192.168.1.254
                                           24.159.193.40
                                           68.115.71.53
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Tunnel adapter Local Area Connection* 6:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter Local Area Connection* 7:
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
       Physical Address. . . . . . . . . : 02-00-54-55-4E-01
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : 2001:0:4137:9e50:10eb:520:3f57:fe1e(Preferred)
       Link-local IPv6 Address . . . . . : fe80::10eb:520:3f57:fe1e%11(Preferred)
       Default Gateway . . . . . . . . . :
       NetBIOS over Tcpip. . . . . . . . : Disabled
    7. WHS server cable plugged into router - send light on cable modem goes out - all connectivity ceases - client ipconfig taken (IPv6 Deprecated?)
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : Computer
       Primary Dns Suffix  . . . . . . . :
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : roc.mn.charter.com
    Ethernet adapter Local Area Connection:
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Intel(R) 82566DC-2 Gigabit Network Connection
       Physical Address. . . . . . . . . : 00-1E-8C-2B-1B-8D
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       Temporary IPv6 Address. . . . . . : 2002:4b86:9d9a:0:740d:b08d:72f5:a267(Deprecated) ******
       IPv6 Address. . . . . . . . . . . : 2002:4b86:9d9a:0:7535:633a:5ca9:b7be(Deprecated) ******
       Link-local IPv6 Address . . . . . : fe80::7535:633a:5ca9:b7be%10(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.1.225(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.224
       Lease Obtained. . . . . . . . . . : Sunday, December 27, 2009 10:29:48 AM
       Lease Expires . . . . . . . . . . : Tuesday, December 29, 2009 10:29:46 PM
       Default Gateway . . . . . . . . . : fe80::225:9cff:febe:e726%10
                                           192.168.1.254
       DHCP Server . . . . . . . . . . . : 192.168.1.254
       DHCPv6 IAID . . . . . . . . . . . : 251666060
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-10-F7-21-EE-00-1E-8C-2B-1B-8D
       DNS Servers . . . . . . . . . . . : 192.168.1.254
                                           24.159.193.40
                                           68.115.71.53
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Tunnel adapter Local Area Connection* 6:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter Local Area Connection* 7:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
       Physical Address. . . . . . . . . : 02-00-54-55-4E-01
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    8.  Wait a few seconds to see if there are changes - client ipconfig taken (no IPv6 address - DHCP lease time extended 1 second?)
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : Computer
       Primary Dns Suffix  . . . . . . . :
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : roc.mn.charter.com
    Ethernet adapter Local Area Connection:
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Intel(R) 82566DC-2 Gigabit Network Connection
       Physical Address. . . . . . . . . : 00-1E-8C-2B-1B-8D
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       Link-local IPv6 Address . . . . . : fe80::7535:633a:5ca9:b7be%10(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.1.225(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.224
       Lease Obtained. . . . . . . . . . : Sunday, December 27, 2009 10:29:48 AM
       Lease Expires . . . . . . . . . . : Tuesday, December 29, 2009 10:29:47 PM
       Default Gateway . . . . . . . . . : fe80::225:9cff:febe:e726%10
                                           192.168.1.254
       DHCP Server . . . . . . . . . . . : 192.168.1.254
       DHCPv6 IAID . . . . . . . . . . . : 251666060
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-10-F7-21-EE-00-1E-8C-2B-1B-8D
       DNS Servers . . . . . . . . . . . : 192.168.1.254
                                           24.159.193.40
                                           68.115.71.53
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Tunnel adapter Local Area Connection* 6:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter Local Area Connection* 7:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
       Physical Address. . . . . . . . . : 02-00-54-55-4E-01
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    9.  WHS server -"hard" rebooted - wait for WHS to come up and stabilize - all connectivity works  (including to WHS server) - client ipconfig taken (IPv6 is back - DHCP lease time reduced 1 second?)
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : Computer
       Primary Dns Suffix  . . . . . . . :
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : roc.mn.charter.com
    Ethernet adapter Local Area Connection:
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Intel(R) 82566DC-2 Gigabit Network Connection
       Physical Address. . . . . . . . . : 00-1E-8C-2B-1B-8D
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : 2002:4b86:9d9a:0:7535:633a:5ca9:b7be(Preferred) ******
       Temporary IPv6 Address. . . . . . : 2002:4b86:9d9a:0:740d:b08d:72f5:a267(Preferred) ******
       Link-local IPv6 Address . . . . . : fe80::7535:633a:5ca9:b7be%10(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.1.225(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.224
       Lease Obtained. . . . . . . . . . : Sunday, December 27, 2009 10:29:48 AM
       Lease Expires . . . . . . . . . . : Tuesday, December 29, 2009 10:29:46 PM
       Default Gateway . . . . . . . . . : fe80::225:9cff:febe:e726%10
                                           192.168.1.254
       DHCP Server . . . . . . . . . . . : 192.168.1.254
       DHCPv6 IAID . . . . . . . . . . . : 251666060
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-10-F7-21-EE-00-1E-8C-2B-1B-8D
       DNS Servers . . . . . . . . . . . : 192.168.1.254
                                           24.159.193.40
                                           68.115.71.53
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Tunnel adapter Local Area Connection* 6:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : roc.mn.charter.com
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter Local Area Connection* 7:
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
       Physical Address. . . . . . . . . : 02-00-54-55-4E-01
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : 2001:0:4137:9e50:60:1612:3f57:fe1e(Preferred)
       Link-local IPv6 Address . . . . . : fe80::60:1612:3f57:fe1e%11(Preferred)
       Default Gateway . . . . . . . . . :
       NetBIOS over Tcpip. . . . . . . . : Disabled
    10.  Remote into WHS server - WHS Server ipconfig taken (IPv6 not configured)
    Windows IP Configuration  
    Host Name . . . . . . . . . . . . : Server1  
    Primary Dns Suffix  . . . . . . . :   
    Node Type . . . . . . . . . . . . : Unknown  
    IP Routing Enabled. . . . . . . . : No  
    WINS Proxy Enabled. . . . . . . . : No  
    DNS Suffix Search List. . . . . . : roc.mn.charter.com
    Ethernet adapter Local Area Connection:  
    Connection-specific DNS Suffix  . : roc.mn.charter.com  
    Description . . . . . . . . . . . : SiS191 1000/100/10 Ethernet Device  
    Physical Address. . . . . . . . . : 00-0A-E4-86-A1-E5  
    DHCP Enabled. . . . . . . . . . . : Yes  
    Autoconfiguration Enabled . . . . : Yes  
    IP Address. . . . . . . . . . . . : 192.168.1.229  
    Subnet Mask . . . . . . . . . . . : 255.255.255.224  
    Default Gateway . . . . . . . . . : 192.168.1.254  
    DHCP Server . . . . . . . . . . . : 192.168.1.254  
    DNS Servers . . . . . . . . . . . : 192.168.1.254  
                                        24.159.193.40  
                                        68.115.71.53  
    Lease Obtained. . . . . . . . . . : Tuesday, December 29, 2009 7:11:50 AM  
    Lease Expires . . . . . . . . . . : Wednesday, December 30, 2009 7:11:50 AM
    11. Unplug WHS server cable from router - for network stability until this issue is fixed.
    I know very little about IPv6 - but this looks like it is IPv6 related - is it?  Any ideas as to next steps?
    Note:
    1. I can't remove IPV6 from all clients - the configuration of one client computer is not under my control.
    2. I am thinking of either setting the WHS server to a static IP address - or enabling IPv6 on it - but it would be great to be working from a position of knowledge that blindly trying things...any isight would be appreciated...
    Thanks,
    Message Edited by userid99999 on 01-01-2010 02:00 PM

  • Connect button in excel does not respond with server connection dialog box

    Hi all,
    I have installed Essbase 11.1.1 spreadsheet client and when I try to connect to the server from the excel add in using Essbase->Connect option, the "Essbase System Login" dialog box does not pop up. Also no error messages are displayed.
    OS is Windows XP and windows 2000 and excel version is 2000 and 2003
    I tried out with various options in essbase and in excel but nothing worked.
    Can anyone help me in this regard.
    Thanks,
    Raja

    Hi all,
    I have installed Essbase 11.1.1 spreadsheet client and when I try to connect to the server from the excel add in using Essbase->Connect option, the "Essbase System Login" dialog box does not pop up. Also no error messages are displayed.
    OS is Windows XP and windows 2000 and excel version is 2000 and 2003
    I tried out with various options in essbase and in excel but nothing worked.
    Can anyone help me in this regard.
    Thanks,
    Raja

Maybe you are looking for

  • Retaining playlists after clean reinstall of OS (all info on external HD)?

    Okay, this happens to me every single time I have to do this: I run my iTunes entirely off of an external hard drive - so everything it there including the iTunesLibrary.xml files (I also have the entire hard drive backed up on a completely separate

  • Cannot activate iPhone 4 as cannot connect to iTunes store!

    Just got my new iphone 4 but cannot use it as my main PC cannot connect to the itunes store. I tried my old laptop, but that wouldnt recognise the iphone4. So I upgraded the laptop to the latest version of itunes, and now that cannot connect to the s

  • TextEdit won't display recent files

    TextEdit won't display recent files!  THIS USED TO WORK-- but now all I see is the words (greyed-out) "Clear Menu".  Not even sure what that means. My recent files works fine in WORD and other applications that offer this.  Any comments appreciated a

  • Installing 11g database in Unix

    I was installing 11g database in Unix Port number 1521 was not free and I was hit by this issue Checking for ip_local_port_range=1024 - 65000; found ip_local_port_range=10000 - 65000. Failed <<<< In this case if I wanna use some port other than defau

  • MAIN_SHDCRE/SUBMOD_SHDDBCLONE/ADJUSTCHK_EHPI -  EXSORT_NOT_ENOUGH_MEMORY

    Hello Friends We are upgrading our ECC 6.0 system to EHP7 sp02. We are using SUM tool for the same and SUM version is 1.0 SP11, AIX 6.1 TL09, ORACLE 11.2.0.3 Our environment is installed as CI DB on different servers. I am in preprocessing stage and