Cannot publish project in project 2010

I am trying to publish project plan to project server cannot do it.The option is grayed out.
Any suggestions why? 

Hi,
Per my knowledge, only enterprise projects, which are managed in Project Web App, can be published.
So please make sure that you are creating enterprise projects.
Please follow the steps in the link for publishing the enterprise projects:
https://support.office.com/en-gb/article/Publish-a-project-b4c7593d-0844-4d28-bf2c-5ddff2498e33?ui=en-US&rs=en-GB&ad=GB
As this issue is regarding to Project, I recommend you to post a new thread in Project forum:
https://social.technet.microsoft.com/Forums/en-US/home?category=projectserver2010.
More experts there will help you to solve this issue and you will get more relative information about this issue.
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • Cannot Open Project 2010 file in Project 2013

    I have a 2010 Project file that will not open in Project 2013. It seems to be something dealing with predecessors and successors. Project 2013 stop responding when I try to open the file, and when I try to copy the information from Project 2010 and paste
    in 2013 it give me an error on every predecessors and successors and does not copy the predecessors and successors. The error is "A pasting error occurred on ID nn in the predecessors or successors column. The information is not valid". then it remove
    the predecessors or successors, however, the information in the predecessors and successors are valid line numbers in the file, they work fine in Project 2010.
    Has anyone came across this?
     

    ProfMelle --
    There is a possibility that this file has somehow gotten corrupted.  You might try the following:
    Open the troublesome project in Project 2010.
    Click File > Save As and save it as an XML file.
    Close the file.
    Open the XML file and use the Import Wizard to create a new project.
    Save the new MPP file over the old one.
    Now try opening the MPP file from 2010 in Microsoft Project 2013.
    Let us know if this helps.
    Dale A. Howard [MVP]

  • Unable to save/publish Projects on Project Server 2010() using Project Pro 2007 and 2010

    Hi,
    Recently we have upgraded from Project Server 2007 to 2010 SP-2 (BCM enabled) environment and from last few days we are getting issue with Project Plans where PMs are not able to update Projects means save and publish the Project using MS Project  2010/2007.
    Whenever PMs try to open project using MS Project 2010 SP-2, it gets load successfully but when they hit save and publish no jobs are getting fired up nothing is happening. Only way to get out from MS Project 2010 window is to close the Project window and
    and click discard changes. No error and exception windows are popping out in MS Project 2010, no error/problem/issue clue at all from MS Project 2010.
    But when I try to update this Project plan for very first time using MS Project 2007 Sp-2 then I am getting below error
    for any subsequent save and publish using MS Project 2007-SP2 getting below error
    As an alternative I have tried to open this Project Plan using web and there it is getting opened saved and published successfully from PWA absolutely no issue.
    Also I have saved this Project locally as XML and saved and published it on Server successfully. But after someday again this project got corrupt PMs started getting same problem again
    I have also looked at ULS logs but not getting anything useful there.
    So any guesses why this could happen that can give me pointers to find actual root cause, please let me know.
    Thanks much !!!
    Sachin Vashishth MCTS

    Used below steps to fix the Projects on MSP 2010.
    1) Open corrupted project in MS Project connected to PS 2010 Prod env.
    2) Goto > Resource > Add Resource  > Build Team From Enterprise
    3) Check is there any local resource who has not replaced with corresponding enterprise resource. If yes then replace all those local resources with enterprise resource. If not then move to next step.
    4) Open resource sheet view and sort or filter by local resources.
    5) Then add few columns in resource sheet view like "Windows User Account, Email Address , Base Calendar etc".
    6) Now check has any local resource having enterprise attribute assigned to it, if yes then delete or assign local value as appropriate.
    7) Then GoTo > File > Save & Send > Save as project file > Save for sharing (at local location)
    8) Close project plan window and click "Yes" to save changes.
    9) Restart MS Project 2010 and open your project from local location.
    10) Then Goto > File > Save & Send > "Publish to Project Server". This will open "Import Project Wizard" to validate Resources and Task in Project.
    11) Then in Import Project Wizard window at left hand side click "Map Resource" to validate project resources.
    12) This will "Map Project Resource to Enterprise Resource " check all the resources highlighted with "Red" font and map "Standard" calendar to local resources.
           Note: Don't worry about local resource assigned "Standard calendar" but still highlighted "Red".
    13) Then click "OK" and click on "Continue to step 2" at bottom of "Import Project Wizard".
    14) Make sure you get number of errors 0 in step 2, else click on validate resource and take proper corrective action as explained in step 6.
    15) If you leave at least one resource as a local resource (unmapped to an enterprise resource), you will see the local resource in the Import Resource grid on the right side
    of the Confirm Resources page.         
    Examine the value in the "Import" column (if not able to see this column then insert this as new column) for the local resource . 
    The default value is "Yes", then change the value in the "Import" column
    to "No", else system will import the local resource as an enterprise
    resource.
    16) Then "Continue to step 3, 4 and 5".
    17) Then at Step 5 , Save project to Project Server by clicking "Save as" link.
    18) Then publish the project to update the plan at PWA 2010.
    Sachin Vashishth MCTS

  • Cannot programmatically select a task in Team planner - Office MS Project 2010

    Hi,
    I'm using Visual Studio 2010 32 bits, MS Project 32 bits on a windows 7 64 bits environment.
    I created a MS project 2010 addin in Visual Studio. I can do many things with this addin, add ribbon, create tasks,
    change colors in gant view...
    However I cannot selected a task in the team planner view !
    I use SelectTPTask in the application instance as referenced (http://msdn.microsoft.com/en-us/library/ms474284.aspx).
    After this selection I want to change the color of the task by using SegmentFillColor method but nothing happens.
    If I manually click on a task then SegmentFillColor works and the task color is changed.
    Here is the code of the action:
    private void buttonPriority_Click(object sender, RibbonControlEventArgs e)
    var app = Globals.ThisAddIn.Application;
    var pj = app.ActiveProject;
    //create Tasks
    Task newTask = pj.Tasks.Add("First task");
    newTask.Duration = "3";
    newTask.ResourceNames = "Resource A";
    newTask = pj.Tasks.Add("Second task");
    newTask.Duration = "4";
    newTask.ResourceNames = "Resource B";
    //Change color of the assignments
    foreach (Task t in app.ActiveProject.Tasks)
    if ((t != null) && !(bool)t.Summary)
    bool b1 = app.SelectTPTask(t.UniqueID);
    bool b2 = app.SelectTaskAssns();
    bool b3 = app.SegmentFillColor(0xFFFFFF);
    Is it a bug or I do not use it properly,
    Thanks,
    Alex.

    Working solution (MS Proj 2013) for similar task is:
    Sub ChangeTaskColorBasedOnCondition()
        Application.ViewApply Name:="Team Planner"
        For Each task In ActiveProject.Tasks
            Application.SelectTPTask (task.UniqueID)
            Application.SelectTaskAssns
            If (InStr(task.Name, "t"))
    Then
                SegmentFillColor Color:=192
            Else
                SegmentFillColor Color:=0
            End If
            Application.SelectTPTask
        Next
    End Sub

  • Cannot publish OSB Configuration project on windows 7 64 bit OSB 11g1

    I get the following error when I try to publish a OSB configuration project:
    Project Facet Oracle Service Bus Configuration 1.0.100 is not supported by this server.
    I installed OSB 11gr1 the following way:
    1. downloaded + installed 64 bit windows Java JDK (1.6.0_20)
    2. downloaded and installed the generic installer weblogic + coherence ( without OEPE unfortunately) [filename=wls1033_generic.jar].
    3. Seperately downloaded 64 bit OEPE from http://www.oracle.com/technology/software/products/oepe/index.html. Unzipped it in a manually created directory oepe in the weblogic installation directory (C:\bea\oepe) [filename=oepe-galileo-all-in-one-11.1.1.5.0.201003170852-win32-x86_64.zip]
    4. Install the OSB by running the setup.exe from the osb installer (Disk1). During the install I selected the OEPE directory (C:\bea\oepe in my case).
    [filename=ofm_osb_generic_11.1.1.3.0_disk1_1of1]
    5. I Started eclipse.exe. The OSB plugins were put in the installment automatically during startup (dropins).
    I created a test domain and within eclipse I created a server (Oracle WebLogic Server 11gR1 PatchSet 2=10.3.3) so I could deploy projects onto this server. All went well. After this I created an OSB configuration project and an OSB project. When I tried to add this to the server I got the error as I mentioned above. This surprises me. The eclipse OSB plugins that were installed cannot create an OSB Configuration Project for the 10.3.3 version. So I cannot use eclipse to build project for the latest version. What is happening here?!?
    Can somebody enlight /help me.

    Although windows 7 is not officially supported I got something working. No garantees it will break at some point you can have a working 64 bit OSB on windows 7.
    To get oepe also working you have to install the 32 bit version from the 32 bit weblogic installer. When you have supplemented this version with the OSB plugins you can publish projects on Oracle WebLogic Server 11gR1 PatchSet 2.
    So try at your own risk or wait for an official version for windows 7

  • Getting error message "cannot prepare project for publishing (-50) -- and it wont publish my project. What's up?!

    getting error message "cannot prepare project for publishing (-50)" and, subsequently, it won't publish the bloody thing. I have publsihed many videos previous to this one so I have no idea waht is going on.
    So, my question is -- WHAT IS GOING ON?!!

    Hi
    See if this might help
    Error -50
    Error -50   paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    What this means in Your situation is above me.
    • free space on internal boot hard disk? How much ?
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Yours Bengt W

  • Cannot open project file in Project 2010

    Hi,
    I have a project created in Project 2010. I can save it without any problems. But some saves are broken and I cannot open them again. When I open saved project an error message is displayed:
    There was a problem sending the command to the program and Project freezes. Project 2010 itself starts without any problems. What's strange I can open this file in viewers like MOOS Project Viewer 2.0 but not in Project.
    Any tips highly
    appreciated.
    Lukasz Chomin

    Hi Lukasz,
    Welcome to this Microsoft Project newsgroup :-)
    It sound as though that project has corruption.  If you can open it at all, follow the advice given below.  If you can’t open it at all, it seems like it’s lost – you do have a backup don’t you?
    If you can open it in another program, try copy/paste the data back into a new project.
    If you suspect a corrupt file, you could try the suggestions in FAQ Item: 43. Handling project file corruption and/or bloat.
    FAQs, companion products and other useful Project information can be seen at this web address:
    http://project.mvps.org/faqs.htm
    Hope this helps - please let us know how you get on :-)
    Mike Glen
    Project MVP
    See http://tinyurl.com/2xbhc for my free  Project Tutorials

  • Oracle BPM 10.3 Cannot publish the project

    I'm getting fuego.compiler.InternalException while trying to publish project (see below). Oracle BPM 10.3 installed in AIX 5.3 64-bit and bpmengine is up and running. Appreciate any ideas.
    Internal error found. This should be reported to Oracle Support. Include the following information. Error: 'fuego.compiler.InternalException: Internal error found. This should be reported to Oracle Support. Include the following information. Error: 'java.lang.NullPointerException'. Node: 'class Instance'.'. Node: 'class Instance'. Caused by: Internal error found. This should be reported to Oracle Support. Include the following information. Error: 'fuego.compiler.InternalException: Internal error found. This should be reported to Oracle Support. Include the following information. Error: 'java.lang.NullPointerException'. Node: 'class Instance'.'. Node: 'class Instance'. Caused by: Internal error found. This should be reported to Oracle Support. Include the following information. Error: 'java.lang.NullPointerException'. Node: 'class Instance'. Caused by: java.lang.NullPointerException

    Hi,
    I was wondering if you ever found a solution to this problem? We are facing the same problem and we are searching very hard for the solution.
    Regards,

  • Project Server 2013 - Cannot see project schedule in PWA

    Project Server 2013 and Project Pro 2013
    I have admin authority but for some of the projects loaded to the server, and published, i cannot see the Schedule option in the left frame. At least on project has this option available but several others do not. For the projects where I can't see the schedules:
    - Some of these projects were created with imported MPP files from Project 2010, and imported using the wizard,
    - Some were created with imported XML files from Project 2010, and imported using the wizard
    - Some were created with Project Pro 2013 and saved, published to the P13 server.
    Are there some obvious things that I should check as a new admin to this version of Project Server? I'm stumped.
    For all of the above projects (with the issue or not) I can succesfully see everything in Project Professional 2013, and everything seems to function normally in the publish process.

    Hi,
    the first thing to check would be the EPT (Enterprise Project Type) of those projects. Go to server settings, Enterprise Project Types, select the appropriate project type and ensure that the Schedule page is on the left side of the section "New Project
    Page/Project Detail Pages".
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, MCP |

  • Project 2010 Server - Users loosing permissions to Projects

    Hi all.
    I am having an issue where some of our users are loosing permissions to certain projects. It is not always the same ones. It is even ones that they own.
    I have done some searching through the forums but cannot seem to find the same issue.
    Has anyone come across this or know what could be causing it?
    We are running Project 2010 server on SharePoint 2010 platform.
    Thanks for reading.

    User are losing permission in project site or project ?? If it is project site then
    May be users to whom access has been given manually and after every publish and change resource permission they were loose the permission to project site. 
    Choose only one approach described below then you will not face the issue 
     1.either Check to automatically synchronize Project Web App users" in PWA --> Server setting  so that all the resource who are present in Project build team get the access.
    http://technet.microsoft.com/en-us/library/cc197668(v=office.14).aspx
    When you have this enabled, it doesn't sync all of the Project Web App users from the top level site, it only syncs users to the project site that should have access based on the following rules:
    Project managers who have published a project or who have Save Project 
    permissions on a project are added to the Project Managers (Microsoft Project 
    Server) site group.
    Team members with assignments in a project are added to the Team members 
    (Microsoft Project Server) site group.
    Other Project Server users who have View Project Site permission on a 
    project are added to the Readers (Microsoft Project Server) site group.
    2.  or If you disable Check to automatically synchronize Project Web App users" then either Administrator need to give access to project site to required resources. this one is manual work and hectic to administrator to mention the up to date permission
    kirtesh

  • Error saving Project 2010 files to network drive - doesn't see network drive

    ANSWERED (11 April 2014):
    So it seems the resolution to this is to simply create a new share with a different name. I used the existing folder (to retain NTFS permissions) and just select to Add a new Share (applying the same Share permissions as the non working Shares).
    Deploying this new Share via Group Policy as a test resulted in staff being able to open files from Windows Search, save files through MS Project and the Share being accessible through browsing SMB.
    All problems resolved by using a new share name for the existing folder. Seems to be a corruption in the namespace.
    Note: I had previously deleted the share and recreated it. I had removed all NTFS permissions and readded (through both the GUI and icacls). This didn't make a difference.
    Only changing the name of the share fixed the problem.
    Original Question
    Already
    posted here... but Microsoft Support has not responded.
    It seems some staff on some computers are having problems saving MS Project files to the network. This is only since an upgrade to SBS2011 (from SBS2003). The only difference now, is that network drives are mapped via group policy rather than a  'net
    use' script.
    This is affecting users on Windows 7 and Windows Server 2008 R2, with either MS Project 2007 or 2010. The users have full change access to the folders and can create new files and modifying existing files, just not a MS Project file. Other file tyes, e.g
    Word .docx, Excel .xlsx, Adobe .pdf files, all work fine. These files can be opened, edited and saved normally without problem.
    To replicate this:
    The user opens an existing file or creates a new file on the network folder (either through Windows Explorer or MS Project). They then click File > Save in MS Project and receive the following error (see pic below):
    An interesting symptom of this is that if you select File > Save As in MS Project, the Sae As dialog box doesn't remeber the path location of the network drive. MS Project instead prompts to save the file in the local users documents folder (see pic below):
    If they browse back to the original folder where the file was saved and choose to save it there, they are of course, prompted to overwrite the existing file and they can save the file. But the same thing happens every time they open the file.
    It seems the problem is that Project isn't seeing the path of the file or that the network drive is attached.
    If a user closes the file without saving it, they are prompted to save the file and the prompt shows the drive path:
       Do you want to save changes to "N:\... Projects\Active Projects\CC...\F4 Project Plan File\004 Programme\test project file.mpp"?   
    But choosing to save the file gives them the same result as Save As, they are prompted for a new location as if the original file location doesn't exist.
    I have disconnected the mapped drive and connected it again using net use but get the same error.
    I have reinstalled MS Project 201, installed Project 2010 SP2 and installed Windows updates and it does the same thing, exactly the same symptoms.
    Further, if the user opens a file from the network drive, the file shows in the Project recent files list. If they try to open the file from the recent files list in project they get the following error:
    "Project cannot open the file.
    -Check that the file name and path are correct.
    -Check that the file format is recognized by Project.
    Project files saved in a version earlier than Microsoft Project 98 can't be opened...."
    This is a test file that I created on the user's computer and network drive, This is being opened with the same version it was created in. If I browse to the folder in Windows Explorer I can open the file. Of course, I then can't save the file (I still get
    the original error). I'm logged on with Domain Admin privileges.
    I've checked these links from other threads (neither apply to my scenario):
    http://support.microsoft.com/kb/983458/en-us|
    http://social.technet.microsoft.com/Forums/en-US/excel/thread/2eeea140-7e6c-4cb9-a89b-06d2102bd9f7/
    I've downloaded my TechNet version of he software and installed it with Sp2 and Windows updates and it does the same thing. This also happens on the Remote Desktop server (Server 2008 R2) using MS Project 2007.

    Case 1
    This error message appears when the document is open on two or more computers that are running different operating platforms. For example,
    if the document is open on a Macintosh computer and you open it on a second computer running Windows or Windows NT, the error occurs when either user tries to save the document.
    This problem stems from a difference between the ways Macintosh OLE and Windows OLE open files. As a result, you cannot save a file on two different operating platforms at the same time.
    Case 2
    This error occurs in Word 97 for Windows if you save to a MAPROOT type network drive connection on a NetWare server where spaces exist in
    the file or folder name.
    Case 3
    This problem may occur if an anti-virus program running on a network has the ability to scan for macro viruses in documents in shared network
    folders.
    For example, if you have the following:
    a shared folder on a network server
    -and-
    an anti-virus program is running on the network server that is set to monitor the shared folder,
    when you attempt to save a document (across the network) to the shared folder, the anti-virus checker may cause the error to occur.
    Case 4
    This problem may occur on Novell networks when the AutoRecover files path is either blank or set to a network drive.
    According each, please try the following workaround:
    WORKAROUND
    To work around this problem, use one of the following methods appropriate to your situation.
    Case 1
    Method 1:
    Move the document to your local hard disk for editing. Move it back to the server after you finish.
    Method 2:
    Save a copy of the
    file with a different
    file name, and work on the copy, either on your hard disk or on the server.
    Case 3
    Method 1:
    Move the document to your local hard disk for editing. Move it back to the server after you finish.
    Method 2:
    Do not use spaces in the directory or document names.
    Method 3:
    Do not use MAPROOT-drive connections. Map your drive connections to the volume-level only.
    Case 4
    Turn off the anti-virus protection on the network server and then try to
    save the document. Contact your anti-virus protection software company for additional details and/or updates to their programs.
    Case 5
    Set the AutoRecover files path to your local drive. To change the AutoRecover path, use the following steps:
    1.
    On the Tools menu, click Options.
    2.
    On the File Locations tab, select AutoRecover files and then click Modify.
    3.
    Change the Modify Location dialog box to a
    folder on your local drive and then click OK.
    4.
    Click OK to close the Options dialog box.
    Hope that helps.
    Smith

  • How to export data from MS Project 2010 to MS Excel 2010 with formatting

    I have created a Project 2010 export map to Excel 2010.  It works fine.  I have two questions that I cannot determine an answer.  I'm not sure if its a project or excel setting.  I have spend hours trying to make it
    work with little success.
    1.  When the task name field is exported to excel it losses summary/task indent.  Is there a way to set it up so it works via the export map?
    2.  The Start & Finish fields in project is setup as 5/26/11 when they exports to excel it shows up as 5/26/11 8:00 AM.  Is there a way to set it up either in project export map or excel so its formated as a date field. 
    Excel's Format Cell function does not seem to work converting them back to just 5/26/11.
    How can I keep the outlines and formatting in my data while exporting it to Excel.
    I would appreciate any guidance.
    Yogesh

    Rameshchandra --
    Two things I would recommend:
    Do not add your question at the end of a post that is marked as Answered.  In the future, please post your question as a new question so that everyone will notice it and be able to answer it.
    Because this is a programming question, please repost your question as a new post in the Project Customization and Programming user forum at:
    http://social.technet.microsoft.com/Forums/projectserver/en-US/home?forum=project2010custprog&filter=alltypes&sort=lastpostdesc
    Hope this helps.
    Dale A. Howard [MVP]

  • Project 2010 SP1 Installation Crashes

    I'm trying to create a package that will handle both brand new installations for Project 2010 as well as upgrade installations for those running Project 2007, the latter of which represents a large population in our environment.
    I basically followed the same process I used when creating packages for Office 2007, Office 2010, Project 2007 and Visio 2007, all of which work today:
    run setup.exe /admin
    create a new .msp
    make my adjustments (very few)
    save into Updates directory
    customized PrjPro.WW\config.xml (after first creating a backup!)
    run setup.exe
    I'm testing the package on a machine that previously had Project 2007, but after running for a short time, setup crashes.  I thought maybe the problem was with the config.xml so I undid the changes one at a time, then moved up to restoring the orignal
    config.xml file but it continues to crash.
    There's a setup log in %temp% that contains what may be the core issue
    PERF: TickCount=2427515 Name=OBootStrapper::Run Description=Begin function
    Operating System version: 6.1.7601 Service Pack 1. Platform ID: 2
    Running 32-bit setup on a 32-bit operating system.
    Command line: "\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\setup.exe"
    No command line arguments given
    Verify file signature in "\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\setup.exe"
    \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\setup.exe is trusted.
    Verify file signature in "\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL"
    \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL is trusted.
    Using setup controller dll at [\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL].
    PERF: TickCount=2428342 Name=OBootStrapper::Run Description=Calling RunSetup
    PERF: TickCount=2428342 Name=RunSetup Description=Begin function
    Catalyst execution began: 03/07/2014 13:30:43.
    Setupexe Resiliency Mode is set to [PerformIfApplicable]; thus Resiliency is [disabled] for the [InstallExecutionMode]
    Searching for updated versions of resource files under the 'updates' folder [\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\updates].
    Found [0] resource files under the update folder.
    Searching for default versions of resource files under the folder [\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660].
    Found [1] resource files under the default folder.
    Running in [InstallExecutionMode]. Run from TEMP folder at [C:\Users\myuserid\AppData\Local\Temp\Setup00001fb8].
    Loaded resource file [C:\Users\myuserid\AppData\Local\Temp\Setup00001fb8\OSETUPUI.DLL] (CultureTag=en-US).
    Loaded Dll : \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL.
    Catalyst version is : 14.0.4755.1000
    JobExecutionMode is InstallExecutionMode.
    Check if Office is supported on Windows 6.1.7601
    Checking if CLSID_DOMDocument60 can be created.
    Checking the version of MSXML6.
    MSXML version check passed. Minimum required version is [6.10.1129], installed Version is [6.30.7601.17988].
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-0115-0409-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-0116-0409-1000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-003B-0000-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-00B4-0409-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-002C-0409-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-0010-0409-0000-0000000FF1CE}"
    Product: PRJPRO
    AddOnGroup Culture: en-us
    AddOnId: OFFICE.EN-US
    AddOnId: PROJECT.EN-US
    AddOnId: PROOFING.EN-US
    No upgradable applications found
    Parsing config.xml at: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\config.xml
    Preferred product specified in config.xml to be: PRJPRO
    Parsed setting: SETUP_REBOOT with value: Never in config.xml.
    Logging type verbose specified in config.xml.
    Log directory: C:\Users\myuserid\AppData\Local\Temp specified in config.xml
    Log file template: Microsoft Office Project Professional Setup(*).txt specified in config.xml
    COMPANYNAME specified in config.xml.
    USERNAME specified in config.xml.
    Product Deployment Mode: PerMachineManaged
    Target Deployment Account Security Identifier: S-1-5-18
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Office.en-us\OfficeMUI.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Office.en-us\OfficeMUISet.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proof.es\Proof.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proof.fr\Proof.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proof.en\Proof.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proofing.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Project.en-us\ProjectMUI.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\PrjProWW.xml
    Reading value of unintialized setting!
    BRANDING: Parsing Branding Data...
    BRANDING: Parsing Branding Data...
    Pidkey specified in config.xml or setup.xml file. Skipping PidKey view.
    Kicking off chained install...
    PERF: TickCount=2434333 Name=Job::DoCacheWork Description=Begin function
    OSE is detected as a registered service. Service binary is reported at location: C:\Program Files\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    OSE service binary is detected at location: C:\Program Files\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    OSE is avaliable at C:\Program Files\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    This OSE has version: 12.0.4518.1014. Skip using this version of OSE because its version is too low.
    Running Source Engine process detected
    Running version: 12.0.4518.1014
    Error checking already running ose version. Error code 0x00000000
    Stopping running the problematic Source Engine process
    Error attaching to OSE, error 0x00000000
    Cannot start standalone OSE. from \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\ose.exe. Error code: 0x80070102
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Catalyst execution finished: 03/07/2014 13:32:07. Return code: 30088. Exception caught: UnexpectedError.
    PERF: TickCount=2511881 Name=RunSetup Description=End function
    I've checked a few things but I can't figure this out
    restored config.xml
    used no msp
    Office Source Engine (OSE) service startup type is set to 'Manual'
    copied ose.exe again from DVD
    copied entire DVD over again
    I'm beginning to wonder if there's an issue with the existing Project 2007 installation, or the way it was uninstalled [by the Project 2010 setup] - but maybe its something altogether different.
    Any advice is greatly appreciated.

    My point above is that Project 2007 was extremely buggy and unless files are saved using Project 2007 SP3 first you are likely to experience problems with the files when opening in project 2010. Project 2007 to 2010 with no service packs is problematic.
    With SPs applied you should have far fewer problems.
    Doesn't look like a exe with SP2 is available yet so you need to add the service pack separately, probably in the updates folder.
    If all Project 2007 installs are already at SP3 then no need for this.
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

  • MS Project 2010 Server - How to move a single MS Project plan and SharePoint Project site from a PWA server to another PWA server (one at a time)

    MS Project 2010 Server
    How to move a single MS Project plan and it's SharePoint project site from a PWA server to another PWA server (one at a time)
    I have 2 Project PWA servers, i know how to copy all the databases (Publishing, Draft, Reporting, archive, content) from one SQL server and copy it to the other PWA server so both server can be identical.
    I need to only move a single project from a PWA server to another, 
    Moving the Project plan, actual time data, SharePoint site with all it's content
    Is there a 3rd party tool that can be added on to the server to help me move single project plans? to different PWA servers?
    -Isaack

    Visit my friends at FluentPro and try FluentBooks
    http://www.fluentpro.com/productsfluentbooks2013.html
    they have a 2010 version also.
    Hope that helps,
    Thanks, Eric S. Pcubed

  • MS Project 2010 Product Key Activation Error

    Hello,
    Our company purchased a version of MS Project 2010 a few years ago and it was installed on a laptop in our office and was working without any issues.  However, that laptop recently had a virus issue and it needed to be completely cleaned off and rebuilt. 
    So now I am reinstalling all the software that was on that laptop.  When I try to install the MS Project 2010 for that laptop it says that the Product Key is good and lets me install Project, but when I open Project it asks to Activate the version using
    the Key online.  When I say yes, it says that the Product cannot be activated because the Key is not valid.
    Why won't it let me activate?  It is the same version that was previously installed on the same laptop?  Please let me know what I need to do to activate this software.  Thank you.
    - Sarah

    smonville1,
    I think this is an issue you'll have to resolve by contacting Microsoft directly. Have your key available when you talk to them.
    John

Maybe you are looking for

  • Report for Consolidation

    Hi, I need to create a report for consolidation purpose. The report should contain the same information as the FBL3N sum for several GL accounts for all company codes, one line per account and for eaxh company code one row. I would like to use the re

  • Automation of service ticket  creation using RFC

    Hello Friends, Here is our new requirement. In general, in HR team , a manager / employee will perform an action that triggers a workflow in ECC. Then they will call an agent in CRM to raise a service ticket for that. Our requirement is to automate t

  • Something in 10.4.6 doesn't honour DNS case insensitivity

    Something in MacOS 10.4.6 Server doesn't honour DNS case insensitivity, and this is preventing users from logging into MacOS 10 clients of a 10.4.6 server. Is there an update to 10.4.6 to fix this yet? Does Apple plan on releasing a fix? I sure hope

  • Using my new Macbook

    I'm going to be a Freshman in college in the fall. I recently bought a Macbook for when I go away. I figured it would be really easy to take notes on a laptop cause I can just type them on Word instead of writing notes out. Then I had the idea that i

  • RFC destination problem in SWF_XI_CUSTOMIZING

    Hi, SWF_XI_CUSTOMIZING While performing SAP XI customizing (Automatic workflow customizing) on the node Maintain Runtime Environment, the system is asking question like below.. Configure RFC Destination: RFC  user  has wrong password. Synchronize pas