Application Supersedence - Office 2007MSI Office365C2R

Ok, so. I'm kind of the specialist here on program deployment for our company -
I've got around most of the issues we've seen, but the Application system is
totally new to me (we just upgraded from SCCM 2007, where "applications" don't
exist).
I'm trying to create a deployment for Office365 - I can get it
to install, that's no problem. I used the appV packager part of the setup file,
so it even does the streaming.
The problem I've got is that we're upgrading
to that from Office 2007, which was installed via MSI. I found a page that
describes the steps required to add it into the system (given the setup file is
an exe, and the application system imports from msi). I imported the
ProPlusWW.msi file as recommended, and changed the install/uninstall commands to
use the setup.exe file (setup.exe /uninstall for removal). Now, when I set the
system up for O365 to supersede office 2007, it should remove the old version,
right? I run the application from the software centre, and lo! setup.exe *32
appears, which should be the removal.
It sticks at a low amount of
RAM, confirmed to match the amount used when it's got to the "are you sure you
want to remove this software?" prompt. So, I go and create a new xml file with
"displaylevel="none" in it, and reboot value="NEVER" to get it to remove without
prompt, and without rebooting the PC in the middle of someone working... It
still sticks the process at the low level of RAM use (1740k), and I've
left it for over 30 minutes to make sure - should be more than enough time for
it to do what it needs to do.
Anyone have any ideas? Please ask if you
need any more information to help me.... Being as I can't figure out the issue,
I can't be sure what you might need to know about it.
Thanks.

Naturally, I've been trying to sort this out myself...
I've edited the
uninstall command to just use msiexec /x {product key} /q /norestart.
It launches msiexec, setup.exe and starts uninstalling!.... at that exact
moment, the Office 365 install says "failed", and stops doing anything else...
Office 2007 continues to uninstall, and just sits there doing nothing....

Similar Messages

  • Application Supersedence not working as I want and expect!

    Hello,
    I need help to find out how to properly deploy an upgraded application using the SCCM 2012 Application supersedence.
    What I have
    One application in production with version 1.0. Let us call it APPL-BLUE1.0
    New application of the same product with version 2.0. Let us call it APPL-RED2.0
    What I want to achieve (the goal)
    Users should be notified via the Software Center that a new update is available. The new update should not be installed until the user is ready and manually triggers the installation via the Software Center.
    My configuration settings
    On application APPL-RED2.0 I have gone to Properties -> Supsersedence and added the APPL-BLUE1.0 to the Supsersdence list. Replacement Deployment Type is configured (set to the Deployment type for the APPL-RED2.0) and
    the Uninstall checkbox is checked (to uninstall the APPL-BLUE1.0 deployment type first).
    Install behaviour for APPL-RED2.0 is "Install for system" and "Whether or not a user is logged on" with Normal visibility.
    Then I create the Deployment which I have tried three different ways.
    Action: Install, Purpose: Available, "Automatically upgrade any superseded versions of this application"
    unchecked.
    Action: Install, Purpose: Available, "Automatically upgrade any superseded versions of this application" checked.
    Action: Install, Purpose: Required, "Automatically upgrade any superseded versions of this application" checked (forced, greyed out).
    What happens
    The application is not automatically made available in the users Software Center at all. No notification is presented and the user has to access the installation by looking in the Application Catalogue
    first. Once found in the Application Catalogue the installation runs without problems but this means that the user must somehow know there is a new version available through other means.
    The application is automatically installed (without regard to whether or not the application is in use) on the client and a notification is presented on the users machine (Software Center).
    Exactly the same result as for #2.
    This conflicts with what I want to achieve. I want a notification and that the application is automatically made available for installation in the Software Center but I do not want it to automatically upgrade but rather let the user initiate the installation
    whe he or she is ready (i.e. when the application is not in use).
    Please point me in the right direction in order to accomplish this.
    Thank you.
    Sindre

    Have you tried changing the application deployment evaluation cycle to increase the speed the update is detected?
    also with the notification issue, I have a similar problem and have a script in place. Our business rules are to install the application asap giving the user 6 mins to close it. but this script could easily be changed to allow it to wait non stop.
    Or maybe you could set a requirement for the deployment type, a custom script that checks if the application is running, but I am not sure on what cycle the application will evaluate this. or if it will evaluate it then download the application (leaving
    a window for the application to be run)
    Also in case it is not obvious I have removed functions and keywords. but this should give you an idea of how to achieve your desired results
    'Check if current version
    if CheckMSIVersion("{removed}","removed") = 1 then
    wscript.quit(0)
    end if
    'sets path of script
    strScriptDir = getParentDirectory
    intACProcesses = CountACProcesses
    'Check if running
    if intACProcesses >= 1 then
    'runs warning HTA
    wshShell.Run ("""" & strScriptDir & "\BeforeInstallAlert.hta """),3,False
    'Untill app is closed keep activating alert and checking to see if it is running
    const timeout = 360000
    const timepoll = 15000
    do while intACProcesses >= 1 and i < timeout
    intACProcesses = CountACProcesses
    if intACProcesses >= 1 Then
    wscript.sleep timepoll
    end if
    i=i+timepoll
    wshshell.AppActivate "Appname Upgrade Alert"
    Loop
    end if
    'Kill AC
    killProcesses("appname%")
    'Kill HTA processes
    killProcesses("mshta.exe")
    'Install new and record exit code
    intExitCode = WshShell.Run("msiexec /i """ & strScriptDir & "\removed.msi"" /qn",0, true)
    'if install fails exit with exitcode
    if intExitCode <> 0 then
    wscript.quit(intExitCode)
    end if
    'Run New client
    WshShell.Run("""" & findACProgramDir & "removed.exe"""),1,false
    'Run finished HTA
    wshShell.Run ("""" & strScriptDir & "\AfterInstallAlert.hta"""),3,False
    'Exit with code
    wscript.quit(intExitCode)
    Quote by andhey "hmm ill try it later, i accidentally deleted all my tv shows when trying to delete a word document lmao"

  • Application Supersedence

    Hi!
    I want to test supersedence on one computer and have a question,
    I have application10, it will be superseeded by application10.1,
    Can I deploy application 10.1 to my test collection that contains 1 computer,  to see if it replaces application 10 or will it also upgrade all the application10´s out in production? that would be a nightmare if the supersedence doesnt work
    and the production computers end up with damaged installations of the application.  
    can i add some sort of condition so that it only superseeds on a specific computername?
    Do i need a complete test environment for this?
    / Lars

    I recently found this to be untrue....Veru funny surprise indeed!
    I set our new Office 2013 application to superseede Office 2010, then I deployed it to a small test group.
    Imagine my joy when ~200 users got this Upgrade (and it would have been a lot more had I not stopped the deployment)! Not only was it available, but if the user was logged out
    it immediately uninstalled Office 2010 and installed Office 2013!
    This was a very fun surprise indeed, the helpdesk staff did not like me very much the next few days while they had to assist the poor users for a downgrade :)
    It was my first mistake in SCCM, but to be honest it did not feel like a mistake. More like SCCM being strange. Now we have to resort to using registry settings to enable Office 2013 testing (setting the custom registry key as a requirement for the application)

  • Application builder-Office report generation toolkit

    Hi,
    I remember there was a trick to get the executable work with different
    versions of Microsoft office but I cannot find it now. The problem it to get
    the exe work with some other office version that it was made. I use LabVIEW
    7.0 - 7.1 and Report generation toolkit 1.01 for Microsoft office. Was that
    possible?
    Thanks Eki

    Eki,
    When you use the Report Generation Toolkit to build a stand-alone application with the Application Builder, you must add _Word Dynamic VIs.vi from _wordsub.llb and _Excel Dynamic VIs.vi from _exclsub.llb as dynamic VIs. These two VIs contain subVIs that are called dynamically by the high-level Report Generation VIs. I believe that if you grab these VIs from the (desired office version part of the) installation CD instead of from the development machine, then everything should work.
    Zvezdana S.

  • OSX 10.7.4. will not save ANY of my preferences (system or application -- Safari, Office, etc.)

    I am running System OSX 10.7.4 on three different MacBooks.  It will not save any of my preferences (system or application based), passwords, log-ins and keychain. Even Safari did not save imported bookmarks.  I am running Office For Mac 2011 (v 14.2.1) and Outlook will work for a day or two and then I get a rebuild database error message, losing everything.  Word, et all, will not save any preferences, not even recent files.
    I did a full erase and clean system reinstall and a fresh install of Office. This problem occurs on all 3 of my MacBook, 2- MacBook Pro’s and a MacAir.  One of the MacBook Pro’s is BRAND NEW. 
    Any ideas, any fixes out there?

    I have what seems to be a similar issue. Are you having other issues like mine?
    Macbook air      11-inch, Late 2010
                            4 GB 1067 MHz DDR3
    Software           Mac OS X Lion 10.7.4 (11E53)
    I have updated the latest combi update from the apple site and still have the same issue.
    No matter what I try every time I restart my Mac all my preferences and applications reset. (Also preferences don't save when exiting the preference folder)
    For example when in >system preferences>general -untick the 'restore windows when quitting and re-open apps' I exit preferences and then go back in to check it has automatically reticked the box.
    I have deleted 2 applications several times (including removing the icon from the dock) and each time after restarting it shows a question mark on the dock where I had deleted it from.
    On restart I loose downloads and history in safai.
    On restart it re opens documents and applications I have quite even after unticking the restore applications on restart box (the one that comes up when shutting down or restarting)
    I have been trying to solve this for a month now and it really is frustrating the **** out of me.
    helpppp pleaseee...

  • Virtual Application: Activation Office 2013

    Hello All,
    We have created virtual office application as directed in Office Deployment method. In Config.xml we gave "ProPlusVolume" we got out final .appv file
    We need to deploy this virtual application to all our clients. We are having a tough time in getting this done. 
    How do we activate this virtual application?
    Some blogs say MAK and KMS cannot be used for Virtual application, it is supported only for Non-Virtual application
    is this right? or using KMS we could achieve?
    How activation for Office 2013 applications can be achieved using VLSC?
     Any help would be greatly appreciated
    Thanks!

    Hello,
    If you are using KMS / AD-based activation I would guess it would detect it automatically.
    If using MAK - see the option to use ospp.vbs
    http://technet.microsoft.com/en-us/library/dn385359(v=office.15).aspx
    I haven't tried the above options, but it would be the most obvious chocies.
    Nicke Källén | The Knack| Twitter:
    @Znackattack

  • Error code 0x645(1605) when using application supersedence

    I've created a new version of an application that supersedes the previous version. I'd like the new version to uninstall the previous version, as otherwise it will install alongside it. Each version has a different MSI product code.
    I created the application for the new version along with the supersedence rule, setting it to uninstall the previous version. I then set up a test VM with the old application and tried to install the new one via the Application Catalog. However, when the
    Software Center begins the installation and tries to remove the old version, it fails with: "The software change returned error code 0x645(1605)"
    I verified that the uninstall string for the old version is correct: I can even manually run it on the VM and it begins to uninstall the old version. I thought that 1605 indicated that the product that's trying to be removed is not present, but since the
    uninstall string works I'm not certain what exactly is going on.
    Any help that can be offered would be most appreciated. Thank you!

    Thanks for responding so quickly! I ran it manually and the new version of the program installs ok. I used the same command line that I specified in the MSI deployment type (and there's only the one deployment type). So it seems that the error occurs when
    SCCM implements the supersedence rule and tries to uninstall the old version.
    I checked Event Viewer and I see two entries for when the program is attempting to uninstall, but they are simply the entries that say "beginning a windows installer transaction" and "ending a windows installer transaction." There's no error in Event Viewer.
    The entries feature the MSI product code of the product; if I copy that product code and run msiexec /x with it, it uninstalls.

  • How to call an applescript application from Office 2011 Excel VBA

    All:
    I have been pounding my head how to implement a working VBA application into the Mac environment. I have tried a number of approaches calling applescript from VBA. I would like to call my applescript application and pass one argument. My applescript application is as follows:
    <code>
    on run argv
    set theURL to (item 1 of argv)
    set p_path to do shell script "echo ~"
    set m_path to POSIX file p_path
    set theName to text -((offset of "/" in (reverse of characters of theURL) as text) - 1) thru -1 of theURL
    set theFile to (p_path & "/Downloads/" & theName)
    set macPath to (POSIX file theFile)
    do shell script "/usr/bin/curl " & theURL & " -o " & quoted form of POSIX path of macPath
    end run
    </code>
    My last attempt within VBA is:
    <code>
    Sub SaveMetaDataFile(URL As String, shortFileName As String)
    Dim scriptToRun As String
    Dim posixcmd As String
    posixcmd = ThisWorkbook.Path
    scriptToRun = "tell application " & posixcmd & ":MetaDataFileDownloadScript.app " & URL
    MsgBox "[" & scriptToRun & "]"
    MacScript (scriptToRun)
    </code>
    I first tried to call the script directly without the "tell application" and I still obtain an error. I also tried the following in VBA and I get the same error with the last lane of code:
    <code>
    scriptToRun = "set theURL to " & """" & URL & """" & Chr(13)
    scriptToRun = scriptToRun & "set p_path to do shell script " & """" & "/bin/echo ~ " & """" & Chr(13)
    scriptToRun = scriptToRun & "set m_path to " & """" & posixcmd & """" & Chr(13)
    scriptToRun = scriptToRun & "set theName to " & """" & shortFileName & """" & Chr(13)
    scriptToRun = scriptToRun & "set theFile to (p_path & " & """/Downloads/""" & " & theName)" & Chr(13)
    scriptToRun = scriptToRun & "set macPath to (POSIX file theFile)" & Chr(13)
    scriptToRun = scriptToRun & "do shell script " & """" & "/usr/bin/curl " & """" & " & " & " theURL " & " & " & """" & " -o " & """" & " & " & " quoted form of POSIX path of macPath"
    MsgBox scriptToRun
    'scriptToRun = scriptToRun & "do shell script " & """/usr/bin/curl """ & " & " & " theURL " & """ -o """ & " & " & " quoted form of POSIX path of macPath"
    MacScript (scriptToRun)
    </code>
    The above code is from the applescript application. The applescript application works well using the terminal via osascript. For example:
    xenas-imac:Census Work Xena$ osascript MetaDataFileDownloadScript.app http://www2.census.gove/acs20095yr/summaryfile/Sequence_Number_and_Table_numberLookup.xls
    xenas-imac:Census Work Xena$
    The whole goal is to download a file into the Download directory from Excel to allow the next step to import the file into Excel for the user. Any help here would be great!
    Thank you;
    Lori

    Update:
    Ok have the module almost working and matches the syntax within the test applescript I had created, but the VBA code via the MacScript() call is generating an invalid procedure or argument call. The following is the test applescript to compare the created string to be passed to VBA MacScript() function:
    <code>
    set appPath to quoted form of POSIX path of "Macintosh HD:Users:Xena:Desktop:Census Work:"
    do shell script "/usr/bin/osascript " & appPath & "MetaDataFileDownloadScript.app " & "http://www2.census.gove/acs20095yr/summaryfile/Sequence_Number_and_Table_numberLookup.xls"
    </code>
    The following is the VBA module that generates the above word for word as far as I can tell:
    <code>
    Sub SaveMetaDataFile(URL As String, shortFileName As String)
    Dim scriptToRun As String
    Dim posixcmd As String
    posixcmd = ThisWorkbook.Path
    posixcmd = posixcmd & ":"
    scriptToRun = "set appPath to quoted form of POSIX path of " & Chr(34) & posixcmd & Chr(34) & Chr(13)
    scriptToRun = scriptToRun & "do shell script " & Chr(34) & "/usr/bin/osascript " & Chr(34) & " & appPath & " & Chr(34) & "MetaDataFileDownloadScript.app " & Chr(34) & " & " & Chr(34) & URL & Chr(34)
    MsgBox "[" & scriptToRun & "]"
    MacScript (scriptToRun)
    End Sub
    </code>
    The message box in the above VBA code matches my test applescript file and I have taken the output of the MsgBox and used it in a test applescript and it works great, but VBA is throwing "Run-time error '5': Invalid procedure call or argument".
    Looking at Microsoft's definition it takes a string argument and I have made sure that scriptToRun is a string type, so at this point I suspect there is something wrong with the MacScript() funciton, or I am missing something above. Is there another way to call an applescript application from VBA outside the MacScript() function? Or is there something I am missing? Any help or suggestions is needed.
    Thank you;
    Lori (CodeXena)

  • Cloud Business Application on Office 365 Problem

    Hello,
    trying to create my first CBA on Office 365 (production environment). When i press F5 and start the Debug i get the following deployment error:
    Sideloading of App not Enabled  in this Site.
    Any suggestion?
    Thank you so much

    You can also enable side-loading on non-developer sites using powershell like so:
    http://blogs.msdn.com/b/officeapps/archive/2013/12/10/enable-app-sideloading-in-your-non-developer-site-collection.aspx
    HTH,
    Josh

  • Open applications from office suite etc

    I would just like to say that I'm very unhappy with my purchase of this iPad Air as every time it need to do something I need to google it. Just recently sent a PDF doc from work PC to ipad and I couldn't even open it. After time wasting browsing this forums and eventually calling the help desk I was informed that ipad doesn't support that file ext.......really now!!!!!!
    Will defiantly be switching over once this contract is up :(

    In fact, iOS 7 can quickview any of the following file types as a mail attachment:
    .jpg, .tiff, .gif (images); .doc and .docx (Microsoft Word); .htm and .html (web pages); .key (Keynote); .numbers (Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt and .pptx (Microsoft PowerPoint); .txt (text); .rtf (rich text format); .vcf (contact information); .xls and .xlsx (Microsoft Excel); .zip; .ics
    and there are a plethora of apps that can open other file types, as well as create or edit them, so as Rob said, you have been misinformed.
    Regards.

  • Printing causes Office 2013 applications to crash

    We’ve a fresh installed Windows 8 Pro and Office 2013. Printing works correctly in every application but Office 2013.
    Word, Excel, Outlook … printing causes the application to crash.
    Any idea if this is a known issue?
    Regards.
    Peter
    Peter Van Keymeulen, IT Infrastructure Solution Architect, www.edeconsulting.be

    This is the answer that fixes the problem every time, based on my experience and that of others. It works for both the 32 & 64-bit versions of Windows (I'm one of those odd ducks who runs 32-bit Windows 8.1 Professional and it worked perfectly for me).
    The problem is not Windows, either 7 or 8, it's Office 2013 and a variety of unique HP LaserJet printers.  By the way, the glitch occurs whether you use networked printing or a USB cable; I discovered that early-on when I
    was trying to troubleshoot the issue.  Also (and it should go without saying), always reboot the computer after you make the change to the driver.  Thanks to Shane, who apparently was the first one to discover the solution over a year ago, right
    after Office 2013 came out and the problem manifested itself.
    After lots of testing I have found a setting that has fixed all my HP CP5520 and HP M4555 printers that were crashing when printing from Office 365's 2013 pro plus.
    It's the driver setting in Device settings -> Installable options -> Printer Status notification, this needs to be disabled.
    I hope this also fixes other peoples problems.
    Shane

  • Problem running Office 2004 applications

    When I try to run any office 2004 for mac application I get the error:
    Microsoft Word: launch failed with error code -2855 (cfragStdFolderErr) for application /Applications/Microsoft Office 2004/Microsoft Word\n
    It only happens with office 2004. All of my other applications seem to run perfectly.
    Can anyone help me with this problem (i.e. offer a possible solution)?
    Thanks
    Apple Macbook 13.3" Mac OS X (10.4.8)
    Apple Macbook 13.3"   Mac OS X (10.4.8)  

    I can't run anything associated with office 2004. I tried downloading the 11.3.4 update and when I try to run it I still get the same error.
    I should have mentioned earlier, the error only shows up in the console; when I click on an office 2004 application, the icon bounces once and does nothing.
    Thanks for the ideas...Do you think I should reinstall os X. I've only had my computer for 2 wks, so it would be easy to back up my personal stuff and reinstall. I do most of my work on office. I can't do anything without it.

  • How to customize the landing page of Power BI application in a Office 365 Site?

    Hi,
    While we navigate to the Power BI application by clicking the icon from the Site Contents of a Office 365 site, everything is loaded in it.
    But we would like to customize / edit the page, so that all users will see the contents we put in.
    We are SCA / having Full Control on the site but we have limited options in the Power BI application.
    Please provide pointers on how to Edit / Customize the application.
    Thanks,
    Thanan.

    It looks as of now Power BI application on Office 365 doesn't supports any customization.
    Thanks,
    Sagar K 
    (Blog: http://datamazik.blogspot.in/)

  • Message Error : Visual Basic for Applications (VBA) is not installed - Office Home & Business 2013 - Lync 2013

    Hi,
    I have an issue related to Office h&b 2013 and Lync 2013.
    Office h&b is installed on many computers, and we are deploying Lync 2013.
    In Lync 2013 it's possible to share Powerpoint presentation (if you have a Office Web Apps server installed).
    With a PC using Office Pro 2013, no problem. Powerpoint sharing with Lync 2013 is working.
    With a PC using Office H&B 2013, I have a message : 
    "XXXXX.pptx couldn't be converted for presentations because Visual Basic for Applications (VBA) is not installed on this computer. Please
    install VBA and try again."
    VBA is installed and usable in all Office applications.
    Office H&B is a click to Run installation and doesn't permit to add or remove features.
    Lync 2013 custom install permit to choose the installed features. VBA is already installed.
    I searched in many forums, including this one, and... no answers, or better say, no good answers.
    Because :
    - It's not possible add VBA from Office H&B 2013 install.
    - Repairing Office does not solve the problem.
    Any Idea ?
    Thanks for your help !
    Regards
    Stéphane

    As far as I know, Lync 2013 is not available with Office Home & Business 2013, you can check
    http://office.microsoft.com/en-in/home-and-business/
    Lisa Zheng
    TechNet Community Support
    Dear Lisa,
    Yes, it's true, Lync 2013 is not part of Office home & Business 2013, but you can install,it as standalone product.

  • Create ribbon button to launch my webpage in office 365 content pane application using napa tool for sharepoint

    Hi ,
    I have created Excel content pane application in office 365 using NAPA tool for SharePoint,so  here  i need to launch my page through the ribbon button instead of directly loading .
    please provide me some samples how to get ribbon for office 365 content pane application and on click of ribbon how to interact the page through the ribbon.
    Thanks
    Lokesh

    Actually i want to Create Custom Ribbon  for office 365 with the help of napa tool, without use of Visual studio 2013. 
    Please provide me a sample or help regarding to create Office 365 ribbon using "NAPA"
    Thanks
    Abhishek

Maybe you are looking for

  • How to access a TM back up of an HD that was damaged and replaced

    Hi, My HD gave up the ghost after running very slowly for a while on my MacBook Pro 17" 2006 model using OSX Leopard. I bought a new MacBook Air running OSX Lion but did not recover from the Time Machine on Airport Extreme as a friend told me that fi

  • Is it possible to set frame size for a new project ?

    Hi all, i would like to create a video in which there will be 2 videos playing the same content from a different angle. Each video is 512 x 384 . So i would like to set the frame size of the project as 1024 x 768 in order both videos to exist. I sear

  • Mpeg 2 import issue

    Hi, I keep having the same problem importing an Mpeg 2 file (.m2v) into DVDSP 4. The file name appears in the asset window, however it's color is faded. then after 5 seconds or so, it disappears. The 'Video Asset' details appear on the right side of

  • SAP BPX for Masterdata - coming soon ?

    Dear community, maybe you have seen the SAP F&R BPX page under The question is open, do we need an additional BPX page for common masterdata in SAP Retail Please post in this thread, which topics are from interest. All topics should be related to the

  • Hyperion 8.5 on AIX, need to know the exact version.

    Hi, I have Hyperion 8.5 installed on one of the development machines. I want to know the exact/full version which is installed. There are version numbers(8.5.0.268) specified in /brio8/etc/brio.rc file. Is this the correct place to check the full ver