G3 Pismo hangs at "Login Window Application Started"

Hello all,
I have been trying unsuccessfully to bring my Pismo back to life following replacing the (dead) PRAM battery. I took it to the Apple Genius Bar today. They were able to use their diagnostic goodies to see the hard drive, could not fix the problem, so re-installed Tiger....and it still will not boot.
When booted without anything more, it starts up fine, gets to the apple and spinning progress wheel, then goes to a blank blue screen and the hard drive stops.
When booted in Verbose mode, it hangs after printing 'Login Window Application Started' to the screen.
Of course this can't be the OS because it just got a clean re-install at the Apple store. Help?.....

It is the original HD that came with the machine (I bought it used from somebody who had taken very good care of it).
I am not saying that the HDD is the source of your issue, but you may want to consider it to be part of the issue. It doesn't matter how well it was cared for, as HDDs age their functionality decreases. The thin layer of lubricant on the platter thickens and becomes gummy with age and the interior heat of the computer. This spins out to the edges and causes the heads to stick, slowing up the drive. The hydroseal bearings almost literally float in lubricant, which also thickens with age and heat. The average life of an internal HDD is three to five years and if they survive past that range their performance continues to decline. I would certainly consider replacing the HDD.
I can't get it to boot from the CD. It gets to the login window and then that's all she wrote
That, too can be a function of age. I replaced the optical drive on my Pismo several years ago. I did the same for my daughter's Pismo. The issue could also be from a dirty or defective disk. Try a different disk to see if it works. If you have access to a second firewire Mac you can boot the computer from the optical drive of the other Mac with your Pismo in Firewire Target Disk Mode.
cornelius

Similar Messages

  • Can't fsck to get past hang at 'Login Window Starting' at start up

    Someone in the OS X forum suggested I might try posting this here.
    I have an old clamshell ibook that I upgraded (added more memory) in order to load OS X. After I loaded OS X 10.3 and started up, the updater told me that an update was available. I downloaded it and began the update...my battery died in mid update. Now when I start up, it gets to "login window starting" and stalls. I have tried Disk Utility to repair permissions and repair disk (nothing really to repair). I have used Disk Warrior and this tells me that my directory needs to be rebuilt, I have rebuilt it, restarted and the same thing happens. When I go back to disk warrior, it tells me the directory needs to be repaired and this just repeats.
    I have tried a safe startup and the start up stalls at the same "login window starting" point. I have tried starting in single-user mode and I get a long pause, then alot of characters, but the cursor never allows me to type the fsck commands. I have tried resetting the Power Managment Unit (to no avail). One of the lines that shows up when I start up in single-user mode is in yellow and says "Failed to load extension com.apple.driver.ApplePMU." Which I took to mean was a problem with the power management unit.
    To make matters worse, I have only the original 3 gb hard drive in the ibook and therefore no space to install os x with an archived copy of the system's current software. I have tried resetting PRAM and I have shut down by holding the power switch. Any suggestions would be greatly appreciated.

    Brian,
    Alas, no...this is one of the original clamshells. I have found that I can force the ibook to start up from an old OS 9 install cd and see the hard drive on the desktop/access files, so I have saved my critical data to a usb removable drive. The crisis is averted and I'm thinking of trying to get back to OS X through a series of installs and updates starting with the OS 9 install disk. If this fails, I'll just do a clean install of OS X and reload everything.
    Thanks, Chris

  • Stuck on login window at start up

    Hello. I attempted installing a security update and when I restarted my computer (G5 dual 1.8 OSx.3) it stoped loading at "login window." I tried a safe-mode restart but it still froze up at the same time. I cannot open my DVD drive to insert a disc so I was wondering what I should do? Any ideas would be greatly appreciated. Thanks!
    G5 dual 1.8   Mac OS X (10.3)  

    If you can boot into single-user mode then you might try the following:
    You will need to type some Unix commands. If you are not comfortable with this, I don't know of anything other than a re-install. But if you are careful, you should be OK. I recommend you print this out in a largish mono-spaced font so you don't miss any spaces (or add extra ones). Note that case is important.
    Be careful. Some of these commands are dangerous, since you are going to be root.
    Start up in Single-User mode by restarting the computer. After the chime press and hold down the COMMAND-S keys. You can let go the keys when you see white text on a black background. When this has finished you will see a prompt ending in '#', although there may be other messages. Type:
    /sbin/fsck -fy
    followed by a return, at the prompt and wait a few seconds for 8-10 lines of output. If the last line says repairs were carried out, repeat this command until you get a message 'The volume <yourdiskname> appears to be OK'. (If you do not get an OK message after re-running the command seven times, then the drive cannot be repaired. Do not proceed until you are able to repair the drive.) Then continue with the following lines pressing return at the end of each:
    /sbin/mount -uw /
    cd /Library/Preferences
    rm com.apple.loginwindow.plist
    rm com.apple.windowserver.plist
    cd /Library/Caches
    rm -r *
    cd /System/Library
    rm Extensions.kextcache
    cd /System/Library/Caches
    rm -r *
    reboot
    This should now take you to a proper login screen after the normal boot sequence. You should then Repair Permissions by using Disk Utility (in your /Applications/Utilities folder).

  • Windows Application Starting Point

    Does a basic (and best practice) framework (or netbeans like project) exist for a java windows application that would include menuing and initial windows classes?
    I have decided to create a application in java and it will be a windows gui application. I understand how to do this but it seems like this would be something someone else has already done. Kind of a starting point for an application. Does something like this exists? I searched online but didn't find anything. Maybe this is because I'm not sure what I'm asking for.

    I haven't seen any nice GUI frameworks for Java, beyond what Java already gives you. It would depend somewhat on what the app does. And you have to decide if you want to use Swing or SWT. Based on a previous thread, it would seem there are also some GUI builder tools out there, if you don't want to hand code it, but they won't produce very nice code; they just help prevent you from having to write it yourself. If this is your first jump into Java GUI, here is a quick Hello World app I just threw together in using Swing; it's a starting point anyway, and might help you get going:
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowEvent;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class HelloWorld {
         public static void main(String[] args) {
              // Code that affects the GUI should be run on the Event Dispatch thread;
              // Calling launchUI() using SwingUtilities.invokeLater(...) takes care of this.
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        launchUI();
         private static void launchUI() {
              final JFrame frame = new JFrame("Hello World");
              JPanel panel = new JPanel(new FlowLayout());
              JLabel label = new JLabel("Hello World!");
              panel.add(label);
              panel.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
              JMenuBar menuBar = new JMenuBar();
              JMenu menu = new JMenu("File");
              JMenuItem menuItem = new JMenuItem("Exit");
              menuItem.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent event) {
                        // This action will be fired when the Exit menu item is selected;
                        // firing off a Window Closing event is basically the same thing
                        // pressing the window close button in the corner does.
                        WindowEvent windowClosingEvent = new WindowEvent(frame, WindowEvent.WINDOW_CLOSING);
                        frame.getToolkit().getSystemEventQueue().postEvent(windowClosingEvent);
              menu.add(menuItem);
              menuBar.add(menu);
              frame.setJMenuBar(menuBar);
              frame.setContentPane(panel);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setLocationRelativeTo(null);     // this centers the frame
              frame.setVisible(true);
    }

  • Seamless window application, start from xterm ?

    Hi,
    i setup SGD and a w2k3-server to suppor seamless application - works
    nice by testing a notepad.exe application.
    Beacause of some business needs, i have to start the seamless application
    from our own x11 application. Therefore, i wrote a small bash script which
    i can start manuelly from an seamless xterm running on the SGD server:
    /opt/tarantella/bin/bin/ttatsc -nofork -user username -password secret -swm \
    -application "c:\\windows\\notepad.exe" 192.168.126.139
    the notepad will be opened, but
    a) the update of the framebuffer will not work correctly.I must move the mouse over the menu of
    the notepad application the see the menue, ...
    b) i can not see an icon on my client windows desktop
    c) minimizing does not work either.
    I moved around to start the normal linux rdesktop application using the approch from
    http://www.cendio.com/seamlessrdp
    and all works - beside of
    a) can't see the minimized application on my client taskbar
    b) can not maximize the notepad application after miminize )-:
    So, could somebody help me to find a solution for my business
    need "Starting seamless window appliction from a seamless unix-app using SGD" ?
    thanks in advance
    best regards
    Danny
    (from opensource-online.org using SGD ;-)

    AFAIK, today on mayn browse rthis may be forbidden action by default. If IE7 may allow that at all at least user must add their server into the trust zone..then they can link from html into his local HD.
    Other is classic:
    < A *HREF file:///c:\some_file>run me!</ A>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • 10.5.4 problem, Apple remote desktop - login window

    Since the update to 10.5.4 I noticed two problems (probably not related):
    1. in system.log, many lines about ARD
    Jul 1 14:28:49 ekPB com.apple.launchd[376] (com.apple.RemoteDesktop.agent[1859]): Did not die after sending SIGKILL 2910 seconds ago...
    etc. every 5 seconds
    Finally ends with
    Jul 1 14:30:08 ekPB ReportCrash[2050]: Formulating crash report for process ARDAgent[915]
    Jul 1 14:30:09 ekPB com.apple.launchd[376] (com.apple.RemoteDesktop.agent[1859]): Exited abnormally: Bus error
    Jul 1 14:30:09 ekPB com.apple.launchd[265] (com.apple.RemoteDesktop.agent[915]): Exited abnormally: Bus error
    Jul 1 14:30:09 ekPB ARDAgent [2051]: ******ARDAgent Launched******
    Jul 1 14:30:09 ekPB ReportCrash[2050]: Saved crashreport to /Library/Logs/CrashReporter/ARDAgent2008-07-01-143004ekPB.crash using uid: 0 gid: 0, euid: 0 egid: 0
    Never had this before 10.5.4
    ARD is of course activated...
    2. The machine normally operating under my administrator account (and connected to a FireWire disk used by Time Machine), at two different moments, coming back, I find my machine showing the LOGIN window ...
    in System.log:
    Jul 1 11:16:12 ekPB loginwindow[407]: DEAD_PROCESS: 0 console
    Jul 1 11:16:13 ekPB /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[1362]: Login Window Application Started
    Jul 1 11:16:17 ekPB loginwindow[1362]: Login Window Started Security Agent
    and
    Jul 1 13:39:58 ekPB loginwindow[1362]: DEAD_PROCESS: 0 console
    Jul 1 13:39:58 ekPB /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[1856]: Login Window Application Started
    Jul 1 13:39:59 ekPB loginwindow[1856]: Login Window Started Security Agent
    New login is normal and I don't find any reason to justify the end of the sessions of the connected user.
    Any Ideas ? Thanks !
    MacBook Pro core 2 Duo 2,33 GHZ 3 GB, 160 MB disk, Leopard 10.5.4 connected to ADSL by modem and Airport Extreme (last update 5.3.2 done)

    Greetings...
    Haven't found a similar thread yet, but if there is, my apologies. I have the same problem with the login, and I can't seem to fix it with a reboot. I have ran disk utilities as well as trying to get in through a remote computer. Any ideas/fixes besides reinstalling to 10.5.3 would be of a huge assistance.
    ~nathaniel

  • Login Window crashes, stuck in loop

    MacBook 2.0ghz 1GB RAM, brand new hard drive, complete erase and install of 10.5, update to 10.5.1. Works great. A few days later it no longer boots up properly. Stuck trying to open the login window. The following codes loops infinitely. I don't want to reinstall but rather find a fix. If I reinstall it may just happen again.
    Here is what it says verbose.
    /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection is NULL
    /SourceCace/loginwindow/loginwindow.m:568 CGSCopyCurrentSessionDictionary returned NULL
    ERROR | -Login1 resetDevicePermissions | CGSCopySessionlist returned NULL
    Saved crash report to /Library/Logs/CrashReporter/loginwindow

    This started happening to me. I don't suppose you found any answers eh? I am going to try booting in safe mode and repairing permissions from the DVD. (I would start up to the disk, but my optical drive is broken, go figure).
    Have you tried repairing permissions by booting for the install DVD? Please let me know if you found a solution.

  • "Login Window Starting" haults boot on iBook G4

    I'm trying to fix my friends iBook G4 that will no longer boot properly. The boot process hangs at "Login Window Starting" and I have tried several things including running fsck from single user mode (which found various errors that were fixed), resetting permissions, removing plist files and connecting it to a wired network - without any luck.
    I'm pretty sure the iBook G4 is running 10.3.x but she (my friend) doesn't know for sure. Has anyone run into this before? Is there anything else I can try without reloading the iBook? Is it possible to access the HD on this Mac from another Mac via firewire?

    Hi Eric,
    Welcome to the Discussions.
    You can access the iBook's hard drive with Firewire Target Mode. I would try repairing the drive with Disk utility and if it still won't boot, download and apply the 10.3.9 combined update again using Firewire Target Mode. It's available on the Downloads page. If that fails, do an Archive and Install.
    John

  • Login window blocks forever

    I have done a systemupgrade. Unfortunately during the upgrade my laptop shutdown (due to high temperature).
    I let the laptop cool down and tried to login again, but I just could enter my login name and the password and then the login widow blocked forever without any desktop coming up.
    I went to a textconsole, logged in and finished the upgrade (pacman -Syu) sucessfully. Then I entered "init 3" to kill the login window and started "startxfce4" without any problems. I changed my inittab to start with runlevel 3 only as a workaround.
    What can be wrong with the login window? Can anybody help?
    My /var/log/Xorg.0.log starts with:
    [   219.087]
    X.Org X Server 1.10.1
    Release Date: 2011-04-15
    [   219.087] X Protocol Version 11, Revision 0
    [   219.088] Build Operating System: Linux 2.6.38-ARCH x86_64
    [   219.088] Current Operating System: Linux lapi_acer 2.6.38-ARCH #1 SMP PREEMPT Tue May 3 07:40:34 CEST 2011 x86_64
    [   219.088] Kernel command line: root=/dev/disk/by-uuid/484885dc-96f3-4123-b2ab-ee75a61d5840 ro i915.modeset=0
    [   219.088] Build Date: 16 April 2011  12:02:01PM
    [   219.088] 
    [   219.088] Current version of pixman: 0.20.2
    [   219.088]    Before reporting problems, check http://wiki.x.org
            to make sure that you have the latest version.
    [   219.089] Markers: (--) probed, (**) from config file, (==) default setting,
            (++) from command line, (!!) notice, (II) informational,
            (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [   219.090] (==) Log file: "/var/log/Xorg.0.log", Time: Mon May  9 18:06:39 2011
    [   219.090] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [   219.090] (==) No Layout section.  Using the first Screen section.
    [   219.091] (==) No screen section available. Using defaults.
    [   219.091] (**) |-->Screen "Default Screen Section" (0)
    [   219.091] (**) |   |-->Monitor "<default monitor>"
    [   219.091] (==) No monitor specified for screen "Default Screen Section".
            Using a default monitor configuration.
    [   219.091] (==) Automatically adding devices
    [   219.091] (==) Automatically enabling devices
    [   219.091] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [   219.091]    Entry deleted from font path.
    [   219.091] (==) FontPath set to:
            /usr/share/fonts/misc/,
            /usr/share/fonts/TTF/,
            /usr/share/fonts/Type1/,
            /usr/share/fonts/100dpi/,
            /usr/share/fonts/75dpi/
    [   219.091] (==) ModulePath set to "/usr/lib/xorg/modules"
    [   219.091] (II) The server relies on udev to provide the list of input devices.
            If no devices become available, reconfigure udev or disable AutoAddDevices.
    [   219.091] (II) Loader magic: 0x7d6fa0
    [   219.091] (II) Module ABI versions:
    [   219.091]    X.Org ANSI C Emulation: 0.4
    [   219.091]    X.Org Video Driver: 10.0
    [   219.091]    X.Org XInput driver : 12.2
    [   219.091]    X.Org Server Extension : 5.0

    We cable internet users had similar problems in our neighborhood a while back. Sometimes the delay was there but more often than not, computers started OK. The system overview showed nothing wrong to the support types but one neighbor persisted and the techs found what they described as "confusing" reports on our node (takes in about four city blocks).
    They came out and worked on the node wiring and things returned to normal.
    The point is, sometimes the cable company doesn't know they have a local node problem until enough people rub their noses in it.

  • How to start a application with a login window?

    hi there
    does anyone have any idea on how to start an application with a login window? a login window is the first frame or window to be displayed when an application starts running. and only correct login id and password have been entered the real application will start. any sample out there? thank you.

    You can start a new thread by making a thread object and passing it an implementation of a runnable object. Runnable has just one method, public void run(), this is was gets executed in a second thread. perhaps the code you would use would look something like this.
    <code>
    // set up thread for login window
    new Thread(new Runnable() {
    public void run() {
    // construct your login window here
    // when you are done processing the
    // password....
    if(goodPassword) {
    authorized = true; // a global variable
    notifyAll(); // don't forget this
    else {
    System.exit(42);
    }).start();
    // control does not stop this code gets executed while
    // the above thread is running.
    // Set up main program here. This is done in the
    // backround.
    while(!authorized) {
    synchronized(this)
    { wait(50); }
    // now when the user logs in this frame pops
    // up real quick.
    myFrame.setVisible(true);
    </code>
    Hope you can figure it out.. good luck :)

  • Login Window starting hang

    A few days ago I downloaded the new security update for my iBook G4, as suggested by the auto update. After successful download and install and then rebooting like it asked, every time I restart my iBook it hangs at the 'Login Window starting' portion of the startup, even in Safe Mode.
    It isn't just slow like I have seen others say in the forum, I left it running overnight and was still at the same point this morning. I have restarted many time hoping, but have failed.
    iBook G4 Mac OS X (10.3.9)

    Thanks for the reply.
    I tried what was suggested first in that thread and didn't help. Tried the second posting, but when I get to:
    /sbin/mount -uw /
    cd /Library/Preferences
    rm com.apple.loginwindow.plist
    I get the error: rm: com.apple.loginwindow.plist: No such file or directory
    Something tells me I may end up reinstalling but I would like to get the data off of the drive first. Hadn't had a chance to copy it to my new external drive with the rush of finals last week..

  • Audigy 2: Windows XP hang at login after new drivers instal

    Hi All,
    I have found that after installing the latest version of the Audigy 2 drivers (<span class="Apple-style-span">SBAX_PCDRV_LB_2_8_000) on my Windows XP SP2, sound works just before you reboot after installation. After the installation reboot, and after you enter your password at the login screen, you hear the logon-sound, and after that XP freezes.
    I have booted into Safe mode and disabled all startup items, and Windows then boots normally. However, when I try to narrow down the fault by selecti'vely re-enabling some of the Startup items, it then hangs again (no matter which ones I enable).
    So far, the only successful startup config consists of only the CT startup items being enabled.
    If I enable ANYTHING (even a single different item each time) else Windows hangs again.
    The only solution is to select "Restore last good known configuration" before Windows boots up. Undoing the driver installation using System restore, does NOT help.
    Anyone with any ideas?
    Thanks?

    UPDATE: Just updated to SP3 and guess what? Windows hangs at login as before, despite the fact that I was using the older, up to now fully working, drivers.
    Solution? Simple! Throw the card in the bin, and enable the onboard soundcard. END of problems! These people at Creative are completely USELESS...Not wasting any more of my time on their crappy products (and programming).
    ++?
    Hi there,
    Thanks for the reply; I have already gone back to?<span class="Apple-style-span">SBAX_WBUP2_LB_2_09_006<span class="Apple-style-span">?which seems to be working OK.
    The point is however that part of the new release does not work, and I am convinced that it is related to some 'helper' application and not the main driver itself.
    Anyone else having similar trouble?
    Thanks?
    Message Edited by lordbyte on 08-02-2008 02:04 PM

  • Stalls on 'login window starting'

    Hi,
    a couple of aeeks ago, out of the blue, one morning my computer started up as normal, but whilst loading the blue progress bar stalled on 'login window starting' and won't go past there. I tried starting in safe mode and single user mode, but still the same problem. Unfortunately i don't have the original disks as i bought the computer used, so i've no idea what to do now.
    any help would be greatly appreciated =)

    Hi, Helen. Welcome to Apple Discussions.
    You are likely going to need a set of OS X 10.3 (Panther) Installation discs. Make sure you get a retail copy, and not a system-specific set.
    Meanwhile, you can try booting into Safe Mode. This will take quite awhile longer than a normal startup because it does a file check and repair of the hard disk.
    If this works you will see your normal desktop. Once completely started up in Safe Mode, try to restart normally, and go to Applications > Utilities > Disk Utility. Click on the top hard drive icon in the left sidebar and note the S.M.A.R.T. status at the bottom right of the pane. What does it say?
    Select the named boot volume in the left sidebar, ("Macintosh HD" unless you've renamed it). What is the hard drive capacity and how much space remains available on it? Repair permissions on it.
    See if you are able to do a little hard drive maintenance to help things out.

  • HELP! Stuck on "Login Window Starting"

    Hey everyone...sorry if this is gonna be a long story, but I have to share everything in order for y'all to be able to help me.
    Ok, so I went to start up my iMac G4 earlier this afternoon and it let me login and everything fine. I went to install the updates and then I restarted once finished. When it started back up the screen started to flash a little question mark "?" and it said it was missing a Mac version, so I put in my Mac OS X Panther version 10.3 Disc 1 and it started to load.
    Once the first disk was finished--the computer restarted again, but then instead of asking for Disc 2--it went to the Start up page and started to load everything. The bar gets to about 98% full, but the stops at the "Login Window starting" part. It's just sitting there doing nothing. It doesn't even get me to the "User Login page"
    PLEASE HELP!
    I would like to get back into the desktop!!!
    Thanks,
    D

    To The Apple Discussion Boards!
    If you have an iMac G4 then you really need to repost over in the iMac (Flat Panel) Includes all iMac's with PowerPC G4 700 MHz, 800 MHz G4, 1GHz, and, 1.25 GHz G4 Forums where the G4 iMac users hang out.
    This discussion area is for G5 iMac issues.

  • Stuck on "Login window starting" screen

    one night i was putting a big file, about 2-4 gb, into iphoto from my old imac and i forgot to make sure that it stayed on my external hard drive and there wasnt enough room on my main drive because they were small hard drives except for my external. iphoto said there wasnt enough room so i selected all the pics i just transfered and tried to put them back in my external but still in iphoto and then the screen dimmed a little and this message came up saying i need to restart my computer so i just turned it off because i was tired and thought i could deal with this some other time. then a week or 2 later i turned it back on and it got all the way to were it said "login window starting" and stopped about 98 percent. and i waited for a few minutes and decided to just leave it there and clean my room then i watched a movie and when it was done i checked back and it didnt move. whats wrong with it.

    Hi Ian, and a warm welcome to the forums!
    OSX will mess up the HD if space gets too low, Free space isn't really ours to use anymore.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    If that doesn't do it let us know.
    You need a minimum of 10 GB free space.

Maybe you are looking for

  • Regular Expressions in CS5.5 - something is wrong

    Hello Everybody, Please correct me, but I think, I found a serious problem with regular Expressions in Indesign CS5.5 (and possibly in other apps from CS5.5). Let's start with simple example: var range = "a-a,a,a-a,a"; var regEx = /(a+-a+|a+)(,(a+-a+

  • Contact Book in PSE 7

    Hi everyone, I am trying to add more email address's to the Contact Book in PSE 7. I follow the instructions and after entering the details click "ok" , the problem is that the address does not go into the Contact Book, it disapears somewhere into PS

  • Problem inserting Spry Content Slideshow (Wanderlust theme) Widget

    Modified widget dimensions, headers and copy to fit within designated area on website home page. Looks great in live view.  Cannot make widget work however.  Here's a live link... http://www.banners4churches.com/current/banners/cloth.php Any suggesti

  • Organizational Chart in MSS

    Dear Guru's When trying to acces the organizational chart in the MSS scenario the system returns the XML data and not a visual representation. Could you please help me. Kind regards

  • Hyperlink Color Problem

    I've built a simple website in iWeb08. My hope was to make the links Brown. While they looked that way in iWeb08 when published (to a folder or the web) they were black. I've since done a workaround and italicized all the text in the links and made t