Multiple problems with upgrading to Leopard

I am upgrading my sister's Macbook Pro from 10.4 to 10.5 and I am have a plethora of problems.
I bought the family pack of the Leopard and installed in onto two different computers [My Macbook and my mum's PowerBook]. They both installed completely fine with not a hiccup.
I started to upgrade my sister's like normal, when it had some sort of directory problem. We then restarted her computer and restarted the upgrade. Then, it complained of the disk being dirty, so I restarted her computer once more [without removing the disk because it wasn't allowing me], but it was stuck on the blue screen for quite some time where my impatience got the best of me and I restarted the computer two more times, then it finally went to the install menu, where I proceeded to try to upgrade the computer once more, but it complained of the disk being dirty.
So then I went to the menu and had the computer start up on the harddrive instead of the install CD, but now it is at her startup screen, asking for her name and password. She has entered her name and password that she uses on the computer [such as for software updates], and it has denied it.
What do we do from here?
We restart the computer, and even though the install CD is in the drive, it doesn't start the computer on it, rather just goes to the login screen now.
Please try to give any clues/advice as what to do.
And no. We didn't backup the computer before attempting this, since my two other installs were so successful. I guess I should have thought of Murphy's Law, hmm?

Do you have the ability to backup her drive now? If so, do this:
1. Hold down the "T" key on her machine, and start it up.
2. Connect it, and the backup drive to a third machine.
3. Now, copy your sisters machine to the backup, using Carbon Copy Cloner (free. Google for it)
4. After you do the copy, dismount the devices, and hold the T again, to shut down her machine.
No, before we continue, let's remove the DVD from her machine and clean it. Restart her machine, and hold down the mouse click. Wait, it takes some time. It will eject the disk. Now, take and very lightly dampen 5-6 pieces of toilet paper. Wipe the disk surface. With 5-6 dry pieces, dry it off. Get the edges, and the center hole real well.
Now, if you get this far, the machiine might start up again. You can reapply Leopard, or, do this:
1. Startup from leopard
2. Select the language
3. From the next page, go to "Tools" ad select Disk Utlity. Perform an erase and install.
4. Now, Migrate as instructed on restart, from that external backup you made with CCC.

Similar Messages

  • Having multiple problems with script - NTFS Permissions and AD Groups

    Hi, all!  I'm having multiple problems with my first script I've written with Powershell.  The script below does the following:
    1. Prompts the user for a corporate division under which a shared folder will be created, and adjusts variables accordingly.
    2. Prompts if the folder will be a global folder or an office/location-specific folder, and makes appropriate adjustments to variables.
    3.  If a global folder, prompts for the name.  If an office/location-specific folder, prompts for each component of the street address, city and state and an optional modifier.  I've prompted for this information in this way because the information
    is used differently later on in the script.
    4.  Verifies the entered information and requests confirmation to proceed.
    5.  Creates the folder.
    6.  Creates an AD OU and/or security group(s).
    7.  Applies appropriate security groups to the new folder and removes undesired permissions.
    Import-Module ActiveDirectory
    $Division = ""
    $DivAbbr = ""
    $OU = ""
    $OUDrive = "AD:\"
    $FolderName = ""
    $OUName = ""
    $GroupName = ""
    $OURoot = "ou=DFS Restructure Testing OU,ou=Pennsylvania Camp Hill 4410 Industrial Park Rd,ou=Locations,ou=Camp Hill,dc=jacobsonco,DC=com"
    $FSRoot = "E:\"
    $FolderPath = ""
    $DefaultFolders = "Archive","Customer Service","Equipment","Inbounds","Management","Outbounds","Processes","Projects","Quality","Reports","Returns","Safety","Schedules","Time Keeping","Training"
    [bool]$Location = 0
    do {
    $userInput = Read-Host "Enter CLS Division: (W)arehousing, (S)taffing, or (P)ackaging"
    Switch ($userInput)
    W {$Division = "Warehousing"; $DivAbbr = "WHSE"; $OU = "ou=Warehousing,"; break}
    S {"Staffing is not yet implemented."; break}
    P {"Packaging is not yet implemented."; break}
    default {"Invalid choice. Please re-enter."; break}
    while ($DivAbbr -eq "")
    write-host ""
    write-host ($Division + " was selected.")
    $FolderPath = $Division + "\"
    write-host ""
    $choice = ""
    do {
    $choice = Read-Host "Will this be a (G)lobal folder or (L)ocation folder?"
    Switch ($choice)
    G {$Location = $false; break}
    L {$Location = $true; $FolderPath = $FolderPath + "Locations\"; $OU = "ou=Locations," + $OU; break}
    default {"Invalid choice. Please re-enter."; $choice = ""; break}
    while ($choice -eq "")
    write-host ""
    write-host ("Location is set to: " + $Location)
    write-host ""
    if ($Location -eq $false) {
    $FolderName = Read-Host "Please enter folder name:"
    $GroupName = $DivAbbr + " " + $FolderName
    } else {
    $input = Read-Host "Please enter two-letter state abbreviation:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter city:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter street address number only:"
    $FolderName = $FolderName + $input
    $GroupName = $DivAbbr + " " + $FolderName
    $FolderName = $FolderName + " "
    $input = Read-Host "Please enter street name:"
    $FolderName = $FolderName + $input
    $input = Read-Host "Please enter any optional information to appear in folder name:"
    if ($input -ne "") {
    $FolderName = $FolderName + " " + $input
    $OUName = $FolderName
    write-host
    write-host "Path for folder: "$FSRoot$FolderPath$FolderName
    write-host "AD Path: "$OUDrive$OU$OURoot
    write-host "New OU Name: "$OUName
    write-host -NoNewLine "New Security Group names: "$GroupName
    if ($Location -eq $true) { write-host " and "$GroupName" MGMT" }
    write-host
    $input = Read-Host "Please confirm creation of new site/folder: (Y/N) "
    if ($input -ne "Y") { Exit }
    write-host
    write-host -NoNewLine "Folder exists: "; Test-Path ($FSRoot + $FolderPath + $FolderName)
    if (Test-Path ($FSRoot + $FolderPath + $FolderName)) {
    Write-Host "Folder already exists! Skipping folder creation..."
    } else {
    write-host "Folder does not exist. Creating..."
    new-item -path ($FSRoot + $FolderPath) -name $FolderName -itemtype directory
    Set-Location ($FSRoot + $FolderPath + $FolderName)
    if ($Location -eq $true) {
    $tempOUName = "ou=" + $OUName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "OU exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "OU already exists! Skipping OU creation..."
    } else {
    write-host "OU does not exist. Creating..."
    New-ADOrganizationalUnit -Name $OUName -Path ($OU + $OURoot) -ProtectedFromAccidentalDeletion $false
    $GroupNameMGMT = $GroupName + " MGMT"
    if (!(Test-Path ($OUDrive + "CN=" + $GroupName + "," + $tempOUName + $OU + $OURoot))) { write-host "Normal user group does not exist. Creating..."; New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    if (!(Test-Path ($OUDrive + "CN=" + $GroupNameMGMT + "," + $tempOUName + $OU + $OURoot))) { write-host "Management user group does not exist. Creating..."; New-ADGroup -Name $GroupNameMGMT -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    # $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    write-host $BIUsersSID.Value
    # out-string -inputObject $BIUsers
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $objUser = New-Object System.Security.Principal.NTAccount($ADGroupName)
    $objUser.Translate([System.Security.Principal.SecurityIdentifier]).Value
    write-host $ADGroupName
    write-host $objUser.Value
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    $ADGroupName = "JACOBSON\" + $GroupNameMGMT
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    } else {
    $tempOUName = "cn=" + $GroupName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "Group exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "Security group already exists! Skipping new security group creation..."
    } else {
    write-host "Security group does not exist. Creating..."
    New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ($OU + $OURoot)
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $FolderACL.SetAccessRuleProtection($True,$True)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"Modify","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    My problems right now are in the assignment/removal of security groups on the newly-created folder, and the problems are two-fold.  Yes, I am running this script as an Administrator.
    First, I am unable to remove the BUILTIN\Users group from the folder when this is an office/location-specific folder.  I've tried to remove the group in several different ways, and none are having any effect.  Oddly, if I type in the lines directly
    into Powershell, they work as expected.  I've tried the following methods:
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    In the first case, the script goes through and has no apparent effect because afterwards, I do a get-acl and the BUILTIN\Users group is still there, although when looking through the GUI, inheritance appears to have been broken from the parent folder.
    In the second case, I get the following error message:
    Exception calling "RemoveAccessRuleAll" with "1" argument(s): "Some or all identity references could not be translated."
    At C:\Users\tesdallb\Documents\FileServerBuild.ps1:110 char:5
    +     $FolderACL.RemoveAccessRuleAll($Ar)
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : IdentityNotMappedException
    This seems strange that the local server is unable to translate the SID of a BUILTIN account.  I've also tried explicitly putting in the BUILTIN\Users SID in place of the variable in the New-Object line, but that gives me the same error.  I've
    also tried the solutions given in this thread:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ad59dc58-1360-4652-ae09-2cd4273cbd4f/remove-acl-issue?forum=winserverpowershell and at this URL:
    http://technet.microsoft.com/en-us/library/ff730951.aspx but these solutions also failed to have any effect.
    My second problem is when I try to apply the newly-created security groups, I also will get the "Some or all identity references could not be translated."  I thought I had found a workaround to the problem by adding the -PassThru option to
    the New-ADGroup commands, because it would output the SID of the group after creation, however a few lines later, the server is unable to translate the account to apply the security groups to the folder.
    My first Powershell script has been working well up to this point and now I seem to have hit a showstopper.  Any help is appreciated.
    Thanks!

    I was hoping to stay with strictly Powershell, but unless I can find a Powershell solution, I may resort to ICACLS.
    As for the problems with my groups not being translatable right after creating them, I think I have solved this problem by using the -Server parameter on all my New-ADGroup commands and this example code seems to have gotten around the translation problem,
    again utilizing the -Server parameter on the Get-ADGroup command:
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    # Add the new normal users group to the folder with Read and Execute permissions
    $GroupSID = Get-ADGroup -Identity $GroupName -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    # Add the management users group to the folder with Modify permissions
    $GroupMGMTSID = Get-ADGroup -Identity $GroupNameMGMT -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupMGMTSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    Going this route seems to ensure that the Domain Controller I'm creating my groups on is the same one that I'm querying for the group's SID to use in the FileSystemAccessRule.  It's been working fairly consistently.
    Still having issues with the translation of the BUILTIN\Users group, though. 

  • Multiple problems with Mail

    Here is the setup:
    iMac Intel running 10.4.8
    Mail 2.1.1
    seperate user accounts, each with their own email address
    email is valornet.com (local ISP), set up to download to Mail
    Multiple problems with one of the user accounts (not affecting the others):
    1. Multiple copies in the inbox of the same message. These are brand new, not a week old as some other threads have mentioned. When I go to Preferences/Accounts/Advanced I have already clicked the "Remove Now" button, also the "Remove copy from server..." is checked.
    2. Mail will not stop retrieving new mail. The circle thing next to the Inbox on the left just keeps spinning, and spinning, and spinning...
    3. Cannot quit Mail. Have to go in Activity Monitor and Force Quit.
    4. My trash folder is gone.
    If anyone can help me clean up this mess, I would appreciate it.

    Verify/repair the startup disk (not just
    permissions), as described here:
    Th
    e Repair functions of Disk Utility: what's it all
    about?
    Minor bitmap problem needed fixing; fixed.
    Go to Apple Menu > System Preferences >
    Network, choose Network Port
    Configurations from the Show popup menu,
    and make sure that the configuration used to connect
    to Internet appears at the top of the list.
    It was showing Bluetooth first and ethernet 2nd; I moved ethernet to the top.
    In Mail, open Window > Activity Viewer. What
    do you see Mail doing there? Actually, you may be
    able to avoid having to force quit Mail by canceling
    whatever it’s doing (by clicking on the red stop icon
    of the activity).
    "Fetching new mail
    Fetching 5 of 5: updates on buses - Haskell Middle School"
    blue bar is moving, red stop icon is bright. I clicked on the stop icon and it "grayed out" but Mail did not stop the spinning circle next to the inbox. Still had to force quit.
    What are your Mail > Preferences > Accounts >
    Mailbox Behaviors > Trash settings?
    Trash can is back! One problem solved...
    Do you have any Mail plug-ins or any system utilities
    that could interfere with Mail? In the Finder, go to
    each of the following folders (if they exist). What
    do you see there?
    /Library/InputManagers/
    ~/Library/InputManagers/
    /Library/Mail/Bundles/
    ~/Library/Mail/Bundles/
    None of the above folders exist.
    In the user's ~/Library/Mail/ folder (the user with the problems), she has:
    DefaultCounts
    Envelope Index
    LSMMap2
    MessageRules.plist
    MessageRules.plist.backup
    OpenedAttachments.plist
    SmartMailboxes.plist
    and the following folders:
    Mailboxes
    [email protected]
    Signatures
    The Mailboxes folder has two more folders inside:
    Deleted Messages.mbox
    Outbox.mbox
    The POP-... folder has the following folders inside:
    Deleted Messages.mbox
    Drafts.mbox
    INBOX.mbox
    Sent Messages.mbox
    and one file:
    MessageUidsAlreadyDownloaded2
    Incidentally, I now have 9 copies of the same email in my inbox and 7 copies of another. They are multiplying like rabbits!
    Thanks for your help so far.
    17" iMac (intel)   Mac OS X (10.4.8)  

  • Multiple problems with PSE10 Organizer

    I have Photoshop Elements 10 that I am using with Windows XP with Service Pack 3, a Pentium 4 CPU with 3 GHz, 2 GB of RAM and 48.6 GB of free disk space. I have had multiple problems with Organizer since I started using it.
    When I first got PSE10, I imported 8 years of my photos into one catalog in Organizer. I'm not sure how many images were included in this catalog but from what I've read, there's no limit to the number of images that can be placed in a catalog.
    Question: Is there any limit to the number of images that can be put into one catalog?
    Catalog A
    Problem 1) People recognition didn't work. When I tried to find people for tagging, the feature didn't work. After researching the problem online, I found that others who had the same problem solved it by rebuilding the catalog a few hundred images at a time. I deleted the original catalog with all of my images and created a new catalog with just 800 images from this year. Then, people recognition worked, and I was able to tag people. The only other feature that I have used in Catalog A is that I have edited a few images to improve exposure. I have not rated images, stacked them, renamed them or created albums. With this catalog, the Organizer and the Editor still work together so when I select a photo in Organizer to fix, the Editor opens up with the photo for editing like it is supposed to do.
    Catalog B
    I created another catalog that had about 900 different images from a European tour. I deleted some of those images so there are now 760 images in this catalog. At first, all the Organizer features seemed to work fine in this catalog. I was able to pull photos from Organizer to fix in the Editor. I rated all the images, stacked and renamed some photos and created several albums under an album category.
    Problem 2) A couple of days ago, the Organizer and the Editor stopped working together. Now, when I select a photo in Organizer and click on Fix, Edit, the Editor window comes up but the photo does not appear in Editor. The only way I can get an image into Editor is to pull it directly into Editor. Then, when I want to save it as a Version Set I have to choose File> Organize Open File in order to save the image as a version set.
    Question: How do I get the Organizer & Editor to work together again?
    Problem 3) The Exif data has disappeared on quite a few of the images in Catalog B even though the Complete radio button is highlighted under the Properties panel. Some of those images were never edited or re-saved.
    Question: How do I get the Exif data back into Properties.
    Problem 4) Yellow question marks continue to appear on the top left of some images even though these images have not been moved. The Organizer searches for the "missing file" and finds it quickly but why is it "missing"? I have gone through the albums in this catalog, completed the missing file searches on all the images so that no yellow question marks appear and when I go back to the catalog the next time I find the yellow question marks are there again!
    Question: Why does Organizer think the files are missing? Why isn't the file location remaining the same?
    Problem 5) When I re-opened Catalog A with the general 2012 images, I got a message that my watched folder had new photos to import. When I clicked on ok, the next window brought up 3 photos that were already in Catalog B of my European tour that were taken in September. Somehow, the Date Created and the Dated modified had been changed from 9/12 to 11/12 so the Organizer thought they were new images when they were not.
    Questions: Shouldn't the Date Created remain constant?  The Date Created does not seem to represent the date the picture was taken, so what does that date represent? How can I keep the date created from being changed?
    Both Catalogs
    All of the images in both catalogs show creation dates that are later than the date modified, (example: date created of 6/12 and a date modified of 3/12).
    Question: How is it possible that the date created is later than the date modified?

    Hey Paysonite,
    A lot of questions hmm!!! Let me try to answer few of them.
    Question: Is there any limit to the number of images that can be put into one catalog?
    Ans: No, you can import as many images in catalog you want. Just to add, as the size of catalog grows, Organizer's perfromance will be affected.
    Question: Why does Organizer think the files are missing? Why isn't the file location remaining the same?
    Ans: As you mentioned in your comments, you have deleted some files (i assume from explorer). But these deleted files are still present in Organizer. Since the deletion happened outside the organizer, so Organizer is unaware of the deletion. So when organizer tries to read the files (which were deleted), Organizer is unable to find then and thus thinks that files are missing.
    Questions: Shouldn't the Date Created remain constant?  The Date Created does not seem to represent the date the picture was taken, so what does that date represent? How can I keep the date created from being changed?
    Ans: Date created represents the date on which the files was created on your files system (or into OS). It is not date when the images was shot (actual shot date is Date time Original in Organizer).
    Question: How is it possible that the date created is later than the date modified?
    Ans: A simple way to do it is-Suppose you have an image which was brought/copied on July (i am explaining this with the help of month only. Assume date to be 1st and year to 2012). Now change the system date to August. Edit this image in Editor (without creating a version set for easy illustration). Now date created is July and date modified is Aug.
    Copy this fine on flash drive/pen drive. Delete the original file from windows. Change the system date to Sept. Now copy the file in windows and see its properties. It has Date created as Sept and date modified as Aug, which answers you question.
    I am unable to fully understand your remaining questions. Please elaborate.
    Also please let me know if you need more info with above answers.
    ~Andromeda

  • Multiple Problems with Toshiba Satellite A505-S6980 laptop??

    Hi,
    We purchased the Toshiba Satellite A505-S6980 laptop at Best Buy about a week ago.  However, we seem to be having multiple problems with it, that I wouldn't have expected from a brand new Toshiba. 
    Problems:
    Whenever I'm in Mozilla Firefox browser, it crashes 90% of the time.  Firefox was always my favorite on our previous computer, and still is, I just can't use it because it continually crashes. 
    In Outlook, whenever I try to open a message or reply, or basically any general command, it pops up an error message that says, "Could not install the custom actions," and then does whatever I'd wanted it too.  It's a pain, as we do a lot of email and calendar through Outlook.
    In Outlook, when I tried to import our Contacts, it says that we do not have the appropriate permissions to access the files.  We are the only user account on this computer.  We don't do seperate ones for each family member; we just turn on the PC.
    It seems to me like the internet crawls on this computer.  Every time we try to play a video (e.g. ABC, CNN, Youtube), it won't buffer.  It just stops and starts all throughout the video about every 3 seconds.  HUGE nuisance.  We watch a lot of videos. 
    Minor issue:  In Firefox, before it has crashed that is, on my old computer I used to be able to type "cnet" without the quotes into the address bar, and it would take me to www.cnet.com.  If it couldn't find the page, it would take me to my default search engine's page (Yahoo) with the search results.  On this one, if I type anything into the address bar (like search terms/keywords) it bring up search results with a My Start Incredimail search engine.  I want my Yahoo search engine, and I want it to find the page if it can. 
    I cannot seem to get the Aero Flick (I think) to work.  That was one of the main things I was looking forward to, but I can't figure out how to do it.
    It seems to me like the Windows Explorer freezes a lot.
    There have been multiple times when I'm typing that the keys don't work.  Like I would have to press the A key about 10 times to get it to show up on the screen once.  It's hit and miss and doesn't do it all of the time.
    This isn't a problem - just a question.  Is it best to leave the computer plugged in all of the time if it's stationary?  Or once it's fully charged, should I unplug it and let the power run down, and then re-charge it?
    **CLARIFICATION:  It's not Outlook Express, it's Microsoft Office Outlook 2007.  The one that you have to pay for.  Surely it works with 7, considering it's Microsoft?!?!
    If you can help me answer any of these problems/questions, I would really appreciate it.
    Have a safe and Merry Christmas!

    Yes, everything was fine with Firefox.  However, I have uninstalled it, and am just using Internet Explorer for now.
    Thanks for battery info...
    I'm well within the return window, but overall really like the laptop.  I've put a lot of time into it, and just want it to work right if possible.
    Thanks for the info.
    ScottinFla wrote:Concerning Firefox, have you checked your add-on list for any faulty plug-ins or extensions? Try disabling them and see what happens. Also, that search engine you mentioned may have somehow been installed on your machine. Have you checked the "Manage search engines..." window available from the search bar? Check your add-ons as well. You could always reinstall Firefox from scratch.
    As for the battery, it may not be best to continually run down the battery - followed by a long charge. Once a month or so should be fine. Otherwise, just try to give the battery some exercise every now and then.
    Are you still within the return window? Your unit may have a bad install, some bad RAM, or...
    I have the same model and it works just fine.

  • Problems with ViaVoice under Leopard, especially key mapping problems

    ViaVoice's behavior has changed considerably under Leopard. First I will discuss the key mapping problem, since I'm eagerly looking for an answer to this problem. At the end of this post, I will voice some of the other problems I've experienced for those who may be interested. The key mapping problem may be specific to the fact that I use a foreign keyboard with a US version of ViaVoice.
    INTRO:
    I have used ViaVoice on my Mac for years, more or less without problems (ViaVoice's bugginess is notorious).
    Those who know ViaVoice will know that one has two general options for dictation. One can dictate into ViaVoice's so-called SpeakPad, which allows special formatting, editing and dictation error correction within the dictated text, or one can dictate into "external" software such as Microsoft Word, in which case ViaVoice just sends a string of characters to that software. SpeakPad appears to make strong use of the operating system's built-in functionality for character formatting, document formatting, etc.
    *MY PROBLEM*
    I have a German keyboard on my PowerBook, yet dictate in US English. When I dictated into SpeakPad under Tiger, all characters appeared correctly. However, when I dictated into Microsoft Word using Tiger, I had to switch the keyboard mapping from German to US to get all characters (that means including the characters that are located at different positions on a German keyboard than they are on a US keyboard such as y, z, apostrophes and parentheses) to appear correctly.
    Under Leopard, things have changed. Now it doesn't matter whether I dictate into SpeakPad or Word; the results are the same and many characters do not appear correctly.
    If set to a German keyboard, y and z appear as expected. To name a few irregularities:
    "(" appears as ")"
    ")" appears as "="
    apostrophes appear as "#" and
    ";" appears as ","
    If set to a US keyboard, y and z are interchanged. "(" and ")" appear as expected. Apostrophes appear as "\" and ";" appears as ","
    By comparison, if typed (as opposed to dictated, as in the examples above) "correctly" (i.e. based on the letters printed on the keyboard) on a German keyboard set to imitate a US keyboard:
    y and z are interchanged
    apostrophes appear as "|"
    "(" appears as "*"
    ")" appears as "(" and
    ";" appears as the symbol for "less than"
    Since I don't have a US keyboard, I can't say how it would behave if set to imitate a German keyboard, i.e. if there's a correlation to the results I get when I dictate.
    Since I was previously able to dictate correctly into SpeakPad by setting the keyboard to "German" and into Word by setting the keyboard to "US," I presume that this is a problem in Leopard, not ViaVoice.
    *OTHER PROBLEMS WITH VIAVOICE UNDER LEOPARD*
    In addition to the aforementioned key mapping problems (that may be specific to those of us with foreign keyboards), ViaVoice appears to have lost considerable functionality in Leopard. I cannot access SpeakPad's Preferences and the correction window. Moreover, the traffic-light like window buttons have disappeared from the VoiceCenter (although they work if you click where they should be). SetupAssistent appears to function.
    I've written to Nuance about these problems, but have little hope that they will invest the time in producing a patch since they haven't released any updates since 2003.

    Thrums1,
    I've never had to "register" ViaVoice after updating the system. I thus suspect you haven't fully followed my above, three-step advice (particularly step 3).
    1) Reinstall ViaVoice from CD.
    2) Update to the latest version (using the patch downloadable from Nuance's website).
    3) Replace the “temp” and “users” folders (in the "ViaVoice" folder at the upper level of your home directory) by a previous copy thereof. When I say previous copy, I mean a copy from when ViaVoice was still working properly, e.g. a copy from when it was running under Tiger.
    As I said, I've gotten ViaVoice to survive several system updates by following the above steps. To my knowledge, the last step is critical since it saves you from having to reconfigure ViaVoice under the new operating system (in this case Leopard). I suspect that ViaVoice is crashing on your system because it's trying to start some module of the SetUpAssistant that is incompatible with Leopard (as many are). If you instead use old copies of the "temp" and "users" folders (from the previous system), then ViaVoice doesn't have to go through the initial "registration" process; ViaVoice doesn't need the SetUpAssistant; and all is (more or less) fine.
    Good luck!
    BTW, to my knowledge, Dictate only runs on Intel Macs. It thus won't run on a G4 iBook, just as it won't run on my PowerBook G4.

  • Problem with upgrade Extension Manager 6.0.4

    Problem with upgrade Extension Manager 6.0.4, code error U44M1P7

    What version of the Adobe Application Manager are you using?  Which operating system are you using?

  • Has anyone had problems with upgrading iPhoto. I am, it's stops at 5 0f 9 and will not finish!! Can someone please help me out?

    Has anyone had problems with upgrading iPhoto? I am, it stops at 5 of 9 and just stays there and won't finsih. Can someone please help me out?

    iphoto upgrading: Apple Support Communities
    iphoto upgrade hangs: Apple Support Communities

  • Problem with upgrade Windows 2003 to Windows 2008

    Hi,
    I have problem with upgrade Windows 2003 to Windows 2008 R2
    When I run installer it check compatibility drivers and programs after that appear message that I need to uninstall  "adaptec storage manager" but I already remove this driver from the system and registry.
    Any ideas to solve this problem?
    My server it's IBM System x3500
    Regards 

    Not sure if this issue was solved or no longer relevant, but I had the same issue with the same IBM x3500 server type.
    Based on the SETUPACT.LOG output from the Server 2003 to 2008 upgrade compatibility check, the problem was that the driver AACMGT.SYS is unsigned, and hence not acceptable for running in Windows Server 2008.
    AACMGT.SYS is a part of IBM ServeRAID but unfortunately, even the latest versions 9.3 to not seem to update or replace this file. It's also possible this file is a residue of an earlier, deprecated version of ServeRAID, I don't know.
    In the end, to get passed the Upgrade check hard stop, I did this, though I'm not sure if all steps are needed:
    0. Make sure you have a system backup in case you break something doing this steps. If you do break your system and cannot recover from backups, it's not my fault!
    1. Go into Device Manager --> Disks and check the Driver properties for the disks on your system. You might have AACMGT.SYS listed for some/all disks and also listed as unsigned. 
    2. Uninstall IBM ServeRAID from the system, just in case
    3. Do into Device Manager and go under Disks, and manually Uninstall all the disks in the list including "AdaptecArray SCSI Disk" and some other secondary. I did not reboot right away.
    4. Go to console, go into C:\WINDOWS\SYSTEM32\DRIVERS, and rename AACMGT.SYS to something else. 
    5. Reboot the system and hope it still boots. Go into Device Manager -> Disks and make sure that AACMGT.SYS is no longer listed.
    6. Run the 2003 to 2008 Upgrade process again. The Compatibility checker should no longer flag "Adaptec Storage Manager" as a blocker.

  • Have to re install elements 11 & premiere elements 11. cause problem with upgrade windows 8.0 to 8.1

    have to re install elements 11 & premiere elements 11. cause: problem with upgrade windows 8.0 to 8.1.    Lost all software and data.
    how to re install elements11. (downloads purchased in your store 2013-05)
    [email protected]

    have to re install elements 11 & premiere elements 11. cause: problem with upgrade windows 8.0 to 8.1.    Lost all software and data.
    how to re install elements11. (downloads purchased in your store 2013-05)
    [email protected]

  • Problems with upgrading firmware in Zen Micro 4

    I am currently having a problem with upgrading the firmware on my Zen Micro 4 GB. The Zen Micro seems to hang right after the first reboot, therefore not finishing the whole upgrade. I am currently trying to upgrade to 2.2.02. It seems that whenever I try to reboot the Zen Micro while it is connected via USB, it hangs at the Creative Logo and I have to end up resetting the system. Oddly enough, I have a second Zen Micro that I was able to upgrade the firmware with no problems whatsoever. Any suggestions?
    P.S. I do have Windows XP SP2 with WMP 0 installedMessage Edited by Hubmasterflex on 0-07-2006 04:23 AM

    Try using reload OS in the recovery mode to erase the current firmware, then connect to the PC and reload. You take a risk doing this though as if the firmware won't reload from the PC you'll be left with an effecti'vely useless player, and you'll have to contact support to get a replacement.

  • Multiple Problems With 10.4.11 Upgrade

    Having just installed the 10.4.11 upgrade I am experiencing multiple problemss with permissions and file corruption since the upgrade. Files are inaccessible to users even after resetting permissions via sharing in Workgroup Manager. W e are a prepress environment running Quark with illustrations in Illustrator and Photoshop. We experience file corruption when collecting Quark files via Flighttcheck. Even copying simple Word text files to the Xraid proves troublesome as the file is reported as unreadable once on the Server. What is the problem with the latest upgrade? WE are virtually shut down until we resolve this problem.

    I also seem to have mouse problems with 10.4.11, turning off airport gets around it for now:
    http://discussions.apple.com/message.jspa?messageID=5901275#5901275
    I have also seen the error code mentioned by Jerremmy:
    http://discussions.apple.com/message.jspa?messageID=5866126#5866126
    The following is yet to be confirmed:
    http://www.ctforumgroup.com/forum/viewtopic.php?f=108&t=2190
    Also, others have seen 4SNS with TCOD and TCOP error codes, rather than TGOD:
    http://discussions.apple.com/message.jspa?messageID=5829544

  • Problems with games after leopard upgrade

    After i upgraded to leopard iv been having trouble with some games (like bf 2142), they wont open, as soon as i click on the game it quits right away, anyone having this problem too? or anyone have any solutions??
    :?

    Good morning Mogens Pedersen
    Thanks for using our forum
    I am a Cisco network support engineer, I have a recommendation, before you  upgrade any device in the future. Always keep in mind to make a backup of your data, in this way if you have to reset the device to factory settings you will not lose that information. Having said that, reset the router to the fabric configuration using the back little button, remember when you do that, you are going to loose your current configuration.
    Also here I leave a link for you to download the firmware rescue utility for your router:
    http://www.cisco.com/cisco/software/release.html?mdfid=282414010&release=4.0.0.7&relind=AVAILABLE&softwareid=282465800&rellifecycle=&reltype=latest
    I hope you find this answer useful, if it was satisfactory  for you, please mark the question as Answered
    and please rate helpful posts 
    Greetings,
    Johnnatan Rodriguez Miranda.
    Cisco network support engineer

  • Problems with most recent Leopard upgrade

    Since the most recent upgrade of Leopard, my dual G5 is having major issues: external drives disappear, CS3 will not boot, says it is locked but it is not. Virex software crashes half way thru. iphoto buddy will not open new libraries. My install of Leopard went fine but now I am ready to go back to Tiger.

    Jo Ann Crebbin wrote:
    Since the most recent upgrade of Leopard, my dual G5 is having major issues: external drives disappear, CS3 will not boot, says it is locked but it is not. Virex software crashes half way thru. iphoto buddy will not open new libraries. My install of Leopard went fine but now I am ready to go back to Tiger.
    Virex is not compatible with Leopard. When I migrated, I received a warning to that effect. It's a well-known issue - it crashes partway through a scan.
    It has been replaced by MacAffe's VirusScan 8.6
    Story:
    http://www.jaharmi.com/2007/11/23/mcafeevirusscan_86_installationleopard
    download:
    http://www.versiontracker.com/dyn/moreinfo/macosx/10355

  • Crazy problems after upgrading to Leopard.  Can you help?

    I have a PowerMac G5, 1.8 dual processors. It came with 256MB of RAM, which I removed and replaced with 2GB of Crucial RAM soon after purchasing the computer nearly four years ago. I added a 250GB Maxtor hard drive to the 60GB original two years ago. I used the Maxtor drive for storage. Everything ran perfectly before Leopard and iLife ’08 installation.
    Prior to installation, I cleaned off the 250GB Maxtor hard drive, and then installed Leopard to it using only the installation instructions on the disk. (FYI, I bought both programs from a local Apple store.) When prompted, I had it bring over the software and files from the original hard drive. My idea was to clean off the original, 60GB hard drive, and use it for storage. Due to problems galore, I have not done that.
    When I waken my computer from an all-night Sleep mode, the following happens:
    iWeb ’08 will load, but I cannot save anything to it.
    Safari will load and immediately freeze.
    Firefox will not load because it reports that it is already open.
    Entourage will open initially, but then report it cannot open virtually any functions.
    Word for Mac will open, but nothing can be saved.
    iPhoto will open, but it cannot be used.
    This is how it goes for every program—none are useable.
    Though I attempt to use the Force Quit option, programs will not close. I am forced to do a hard quit—holding down the power button until the computer powers off. Upon reboot, all programs work fine. The trouble seems to occur after going into Sleep mode.
    Just now I used the Disk Utility program, which upon completion, reported the following:
    Verify permissions for “Whopper” (the name of the 250GB hard drive)
    ACL found but not expected on “Library.”
    Permissions verification complete
    Repairing permissions for “Whopper”
    ACL found but not expected on “Library.”
    Permissions repair complete
    I am now running a test on the RAM, using Rember, as suggested in another thread. –All tests passed.
    So, there you have it.
    Suggestions?

    TheRever wrote:
    You're not kidding, are you? Can I choose door number 2? To say that I'm disappointed and disillusioned would be insufficient. I've done precisely what I learned at a local Apple Store.
    Sorry, I'm not kidding. But it isn't that big a deal. You are probably just frustrated and disillusioned based on your experiences with your flaky install. Try to remember how you felt about upgrading to Leopard before. That optimism is still warranted, with a little effort.
    I'm sure Apple's official instructions work fine 99% of the time, but there is no way that Apple or anyone can guarantee an automatic upgrade. That is why Apple always says to have a good backup before any upgrade.
    Would you translate what you instructed me to do? I don't know how to re-partition my original drive, nor do I know how to do a default MacOS X installation. It reads like I'm going to get a virtually naked machine, with none of the settings or files from before. Is that correct?
    Yes. That is correct. You start with a naked drive and install everything from scratch. Your machine will be "as if" it came from the factory with Leopard installed.
    You can boot off of the Leopard install DVD and run Disk Utility from the Tools? menu and delete partition on your "Whopper" drive. Then, return to the installer and just accept all the defaults. You don't have to worry about "upgrade install" vs. "archive & install". This will give you a fresh system.
    Is it possible to wipe-out what I have done on the newer hard drive (250GB), and go back to the original 60GB drive? Is it possible to start again, or are the files on that drive now converted to the new? Does that make sense?
    It would be ideal if you could throw away everything on the new drive. You can always copy off any new or modified files and restore those later. It sounds like you haven't been able to do much on Leopard anyway. It also sounds like you still have your 60 GB original, pre-leopard backup, which is a very good thing.
    There may be some people who will tell you to do an "Archive and Install" to install a new 10.5. That will probably work too. You will have to resist the temptation to go into the archived area and just start copying files back. That would likely put you right back where you started. The same goes for any of the "migration" tools. For all I know, they work great 99% of the time. I've never tried them and I've had problems 0% of the time. The reason I always recommend a re-partition is because it guarantees you have a factory install. It makes restoring more difficult, but I consider that to be a good thing.
    Here is my recommendation:
    1) Make sure you have a backup of your current boot drive
    2) Boot from from install DVD
    3) Use Disk Utility to re-partition boot drive
    4) Reinstall MacOS X using default options
    5) Reinstall any applications
    6) Setup user environment the way you want
    7) Copy over your old user and data files into a quarantined location.
    8) While maintaining backups of your new preferences and settings files, selectively restore your old files. These are things like your old Address book, your old Mail folder, and 3rd party application preferences files that contain license codes, etc.
    Step 1-5 will take a couple of hours. Step 6, 7, and 8 may take a few days to get sorted out the way you want.

Maybe you are looking for

  • Error with flex 4.5.1 using Squiggly

    these sample I wrote but give me errors i use flex 4.5.1 i copy it from Squiggly package what wrong <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"                xmlns:s="library://ns.adobe.com/flex/spa

  • Switched from Safari to Firefox so I could read Yahoo mail--how do I find all my Yahoo bookmarks?

    Yahoo! Mail stopped working w/ Safari, so I just installed Firefox. I'm trying to find the many BOOKMARKS that I saved, but I can only find them when I go back into Safari. Have they been moved to Firefox as well? If not, is there a way to move them,

  • Deletion of customer include in exit

    I have implemented an FM exit by implemention the include Z* in it. Now there is no need for this and i want to revert back the orginal. I have removed the code which i have written the in  the Z* include but i also want to delete this Z* include can

  • Usage of BAPI BAPI_ACC_ACTIVITY_ALLOC_POST with Plan-Tarifs

    Hello together, I have a question: We want to use BAPI BAPI_ACC_ACTIVITY_ALLOC_POST but only with plan-tarifs and not with actual tarifs. Is it possible? Kind regards Udo

  • Retention policy and deletion of archived files

    hello, I 'am a novice DBA having a backup question. Our retention policy is set to 14 days; weekly we have full database backup; daily we have an incremental backup. See scripts below. The drive "\\is003s012\rhea\rman" where the backup files reside h