Issues with installing simple games...

*This is what I get when I am almost finish installing the game*
The Installation Finished With Errors
Check the installation log at /Users/admin/Library/Logs/Install_YoudaSushiChef log for more details.
*This is what I get when I go to my Log*
Installation started on 2009-07-17 06:14:07 -0500
Install_YoudaSushiChef
Error installing "YoudaSushiChef.app" to "/Applications".
Error = Creating directory at "/Applications/YoudaSushiChef.app" failed.
Error installing "helper" to "/Applications/YoudaSushiChef.app/Contents/MacOS".
Error = Could not create directory /Applications/YoudaSushiChef.app".
Installation finished on 2009-07-17 06:16:16 -0500
what do I do, any game I download it says the same thing...
Message was edited by: mac email

Are you doing this as an admin account? Non-admin users do not have write permissions to the Applications directory. The installer should be prompting you for a password, so you need to enter an admin password there.
If not, does the installer have the option of changing the installation location? If it does, just make a games directory in your user directory and install to there - you have full read and write permissions over you home folder and it's subfolders, so it will be able to create the required directories.

Similar Messages

  • I am having issues with installing a Ricoh MP C2500 printer on Lion in my MBPro Ci7

    I am having issues with installing a Ricoh MP C2500 printer on Lion in my MBPro Ci7  Where is appletalk or the replacement?
    My it guy has set all the Ricoh (The only brand of printers we use.) to enable Appletalk.  I am unable to see how to enable appletalk or an equivalent on Lion and have spent 3 hours now searching for it.  If I connect to the printer via TCP/IP it prints random characters.  I have a Ricoh working for another moddle but I am needing to use this machine.  HELP!!!!!

    AppleTalk has been gone eons ago. Connect via USB and see what happens. If you are networking the printer then advise on your connection set up.

  • I have CS2 and would like to do Image Stacking.    I understand CS3 allows this.  correct?     Am I wiser to purchase CS3 upgrade.  Am I going to run into issues with install?

    I have CS2 and would like to do Image Stacking.    I understand CS3 allows this.  correct?     Am I wiser to purchase CS3 upgrade.  Am I going to run into issues with install?

    Well, I refuse to sign up to pay Adobe a monthly tribute for life too, but that doesn't mean we are limited to CS3.
    I'm staying with CS6.
    Adobe still sells a perpetual-license to Photoshop CS6 without the subscription model, but it's $700 for the Standard version and a cool $1,000 for the Extended version.
    You haven't mentioned your platform, Macintosh or Windows, so make sure CS3 or any other obsolete version you buy actually runs on a modern operating system.
    Good luck.

  • We use dial up and upon updating to Firefox 10 we have had issues with facebook/ playing games...please help!

    We use dial up and upon updating to Firefox 10 we have had issues with facebook/playing games...please help!

    Hi nancybrendel,
    Have you looked at the Knowledge Base article [[Problems using Facebook in Firefox]]? There is a lot of good troubleshooting information in there. Please be sure to try all of the suggested steps. Each one is valuable and may be the answer to your issue.
    Hopefully this helps!

  • Reponse time issue with a simple qurey .

    hi all,
    i started facing a strange issue with the below query form the biging of the month. we have a DW system for a banking domain and in that our accounts table from the first of this month is taking a huge amount of time to retive the data. if i query a back dated data say 31st of may that would be '310509' it give the result in less that 5 seconds. this is a very simple query which i am joing with a transaction table.
    i assume the reason for the change in query reponce time is may be tha data from the beging of this month had a datablock extantion and this block is corrupted . kindly let me know what i am thinking is correct or there is another reaosn for this.
    Also let me know what resolution should i take to resolve this issue.
    my database version is Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    Thanks in advance
    SELECT * FROM
    (select * from gtxn_dtl_v1 where batch_id='070609') a,
    (select * from gacc_dtl_v1 where batch_id='070609') b
    WHERE a.account_number = b.id
    SELECT * FROM
    (select * from gtxn_dtl_v1 where batch_id='310509') a,
    (select * from gacc_dtl_v1 where batch_id='310509') b
    WHERE a.account_number = b.id

    Hemant K Chitale wrote:
    I don't think that it is a simple query.
    The two objects "gtxn_dtl_v1" and "gacc_dtl_v1" seem to be Views. So, the queries are probably involving joins of other tables.
    Without an Execution Plan and information about table and index definitions and statistics on the tables and indexes, any attempt to answer your question would be meaningless.Both are tables. Explain plan is shown below:
    SQL> explain plan for
      2  SELECT * FROM
      3  (select * from gtxn_dtl_v1 where batch_id='070609') a,
      4  (select * from gacc_dtl_v1 where batch_id='070609') b
      5   WHERE a.account_number = b.id;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 4236620027
    | Id  | Operation                    | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |             |     1 |   601 |    38   (0)| 00:00:01 |
    |   1 |  NESTED LOOPS                |             |     1 |   601 |    38   (0)| 00:00:01 |
    |*  2 |   TABLE ACCESS BY INDEX ROWID| GACC_DTL_V1 |     1 |   313 |     4   (0)| 00:00:01 |
    |*  3 |    INDEX RANGE SCAN          | IDX_ACC2_V1 |     1 |       |     3   (0)| 00:00:01 |
    |*  4 |   TABLE ACCESS BY INDEX ROWID| GTXN_DTL_V1 |     1 |   288 |    34   (0)| 00:00:01 |
    |*  5 |    INDEX RANGE SCAN          | IDX_TXN2_V1 |    55 |       |     8   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("BATCH_ID"='070609')
       3 - access(SUBSTR("BATCH_ID",1,6)='070609')
       4 - filter("BATCH_ID"='070609' AND SUBSTR("GTXN_DTL_V1"."BATCH_ID",1,6)='070609')
       5 - access("GTXN_DTL_V1"."ACCOUNT_NUMBER"="GACC_DTL_V1"."ID")
           filter(SUBSTR("GTXN_DTL_V1"."ACCOUNT_NUMBER",1,3)=SUBSTR("GACC_DTL_V1"."ID",1
                  ,3))
    22 rows selected.
    SQL> explain plan for
      2  SELECT * FROM
      3  (select * from gtxn_dtl_v1 where batch_id='310509') a,
      4  (select * from gacc_dtl_v1 where batch_id='310509') b
      5  WHERE a.account_number = b.id;
    Explained.
    SQL>  select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 1249675553
    | Id  | Operation                     | Name            | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |                 |     1 |   601 |   785   (1)| 00:00:10 |
    |   1 |  TABLE ACCESS BY INDEX ROWID  | GACC_DTL_V1     |     1 |   313 |     4   (0)| 00:00:01 |
    |   2 |   NESTED LOOPS                |                 |     1 |   601 |   785   (1)| 00:00:10 |
    |   3 |    TABLE ACCESS BY INDEX ROWID| GTXN_DTL_V1     |   104 | 29952 |   368   (2)| 00:00:05 |
    |*  4 |     INDEX RANGE SCAN          | IDX_TXN1        |   104 |       |   340   (2)| 00:00:05 |
    |*  5 |    INDEX RANGE SCAN           | GACC_DTL_V1_IDX |     1 |       |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access("BATCH_ID"='310509')
           filter(SUBSTR("GTXN_DTL_V1"."BATCH_ID",1,6)='310509')
       5 - access("GTXN_DTL_V1"."ACCOUNT_NUMBER"="GACC_DTL_V1"."ID" AND "BATCH_ID"='310509')
           filter(SUBSTR("GACC_DTL_V1"."BATCH_ID",1,6)='310509' AND
                  SUBSTR("GTXN_DTL_V1"."ACCOUNT_NUMBER",1,3)=SUBSTR("GACC_DTL_V1"."ID",1,3))
    21 rows selected.
    Indexes:
    select i.index_name,index_type,i.table_name,num_rows,column_name,COLUMN_EXPRESSION
    from all_indexes i,all_ind_columns c,ALL_IND_EXPRESSIONS e
    where i.table_name in ('GACC_DTL_V1','GTXN_DTL_V')
    and i.index_name = c.index_name
    and e.index_name(+) = i.index_name;
    INDEX_NAME     INDEX_TYPE          TABLE_NAME     NUM_ROWS     COLUMN_NAME     COLUMN_EXPRESSION
    GACC_DTL_V1_IDX     NORMAL               GACC_DTL_V1     57190895     ID     
    GACC_DTL_V1_IDX     NORMAL               GACC_DTL_V1     57190895     BATCH_ID     
    IDX_ACC5_V1     NORMAL               GACC_DTL_V1     34524304     POSTING_RESTRICT     
    IDX_ACC1_V1     NORMAL               GACC_DTL_V1     55919578     CATEGORY     
    IDX_CUS5_V1     NORMAL               GACC_DTL_V1     54461378     CUSTOMER_NUMBER     
    IDX_CUS6_V1     NORMAL               GACC_DTL_V1     3272052     LIMIT_REF     
    IDX_ACC3_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     52940894     SYS_NC00099$     "CUSTOMER_NUMBER"||'.'||"LIMIT_REF"
    IDX_ACC4_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     57238600     SYS_NC00100$     "CUSTOMER_NUMBER"||'.000'||"LIMIT_REF"
    GACC_DTL_V1_IX2     FUNCTION-BASED NORMAL     GACC_DTL_V1     54448627     SYS_NC00101$     SUBSTR("ID",1,3)
    IDX_ACC2_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     55566106     SYS_NC00102$     SUBSTR("BATCH_ID",1,6)Edited by: user577300 on Jun 10, 2009 11:41 PM
    So many strange things here:
    1.Query showing cost 38 is taking a long time  (hours). Other quey takes 5 sec
    2. Plans are different.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • After the recent update I am having issues with Flash based games freezing and not responding.

    After the recent update I am having issues with flash based programs not running or loading correctly.  The programs will not load or take an extremely long time to load compared to jsut a few days ago.  This happens across the board on anything flash based.  Also, once they do load they will freeze, stop responding or need to be constantly refreshed to come back alive which is short lived at best.  I went thru the help and did all the file deleting, cache clearing, disabling hardware acceleration, removing then reinstalling flash, and even removing and reinstalling my browsers.  None of this has helped at all.  I am using Chrome and it is up to date and I checked my Flash player and it is up to date.  I am running windows 7 64bit.

    Here's what you're up against guys,
    Adobe writes the base code for Flash Player, and then hands it off to Google, who adapt it to a PPAPI plug-in (it's NPAPI when Adobe writes it). It's then "PepperFlash" and Google embeds it in their Chrome browser. While Google is pushing a "webwide" move to PPAPI Flash Content, a reinvention of the wheel so to speak, not everyone "got the memo", and Google is slowly making it so that PepperFlash will block NPAPI Flash content from running properly, and you have to disable PepperFlash to force the NPAPI plug-in to work, which sometimes fixes it, sometimes not. I have a feeling this is only going to get worse. HTML5 will eventually resolve the video end but game developers need to come up with something that won't require a plug-in.
    And to the first post:  Since PepperFlash is embedded in Chrome by Google, you can uninstall and reinstall Flash Player from here until your hard drive literally seizes up.... guess what? It has NO EFFECT at all on the PepperFlash plug-in in Chrome because it's a separate file in a separate folder and the uninstaller & installers don't have anything to do with it.

  • Issues with Installing Multiple adobe products.

    I am having some issues with performing a silent installation of multiple adobe products.
    We currently have Adobe CS3, Captivate 3, Audition 3, and Director 11.
    We have managed to get a silent install working for CS3, however, I cannot seem to get a silent install for Director going. The product installs, however it prompts for registration and a CDkey upon launching the application. I have a application.xml.override file within the payloads folder for Director. I also have install.xml and remove.xml files created. I can supply these if need be.
    Captivate does not seem to take the same deployment method that CS3 and Director do (no payloads folder, no --record=1 mode for creating install.xml). Some assistance with this would be very helpful.
    The audition disc does have a payloads folder and such within the folder for "adobe bridge." Would I be able to put an application.xml.override and install.xml in their respective locations for that and have it assist with audition install?
    Using a mix of Vista Business / XP professional computers. CS3, captivate, director, and audition are all going on the same systems.

    Sorry, I have no solution, but I can relate.
    I'm having a similar problem with the Director 11 silent install.
    We have a keyserver setup here and need to have the programs install silently on the student home computers so we don't release the serial number to them, everything with CS3 went okay. I assumed that Director 11 would follow the same (override file) as the file structure seemed to be similar, but that is not the case.
    There's very little information on this out there, so any help would be great.

  • Issues with installing Officejet 2620 All-in-One

    I'm having problems with installing my Officejet 2620.  I've installed the correct driver for my OS, but every time I connect the printer to the laptop via USB I get an error message saying 'USB Device not recognized; the last USB device you connected to this computer malfunctioned, and Windows does not recognize it.' I've read where this could be because I no longer have Windows 8, but rather Windows 8.1, as opposed to an error with the actual printer, which seems to work fine aside from the lack of communication with the laptop.  My OS Windows 8.1 64-bit. Please help!

    Hello hackman19,
     Welcome to the HP Support Forums! I understand when you plug in the USB connection to your HP Officejet 2620 you get an error message 'USB Device not recognized; the last USB device you connected to this computer malfunctioned, and Windows does not recognize it.'
    After some research I was able to find this thread on www.wiknix.com:
    Solved: USB Device Not Recognized In Windows
    Please try the above recommendation and let me know the outcome, I will watch for your reply.
    Thanks,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Issue with installing Adobe Flash Player on my Mac  OS X Yosemite 10.10.2

    Hi I'm having problems with installing adobe flash player on my mac pro. I am able to download file but can't instal it riches 30% and stuck. Can anyone help me solve this problem please???

    Could you first try the steps outlined in this FAQ:
    How to perform a "clean install" of Flash Player in Mac OS X
    If that doesn't help, please try this installer:
    PKG Installer

  • I need help re-installing my OS on a new hard drive. Having MAJOR issues with this simple task.

    I have a MacBook Pro 15" (mid 2009) I recently needed to get a new hard drive for it, the old one stopped working. It came with OS X Snow Leopard already installed from Apple, and it also came with the install disks. I have booted up using the install disks and put OS X Snow Leopard back on the computer.
    I tried booting with a USB install disk of OS X Lion (10.7) but had no luck on multiple occasions. It would only get through the initial step of the install and then say it couldn't download additional components needed for OS X 
    So finally, I decided to try a full erase and reformat of my brand new hard drive (less than a week old) and stated with the basic software that came with the computer. Installing that worked fine, until I tried to do a software update through the built in program. My computer refused to download 10.6.8 from the apple servers, so I had to find it on a 3rd party website. Once I found it and downloaded it, I finally got it installed. There were 12 more updates after I did 10.6.8 and none of them worked when I tried downloading and installing as a group. I had to do each one individually, the last one being a security update.
    Up to this point, the Mac App Store didn't work (even after the 10.6.8 update), I couldn't download any of my previous purchases. I needed to download lion, to see if having it on the Mac hard drive itself would help with the install, but I couldn't do that until after the security update.
    Other than that, the Mac worked normally except for during each start up, the apple logo would flash along with the forbidden sign and the folder with a question mark on it. It flashed for a few seconds randomly, then would boot up normally or say that my computer would need to be restarted.i figured this issue would be fixed after I successfully installed lion.
    FINALLY I got the App Store to download lion, and began the install process. Halfway through the install, it failed and when I tried to restart the computer, it continuously flashes through those three symbols at startup. I can't get it to do anything else. I'm so ****** off I'm ready to just sell it for parts.
    My questions are:
          1. Can I install OS X Lion OR OS X Mountain Lion clean from the start after a full format of the hard drive?
          2. How do I go about installing clean and get my computer to stop flashing those symbols during start up?
    *I have performed the Apple Hardware extended test and all systems are reporting normal function*

    Okay, so, fast forward from July to now -
    - I've visited my closest Apple store's genius bar twice now. (Over an hour and a half away.)
    - My computer spent at least 8 hours behind their closed doors in the workshop
    - Several complete erases of the harddrive have taken place
    - Most of the Apple geniuses I dealt with were nice and very knowledgeable, but they were and still aren't 100% sure exactly what is wrong with my computer.
    The good news is:
    - They were able to at least get it running again, with a clean install from their servers of OS X Lion 10.7.5
    - They believe that my problems stem from either 1 of 2 things:
            - Faulty Hard Drive (even though it is brand new)
             - The wrong build of software being installed.
    Now, while the wrong build does seem like it could be the problem, it doesn't make sense in the aspect that all of the initial problems began when the first hard drive failed. The same problems continued when I changed out the failed hard drive with the brand spanking new one, and only slightly improved when I was able to successfully install the OS that came with the original disks for my computer. I'm not convinced this thing is back to normal, but hopefully I can make it last through getting a shiny new retina Macbook Pro in the coming future. Thank you so much to everyone who read and replied to this post!
    - Andrew =)

  • Issues with installing windows on a new macbook pro retina.

    Hello,
    First time using bootcamp on my new macbook and I am running into an issue.
    I have read the troubleshooting guide and everything else and no matter what I do I get the same problem.
    The issue is that when bootcamp restarts after partitioning my drive, windows loads and I start the install process. Its says set up is starting and then it says that a required cd/dvd drive device driver is missing. I only have one usb drive connected (the one with windows on it) and nothing else. This is getting incredibly frustrating haha.
    info on the macbook.
    brand new (purchased yesterday) macbook pro 15 retina. 512ssd gtx 650. 12 gb of ram
    I really need windows on my pc before monday so all help is appreciated.

    External USB DVDs use to be an issue that req'd editing plist to allow booting from one.
    I have lost track of the issues and fixes but for burning ISO:
    SimplyBurns is a Mac OS X application with a GUI, which allows the user to burn CD / DVD media.
    Features:
    Emphasis on ease of use
    Audio CD project, Data project (Filesystems: ISO9660, Joliet, HFS+, UDF) and Burn image mode
    Erasing rewritable media
    Persistence
    http://simplyburns.en.softonic.com/mac
    Here's instructions on burning an ISO with Disk Utility:
       http://lifehacker.com/251758/mac-tip--how-to-burn-an-iso-or-dmg-file-to-disc
    And this thread on burning a Windows DVD in OSX:
       https://discussions.apple.com/thread/2039118?start=0&tstart=0
    (Summary: you can use Disk Utility to burn the ISO, but choose a slow burn speed)
    Windows 7 USB/DVD Download Tool  Windows  can be used with any VM
    The Windows 7 USB/DVD Download tool allows you to create a copy of your Windows 7 ISO file on a USB flash drive or a DVD. To create a bootable DVD or USB flash drive, download the ISO file and then run the Windows 7 USB/DVD Download tool. Once this is done, you can install Windows 7 directly from the USB flash drive or DVD.
      http://wudt.codeplex.com/
    Install Windows 7 From USB Drive
    Before you begin, you will require the following:
    USB Flash Drive (4GB minimum)
    Windows 7 ISO Image file
    UNetbootin
    Note: If UNetbootin doesn’t work, try out the Microsoft’s official tool called Windows 7 USB/DVD Tool.
    Note that resulting USB drives from UNetbootin are bootable only on PCs (not on Macs).
    http://unetbootin.sourceforge.net/
    http://www.addictivetips.com/windows-tips/install-windows-7-from-usb-drive-requi res-2-simple-steps/

  • Issues with Installing CE 7.1, SCS Service

    Hello,
    I have tried to install the CE 7.1, unfortunately the SCS service installation seems to run into an error each time. I have attached the log down below.
    Please advise,
    Rgs Boris
    CUT OUT *********
    Aug 6, 2007 11:46:05 AM [Info]: Start external command...
    Aug 6, 2007 11:46:05 AM [Info]: Using parent environment...
    Aug 6, 2007 11:46:05 AM [Info]: Executing Argv:
    Aug 6, 2007 11:46:05 AM [Info]: Arg[0]: C:/usr/sap/CE1/SYS/exe/uc/NTI386/sapstartsrv
    Aug 6, 2007 11:46:05 AM [Info]: Arg[1]: -q
    Aug 6, 2007 11:46:05 AM [Info]: Arg[2]: -r
    Aug 6, 2007 11:46:05 AM [Info]: Arg[3]: -s
    Aug 6, 2007 11:46:05 AM [Info]: Arg[4]: CE1
    Aug 6, 2007 11:46:05 AM [Info]: Arg[5]: -p
    Aug 6, 2007 11:46:05 AM [Info]: Arg[6]: C:/usr/sap/CE1/SYS/profile/CE1_SCS00_WDFN00167350A
    Aug 6, 2007 11:46:05 AM [Info]: Arg[7]: -n
    Aug 6, 2007 11:46:05 AM [Info]: Arg[8]: 00
    Aug 6, 2007 11:46:05 AM [Info]: Arg[9]: -U
    Aug 6, 2007 11:46:05 AM [Info]: Arg[10]: NT AUTHORITY\LocalService
    Aug 6, 2007 11:46:05 AM [Info]: Arg[11]: -P
    Aug 6, 2007 11:46:05 AM [Info]: Arg[12]: ""
    Aug 6, 2007 11:46:05 AM [Info]: Process started. Try to get Streams..
    Aug 6, 2007 11:46:05 AM [Info]: Got Streams. Try to read them...
    Aug 6, 2007 11:46:48 AM [Info]: Service not started within 40 seconds.
    Aug 6, 2007 11:46:48 AM [Info]: Process exited with rc: -1
    Aug 6, 2007 11:46:48 AM [Error]: excpetion in step:
    Aug 6, 2007 11:46:48 AM [Error]:      name: CREATE_SCS_SERVICE [com.sap.xpf.controller.TaskExecutionStep]
    Aug 6, 2007 11:46:48 AM [Fatal]: com.sap.xpf.tasklib.TaskLibraryException: cannot start serice. rc was: -1
           at com.sap.instancemgt.win.SAPServiceCreateDEV.execute(SAPServiceCreateDEV.java:80)
           at com.sap.xpf.tasklib.execution.TaskExecutionObjectJava.execute(TaskExecutionObjectJava.java:54)
           at com.sap.xpf.tasklib.TaskLibraryEngine.executeTask(TaskLibraryEngine.java:256)
           at com.sap.xpf.tasklib.TaskLibraryEngine.executeTask(TaskLibraryEngine.java:264)
           at com.sap.xpf.controller.TaskExecutionStep.execute(TaskExecutionStep.java:115)
           at com.sap.xpf.controller.Controller.execute(Controller.java:506)
           at com.sap.xpf.controller.Controller.start(Controller.java:292)
           at com.sap.inst.engine.customactions.CallController.install(CallController.java:93)
           at com.zerog.ia.installer.actions.CustomAction.installSelf(DashoA8113:-1)
           at com.zerog.ia.installer.Action.install(DashoA8113:-1)
           at com.zerog.ia.installer.Action.install(DashoA8113:-1)
           at com.zerog.ia.installer.GhostDirectory.install(DashoA8113:-1)
           at com.zerog.ia.installer.Installer.install(DashoA8113:-1)
           at com.zerog.ia.installer.actions.InstallProgressAction.m(DashoA8113:-1)
           at com.zerog.ia.installer.actions.ProgressPanelAction$1.run(DashoA8113:-1)
    Aug 6, 2007 11:46:48 AM [Info]: End CREATE_SCS_SERVICE [com.sap.xpf.controller.TaskExecutionStep]
    Aug 6, 2007 11:46:48 AM [Info]: rc:   1
    Aug 6, 2007 11:46:48 AM [Info]: at:   2007.08.06 - 11.46.48[yyyy.MM.dd - HH.mm.ss]
    Aug 6, 2007 11:46:48 AM [Info]: duration:   00:00:43[HH:mm:ss]
    Aug 6, 2007 11:46:48 AM [Info]:
    Aug 6, 2007 11:46:48 AM [Info]: Error during executing
    Aug 6, 2007 11:46:48 AM [Info]: End Controller
    Aug 6, 2007 11:46:48 AM [Info]:   at          : 2007.08.06 - 11.46.48[yyyy.MM.dd - HH.mm.ss]
    Aug 6, 2007 11:46:48 AM [Info]:   durationt   : 00:17:16[HH:mm:ss]
    Aug 6, 2007 11:46:48 AM [Info]:   status   : ERROR
    Message was edited by:
            Benny Schaich-Lebek

    Hi Boris,
    I had the same problem, so I investigated the issue a bit.
    The problem is that the timeout for installing and launching the SCS service is 40 seconds, but sometimes it happens slower than this. In this case the installer thinks that the service was not setup correctly (actually it was), and aborts.
    For me the solution was to stop every unnecessary service (like desktop search indexing, etc.) and quit all the applications. This way the installation ran without problems. Unfortunately if you have a slower pc this may not help.
    best regards,
    Csaba

  • Major Issues with installing 4tb internal. Really need advice please

    In the process of a long needed upgrade to my 2010 Mac Pro Quad core 2.8 and have run into a serious headache that I really need advice on so I can get back to work. I've already spent 2 days dealing with all of this...
    Just did a new SSD install and Migration which went fine but I'm also updating the rest of the internal drives. My main (non boot) drive was being upgraded from a Seagate Barracuda 3tb to a 4th Deskstar NAS (it was showing as compatible with my desktop, see links below). My 3tb ran fine for years but now due to it being heavily used I want to switch to a new drive and I can also use a bit more space.
    The issue I'm running into is that initially on boot, my system was telling me it couldn't recognize the disk and it wasn't even showing up in Disk Utility. I had to purchase a SATA USB 3 kit to attach it as an external to get it to show which worked without problem. With the USB kit I was then able to partition it (GUID, Mac OS extended journaled) and format it properly. After reinserting the drive into my tower as an internal it failed to show again. After a few attempts of restarts and trying various bays it popped up but showed as a non formatted drive and I was told again that the system didn't recognise it. I was then given the option to initialise and was then actually able to then format and partition it though Disk Utility while it was installed as an internal.
    Figured that was problem solved but when I went to check the drive and getting ready to transfer files over I noticed that Disk Utility was only allowing the First Aid and Partition options but not Erase, RAID, Restore which I'd never seen before. I then also noticed that none of the drive connection info was in the same format nor will it even provide drive bay info, connection info or read/write status (See screen shots). This is what I can't figure out and really need to clarify before I put full trust into using this drive.
    Any info would be greatly appreciated...
    Deskstar 4tb internal info which is installed in Bay 2
    3tb Seagate which I trying to retire and transfer from.
    Here are the weblinks to the Deskstar 4tb drive and the compatibility list but I support isn't allowing me to add direct links so add the www. before hand.
    (Drive - eshop.macsales.com/item/HGST/0S03664/) (compatibility list - eshop.macsales.com/Descriptions/specs/Framework.cfm?page=macpromid2010.html).

    What OSX version?
    Disk Utility in later versions of ML and I think Mavericks have problems formatting with 4 TB internal drives.
    http://forums.macrumors.com/showthread.php?t=1661024
    http://apple.stackexchange.com/questions/112266/why-doesnt-my-mac-pro-see-my-new -4tb-sata-drive

  • Issue with installing password sync on Windows 2008

    I have installed pwd sync 64 bit on Windows 2008. Configured it in direct mode (no jms). But when I change the password of a user it is not syncing with the IdM. We have the 32 bit pwd sync working fine on Win 2003. Is there any special steps for installing, configuring 64 bit pwd sync on Win 2008. Thanks. Jack

    Hi again Tim-
    Given the error "failed to crack URL" I believe you're hitting an issue we have documented as bug # 21999. Here's the jist of it and a possible way around it.
    ==========
    When installing password sync on a Windows 2008 system, if you are not
    logged in as 'Administrator', the installer and the configure applications
    may be subject to Windows File And Registry Virtualization (FARV). This may
    cause the registry entries for password sync to be written to the user portion
    of the registry, rather than the system portion. Subsequently, password sync
    will fail with the message "failed to crack URL".
    To work around FARV, either run the MSI installer from a privileged cmd.exe
    prompt, or run the configure.exe application using the "Run As Administrator"
    functionality (right-click on the configure.exe application, select "Run As
    Administrator").
    ==========
    Hope this helps.
    Regards,
    Alex

  • Issue with Installing After Effects CC

    Hello,
    I have downloaded the trial version of Adobe After Effects CC. As soon as i install, i get the following message:
    After Effects error: Crash in progress. Last Logged message was: <3940> <GPU Manager> <2> Sniffer Result Code:3
    I have an i5 4440, 8 GM Ram, NVIDIA NVS 315 Graphics Card and running on Windows 7 Professional (without SP1).
    What can be the issue? After Effects CS6 is working fine along with Premier CC & Audition CC Edition. The graphics card drivers are uptodate.
    Please help.
    Regards,
    KapSin

    Hi Mylenium,
    Many thanks for the quick revert.
    So whilst i would try and get a new GPU soon, could you suggest how can i
    get around in the meanwhile? Have already tried the older version of the
    driver but it isn't helping.
    Also, I am assuming that working on the Windows 7 Professional Edition
    (without Service Pack 1) will not have any impact on the installation? Cos
    all the CC system requirements say windows 7 service pack 1, however
    everything else is working fine except AE.
    Many thanks.

Maybe you are looking for