Removing MS office 2013 patches in windows 8.1 machine

Hi all,
Last two months before in have Deployed Ms office 2013 patches (KB2837618) in All windows 8.1 64 Bit workstations .it causing lot of outlook issues.
Now we have to remove that patches almost around 200 PC.
1.I have created task for that patch remove and add the command ""C:\Windows\System32>msiexec /I {90150000-001A-0409-1000-0000000FF1CE} MSIPATCHREMOVE={C40A6D83-E118-4A09-AAC6-A160C0F02002} /qb /norestart""
2.And deployed to device collection but we getting some error in client machine .failed with error code ""'0X80070002"""
3. I have created some method to remove windows patches in same machine and using same this command ""'C:\Windows\System32\wusa.exe /uninstall /kb:2781197 /quiet /norestart"""
Its working without any issues.
Please suggest me where in need to correct it.
Regards, Velu M

and add the command ""C:\Windows\System32>msiexec /I {90150000-001A-0409-1000-0000000FF1CE} MSIPATCHREMOVE={C40A6D83-E118-4A09-AAC6-A160C0F02002} /qb /norestart""
The command line is wrong. Just use
msiexec /I {90150000-001A-0409-1000-0000000FF1CE} MSIPATCHREMOVE={C40A6D83-E118-4A09-AAC6-A160C0F02002} /qb /norestart
instead.
Torsten Meringer | http://www.mssccmfaq.de

Similar Messages

  • Failure to Unpublish & Remove MS Office 2013 (v15.0.4659.1001)

    I was able to create an AppV for Office 2013 using the documentation provided by Microsoft (http://technet.microsoft.com/en-US/library/dn817830.aspx). And I had no issues publishing the app globally via Powershell. But the only issue is during the un-publishing
    and removing the package. Please find the error logs below.
    ****UNPUBLISHING EXCEL 2013 64Bit****
    Unpublish-AppvClientPackage : Internal AppV Integration error: Unpublish 
    operation failed.
    Operation attempted: Unpublish AppV Package. 
    AppV Error Code: 0100000018. 
    Please consult AppV Client Event Log for more details.
    At C:\Windows\ccmcache\3l\PowershellScript_Uninstall.ps1:15 char:1
    + Unpublish-AppvClientPackage -name "Microsoft Office 15 
    ProPlusVolume_en-us_x64"  ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidResult: (:) [Unpublish-AppvClientPackage] 
       , ClientException
        + FullyQualifiedErrorId : UnpublishPackageError,Microsoft.AppV.AppvClientP 
       owerShell.UnpublishAppvPackage
    ****REMOVING EXCEL 2013 64Bit****
    Remove-AppvClientPackage : Application Virtualization Service failed to 
    complete requested operation. 
    Operation attempted: Remove AppV Package. 
    AppV Error Code: 0C8007012F. 
    Error module: Streaming Manager. Internal error detail: 74F0110C8007012F. 
    Please consult AppV Client Event Log for more details.
    At C:\Windows\ccmcache\3l\PowershellScript_Uninstall.ps1:17 char:1
    + Remove-AppvClientPackage -name "Microsoft Office 15 ProPlusVolume_en-us_x64"
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidResult: (:) [Remove-AppvClientPackage], C 
       lientException
        + FullyQualifiedErrorId : RemovePackageError,Microsoft.AppV.AppvClientPowe 
       rShell.RemoveAppvPackage
    I am totally clueless about this error.
    Any thoughts?? 
    Any suggestion are greatly appreciated. 
     

    Can you post the contents of your PowerShell script? You probably need to add -global to the unpublish command if you haven't already done so.
    Dan Gough - UK App-V MVP
    Blog: packageology.com
    Twitter: @packageologist
    LinkedIn

  • Office 2013 patches not installing

    I am trying to install some updates for office 2013 through Windows update and I keep on getting the error message 80070663 when installing these (8 so far). Other windows patches
    install fine.  I am running Windows 7 Pro in a Domain environment and am a domain admin running these with full admin privileges.
    I have tried just about every fix suggested in every other post 
    - Rebuilding the Windows Update environment
    - Running Sfc (no errors)
    - Running the relevant Fixit's (no issues or repairs found)
    - Running Chkdsk Scan (no errors)
    - Downloading the patches and trying to run them manually (They error out with a applicability test error)
    - Running Antimalware and similar scans (nothing)
    - Running a repair on Office 2013 (errors out with a 5 error towards the end of the repair - faulting module msvcrt.dll fault offset 35e1
    - Downloading and reinstalling the C++ library re-distributables (i.e. msvcrt.dll)
    Not this is only on the Office patches and not any other patches which suggests an office problem rather than a Windows update issue.
    Anyone got any thoughts - There was a suggestion that this might be caused by missing update packages...

    Hi,
    Apologize for the late reply.
    Regarding Office issue, have you tried Repair Office programs from control panel?
    Follow this guide:
    Repair Office programs
    Change recommended update and diagnostic settings
    Further, since this is more related with Office, it is recommended to ask inthe office forum for a better assistance:
    Microsoft Office IT Pro
    http://social.technet.microsoft.com/Forums/office/en-US/home?category=officeitpro
    Best regards
    Michael Shao
    TechNet Community Support

  • Query to find Office 2013 Installed for a group of machines on different Subnets

    I need a query that will show all machines that have Office 2013 installed and are on certain subnets.  These are the two queries I currently have, but I need to combine them.
    Machines with Office 2013 Installed:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System           inner join SMS_G_System_ADD_REMOVE_PROGRAMS
             on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId          where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = "Microsoft Office Professional Plus 2013"    
         and SMS_G_System_ADD_REMOVE_PROGRAMS.Version = "15.0.4569.1506"          order by SMS_R_System.Name, SMS_R_System.ClientVersion
    Machines on certain subnets:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.IPSubnets = "127.0.0.0" or SMS_R_System.IPSubnets
    = "172.0.0.1"
    Any help would be appreciated.
    Thanks!

    give this a try.
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = "Microsoft Office Professional Plus 2013" and SMS_G_System_ADD_REMOVE_PROGRAMS.Version = "15.0.4569.1506" and SMS_R_System.IPSubnets = "127.0.0.0" or SMS_R_System.IPSubnets = "172.0.0.1" order by SMS_R_System.Name, SMS_R_System.ClientVersion
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Lync Client 2013 64bit instantly crashes before sign-on || Office 2013 ProPlus 64bit & Windows 8.1 Enterprise 64bit

    I have a problem with my Lync Client. It simply crashes before the sing-on with following error appearing in application log:
    Faulting application name: lync.exe, version: 15.0.4623.1000, time stamp: 0x53728995
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.17055, time stamp: 0x532954fb
    Exception code: 0xe06d7363
    Fault offset: 0x0000000000005bf8
    Faulting process id: 0xc4c
    Faulting application start time: 0x01cfa58adb7a455e
    Faulting application path: C:\Program Files\Microsoft Office\Office15\lync.exe
    Faulting module path: C:\WINDOWS\system32\KERNELBASE.dll
    Report Id: 1a57ee5a-117e-11e4-825d-28d244607082
    Faulting package full name: 
    Faulting package-relative application ID: 
    As the faulting module path is not pointing to a conflicting Bluetooth driver or anything, how to troubleshoot what software is conflicting this?
    Needless to say I've done all basic steps; reinstalling the office, updating with all the latest Office & Windows patces, repairing it, tried it with another / empty user account, etc. This is a new machine with clean Windows installation without OEM
    crippleware. Before I just uninstall everything but Office from this machine, how do I point a problem resulting a kernelbase.dll faulting?
    Only clients "Starting..." screen is showing before the crash.

    Please check if Word, Excel work correctly.
    Check if Lync 2013 works on other computer installed using the same installation media.
    Lisa Zheng
    TechNet Community Support

  • Microsoft Office 2013 gone after windows 10 upgrade (Yoga 13)

    Hello, I received microsoft 13 with my yoga 13 computer. I upgraded to windows 10 yesterday and I no longer have office at all. I do not have the key on my personal microsoft account. what should i do?

    First, make sure that you have the Toshiba Service Station application installed (see previous point by Peter)-I wasn't sure if I had it so I went ahead an installed it. The Micsoft tech went to Device Manager, then Network Adapters: Even though it appeared that my drivers were updated, the Microsoft tech went through them all and clicked update. During all of this, the Atheros AR9002WB-1ng wireless network adapter was downloaded. It didn't seem to appear to work at first, so then she went to the Atheros web site and downloaded an update.  She spend at leat 45 minutes working on the problem (and several others which occured with the new windows 10 program) which I greatly appreciated especially since I now have the Wifi.  I put in for a call back with Microsoft not really expecting one but 4 hours later did get the call and help. Feel like I won the technical support lottery.  So would dheck to see if you have the Atheros wireless adapter under Network adapters which is also pointed out in Win's posting. 

  • Office 2013 removed grammar & writing style options for Portuguese (Brazil) language

    The pt-br (Portuguese - Brazil) proofing tools for Office 2010 included many grammar options but apparently these have been removed in Office 2013. Pt-pt (Portuguese - Portugal) still retains these options for some reason. I asked about this issue on the
    Microsoft Community forum and the forum moderator confirmed that the Brazilian Portuguese Office 2013 spell checker does indeed lack these features.
    I know that the pt-br proofing tools was designed by Itautec Brazil. So I contacted the project leader and she answered me as follows:
    " Someone from Itautec contacted Microsoft and they answered: “Microsoft has now replaced all of the above features with our own versions - we do not intend to ship the Itautec features with any new Microsoft product.”"
    I would like use Office 2013, but I cannot work without a robust Brazilian Portuguese spell checker. Is using Office 2010 my only option?

    Hi,
    You can go to this page and click Download button to download Microsoft Office Proofing Tools 2013 - Portuguese (Brazil):
    http://www.microsoft.com/pt-BR/download/details.aspx?id=35400
    The current tool might be not powerful enough for you, you can always submit your feedback/requirement by clicking the smile face at the upper right corner of Office applications. Microsoft will work hard to make sure it is reviewed:
    http://blogs.office.com/2012/08/03/got-feedback-send-a-smile-or-a-frown/
    Please be assured that Microsoft product team will strive to capture Microsoft users' ideas and are working hard to create a more powerful and easy-to-use product.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • HP PhotoSmart Premium C310 - Windows 8 and Office 2013 - Where have the page sizes gone

    I have just upgraded to Office 2013 on my windows 8 PC.
    Now when I goto print, and click "printer properties" evert drop down is blank, and all the titles are in Chinese. HELP please.
    Also the page size options have now lost useful things like A4, Letter etc.
    Technet says to upgrade my printer drivers, but I'm on the latest ones, I can't contact support, as It says my printer is no under warranty support any more. I don't have fault with the printes, its with the driver. Please HP help.
    I can supply screen shots of the issue, but could not work out how to post them here!
    Everything worked O.K. with office 2010.
    Thanks

    So only print functions and printer-related settings are in another language?  Did you use the installation disc that came with the printer or did you download the software from the HP Website?
    Here is a video on how to uninstall the HP driver from Windows 8 in case you can not understand the words.  And here is a link to the Photosmart Premium C310 Full Feature Software and Drivers for a Windows 8 64-bit PC in United Kingdom.  When I went to www.hp.com/support, I selected your country first and then chose the Software and Drivers section after that.  You will want to click the "Download" button and follow those instructions.  I hope this helps you.  Let me know if this provides for you the proper driver.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • How do I install Microsoft Office 2013 on my Mac via my Windows 8 Parallels Desktop 8 partition?

    I recently bought a copy of Windows 8, Microsoft Office 2013 and Parallels Desktop 8 for Mac.
    I wanted to install a Windows partition on my Mac so that I could run MS Office 2013 on a virtual machine.
    I set up the VM, and everything was looking fine and worked smoothly.
    Then, when I inserted the MS Office 2013 disk into the CD drive, nothing happened!
    I tried to install MS Office 2013 but to no avail.
    Does anyone know how to overcome this issue?
    Thanks.

    In the Configure menu item, under Virtual Machine, configure the CD/DVD to be recognized by your SuperDrive:
    The only drawback is that you have to quit Parallels for the drive to be recognized by the Mac again.
    I just purchased the Office 365 subscription for both Office 2011 on my Mac and Office 2013 on my Windows 7 side - sure makes life simpler, and less expensive.
    Clinton

  • Windows 7 office 2013 acttivation

    Why must I activate my windows 7 microsoft office home and business 2013 every time I start up my computer and access a program (outlook) in office 2013??? I get the message "sorry we ran into a problem while trying to install the product key. If this
    keeps happening you should try repairing your office product. (system error: 0xc004d301)".  When I key the option "repair now" it works for a while and either comes back with the same message, or it shut down my program which upon restart
    come up with "activate Office".
    Robert Techo
    [email protected]

    Hi,
    Based on the description, you can't activate Office 2013 on your Windows 7 machine. Since we are not sure about the product key status or the local licensing policy, the best approach is the customer service.
    You can find the local customer service number from this link below:
    http://support2.microsoft.com/gp/customer-service-phone-numbers/en-us
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Office 2013 and Windows 2008 R2 SP1 AD RMS

    Hi All,
    I have installed Windows 2008 R2 SP1 AD RMS service, and it works well with Office 2010/2007, does not however work with office 2013, below is the error I get:
    sorry, something went wrong opening information rights management protected content. the request is not supported
    I have added the  AD RMS cluster URL and the AD RMS licensing URL to the loacl Intranet security zone (http://realercheng.wordpress.com/2013/01/23/office-2013-failed-to-create-and-consume-protected-content-with-connect-to-digital-rights-mangement-services-and-get-template/),
    however, I still get the same error.
    Does Office 2013 work with Windows 2008 AD RMS, and if it does what is the issue here and how do I go about sort it?
    KimaniBob

    Hi,
    Im am using server 2008 r2 sp1 and users are using windows 7 enterprise, office 2010 pro. plus. They can see right policy
    template with office 2010. 
    But now I have installed office 2013 pro. plus and added new admx files to new gpo for office 2013 also enabled this policy
    "Enter Permission Policy Default Server for Quick Access Toolbar" and this is writing in the policy \\serverhostname But I cant receiving ad rms templates from my outlook? 
    Is server 2008 r2 sp1 ad rms compatible with office 2013 or am I have to install server 2012 ad rms for office 2013?
    How can I fix this problem?
    Thanks.

  • Microsoft Office 2013 Windows 8 Nightmare

    I installed Office 2013 365 on windows 8 and powerpoint worked but word just kept crashing. I uninstalled and reinstalled and restarted the computer and the same crash was happening. I uninstalled completely including using the registry hot fix and reinstalled
    and now when I try to run the Office installer it says that I need a later version of windows, at least windows 7. Again, this is on windows 8.
    I am at a loss as to what to do at this stage and would appreciate any help.

    How to Ask At MS Answers site:
    Search for previous answers to similar question. If you have an error code or the exact text of an error message type it into the input field below the “Find Answers / Ask A Question” radio button. Then click on the drop down arrow portion of the Search
    button, select “All Forums”.  Look through the candidate answers. 
    Also use your favorite search engine, i.e. Google or Bing etc., to search for the error code or error message text.
    If nothing works for you then click on the “Ask A Question” radio button. This will become your Subject Line. Make it descriptive and interesting. One word subjects like “Help” or “Word 2010” tend to get ignored as a waste of our time. Then click the “ASK”
    button.  This opens a larger input field where you can include a full description. Clearly and fully describe the steps you take to create the problem. Describe what you expect to happen and what does. You get the best answers if we can recreate
    the problem.  Include the FULL and EXACT text of any error message and error code.
    click on the "ask a question" radio button at the top of this page
    type an interesting, descriptive question as your subject
    In the body input field, describe your problem.
    What you are doing to that causes a problem.
    What "error" you see.
    What you expected to see.
    Full, EXACT text of any error message. Error code if there is one
    Exactly what you have done to try and fix the problem. Saying "I've done everything" is wasting your time and ours ..., BE SPECIFIC!
    Include pictures if you thing they will help
    Include a link to a file shared (sanitized) copy of an example file
    At the bottom of the page, in the drop down, pick the most relevant forum to post in
    In the drop down pick the version of Office (it DOES make a difference in the instructions we provide)
    In the drop down, pick the specific Office application.
    At the bottom of the page, click on the blue "submit" button
    When you get replies, if any provide good information, but not a full answer, you can click on the green “YES” button on the left side of the screen.
    If you get an answer that provides the fix, click on the green “”MARK IT” button on the bottom right of the screen to “pay” for the reply. 
    If you come up with an answer of your own, based on clues provided or another source, we would appreciate it if you would do a final post with the steps to the “final solution”. That way anyone else reading the question will also have the solution. That
    is the way we ‘pay’ for this free service.  “…Pay it Forward ….”
    When you get an error, we Need the Full and
    EXACT Error message text and error code (if there is one) as Diagnostic Clues
    First rule of asking questions, you have to provide enough information about what you are doing so we can try to recreate the problem. If there is an error code generated, we need to see that
    Describe the exact steps you take to create the error (so we can try to recreate it) and the resulting error. In theory that is obvious, but apparently you didn't give us enough information to provide a good answer ... <sigh>
    We search various sources for the error message you give us to find possible solutions. So we need the exact error message text, we can't find paraphrased error messages.
    http://ask-leo.com/can_i_avoid_retyping_error_messages_when_i_need_to_report_them.html
    This link describes a shortcut to capture the FULL and EXACT error message text in a message box. As of Win 2000, <CTL><C> captures error text from most(some?) dialog boxes. Report it back here
    by pasting the text into a reply, or typing the full message if you can't copy it.
    Win7 & Win8 Problem Steps Recorder - PSR
    http://windows.microsoft.com/en-CA/windows7/How-do-I-use-Problem-Steps-Recorder
    http://www.maximumpc.com/article/how-tos/how_use_windows_7_problem_steps_recorder_make_easy_pc_guides 
    http://msdn.microsoft.com/en-us/library/dd371782%28v=vs.85%29.aspx
    http://www.7tutorials.com/easy-troubleshooting-and-problem-solving-problem-steps-recorder 
    https://www.youtube.com/watch?v=z6EgLm3-XcQ
    http://blogs.msdn.com/b/patricka/archive/2010/01/04/using-the-secret-windows-7-problem-step-recorder-to-create-step-by-step-screenshot-documents.aspx
    Please use the Problem Steps Recorder to capture what you are doing so we have more details to work with. Either copy and paste the recorded steps into the forum or upload the zip file to Skydrive and give us a link to the
    zip file
    Solving problems unique to a machine can be an arduous task for both the end-user and the help desk. That’s why Win7 introduces the Problem Steps Recorder, a screen-capture tool that allows the end-user to record the problems they’re having step-by-step.
    If the problem is repeatable, the recorder will capture what you do in text form.
    It’s as simple as hitting “record” then adding in comments as needed. A HTML-based file is converted to a .ZIP folder, which is easily passed on to the help desk.
     The program is accessible from the Control Panel under “Record steps to reproduce a problem” or run psr.exe from Explorer.
    Upload result to a file share site and post the link back here.
    Does this help?
    Office Needs a Newer Version of Windows – We’re Sorry, we couldn’t install your Office product because you don’t have a modern Windows Operating System. You need Microsoft Win7 (or newer) to install this product.
    http://sdrv.ms/QmLxfn
    Save the New Office setup file locally on the Computer then follow the steps mentioned below then install new Office and check if that helps:
    Right click on the new Office setup file then click on the ‘Properties’ option.
    Click on the compatibility tab.
    Uncheck ‘Run this program in compatibility mode for’ checkbox and uncheck ‘Run this program as an administrator’ check box and click Ok.
    If the above steps does not resolves the issue then try disabling Security Antivirus manually and then try installing New Office.
    You may also restart the system in Win7 clean boot and try installing New Office there. 
    http://support.microsoft.com/kb/929135

  • Office 2013, click icon nothing happens, no errors, no eventlog, MANY clients with this issue

    We're an IT solutions provider for companies of all sizes as well, as residential users, and we've been plagued by a new Microsoft-caused issue that's seriously affecting our client's perception of us since it seems like 'you didn't fix it the first
    time' or 'you sold us the computer', so it's our responsibility to fix for free.
    We've experienced this with 17 people so far, ranging from residential clients with systems that have come from big box stores and from systems we've sold with Microsoft Office 2013 and basically the entire suite stops working.
    If you click an icon, you may see an hour glass for a few seconds and nothing happens (but usually nothing happens at all, as though you didn't click it).
    Diagnostic steps:
    No errors in eventlog, neither under system or application.
    No third party add-ins, sometimes it's a stock install on a new / fresh system.
    Starting Microsoft Office applications in safe mode, like winword /safe, has no effect.
    A quick repair or an online repair will not resolve the issue, it will say it's done but issue still exists.
    Microsoft Office 2013 cannot be uninstalled, we always receive the same error code: 0-4
    Some systems do not have third party antivirus, some are simply using Microsoft Security Essentials.
    This affects all Microsoft Office applications, including Outlook.
    Makes no difference if you use another user account or run-as admin.
    All Microsoft Office 2013 updates have been installed.
    The installation source is undetermined but recent issues stemmed from a physical media (.ISO) install from Microsoft's latest source.
    You cannot start the software by clicking on documents created with Office applications.
    The only way to remove Microsoft Office 2013 is with the removal tool "O15CTRRemove.diagcab".
    The problem returns after a random period of days and no client can relay the actual cause of the issue, it seems random in nature. After the issue is experienced, we go through the same steps including the necessity to utilize the removal tool.  
    This seems to be a new issue that's come out of the blue within the past few weeks, at least on our end. When 17 random people call out of the blue with the same problem, it suggests it's Windows Update related.
    I'm really hoping someone has some insight into this Microsoft glitch and knows of a secret hotfix or special trick to prevent it. I attempted to call Microsoft and it would be more enjoyable to punch a concrete wall since you're dealing with useless people
    in a foreign country who can't really comprehend the seriousness or technicality of the issue, and don't really care, and aren't skilled enough to provide
    insight.
    Does anyone know about this problem?

    Thank you for the reply.
    I understand the flash you are receiving while launching Excel or Word is very fast. However just wanted to check if it is possible to get a screenshot of it.
    Also, are you able to work fine on Excel or Word even after receiving the flash.
    It seems the Office installation might have not been done properly.
    There is a possibility, everytime you Uninstall any application, there are still some patches left behind which could cause an issue while Installing the same application again or even after Installation is successful, it sometimes gives
    issue while launching the application.
    If you want to give a try, you may try to Uninstall the product using Offscrub by clicking on the below link & then can have a fresh installation again.
    http://support.microsoft.com/kb/2739501
    Please let me know the status update once done
    Abhijeet, the box flash happens too fast for me to capture a screenshot of it but I believe it's similar to the smaller box activation process (enter your email).
    Word and Excel work fine whenever this is observed.
    I'm skeptical that this is a "not done properly" kind of scenario, especially when it applies to so many people and many have brand new computers. How can you take a Microsoft Office disc and install it improperly on a new PC? Or how can a person
    go through Microsoft's https://officesetup.getmicrosoftkey.com/ setup, use the software for months and suddenly it stops working? If this is a 'not done properly' scenario, then this is a failing of Microsoft's
    installation source. I can't reiterate this enough, the software works fine for people since installation date and then randomly stops working at a much later date (but many of them failed last month and this is a newer issue).
    I'm starting to get frustrated again as I'd already stated we've used your linked removal tool in my first post and the problem has returned for another user by which I'd used it and reinstalled the product. The client who's PC we have now, one we'd sold
    them, needs to be returned to them and while Microsoft Office is currently working, I was told that if this happens again, they're "going to throw the f#(*@ computer in the river". No joke.
    If we're at the point where we've moved past evaluating logs, registry keys, or file versions or anything along the lines of a developer determining how this Microsoft bug occurs, then I'll return the system back to the client and hope for the best.
    Three strikes and I'm out with this one but perhaps the delayed startup is the final solution... I just wish I knew for sure as we've had a bad year taking a beating for Microsoft's products and their support is the worst in the industry.
    It's further frustrating that since I'd touched base with Microsoft via phone calls, the only person who's been able to provide any insight into the issue is me.

  • Unable to restart the Microsoft Software Protection Platform service from command line - Win81 MS Office 2013 SP1

    I'm unable to restart the Microsoft Software Protection Platform service on a Windows 8.1 laptop for MS Office 2013 SP1 (32-bit) using the following command:
    cscript ospp.vbs /osppsvcrestart (issued from C:\Program Files (x86)\Microsoft Office\Office15)
    When this is run, a window appears with the title ospp.vbs and the text "Error: The Software Protection Platform service is not installed"
    I verified that the service is installed in services.msc, and was able to manually stop and restart the SPP service in the Services console without issue.
    The command runs correctly when restarting the MS Office 2013 SPP on Windows 7 devices.
    Has anyone else seen this or have a solution for it?
    The reason that I am attempting to restart the service from the command line is because this command is part of a script to change the KMS server IP Address used by OSPP prior to software activation.
    The only other options that I have at this time is to ask the users to reboot, or manually force a reboot.  This is both time consuming and disruptive to the users.
    The Fix It tool to remove MS Office 2013 was run, and the MS Office 2013 software was successfully reinstalled after a reboot.  The software was successfully activated.  When the command was run, it produced the same exact error.

    Hi,
    I am able to reproduce this on my own machine, but in my case, I don't see the specific service running in the Services console. 
    I would like first confirm that whether you've the right service running on your Windows 8.1 system. The display name of this service should be "Office Software Protection Platform", service name is "osppsvc".
    You can also check this by going to below path where you should see the executable file (OSPPSVC.EXE) if the service is installed on your system (in my case, the folder is empty):
    C:\Program Files\Common Files\Microsoft Shared\OfficeSoftwareProtectionPlatform
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Office 2013 ProPlus HUP

    I have (had) installed two copies of Office 2013 Proplus HUP, on my main PC and on my laptop (both Win 7).   My main PC motherboard died and I replaced it and at the same time upgraded Windows to 8.1.   I installed Office 2013 HUP again
    but I can't activate it because Microsoft licencing responds that both my licences are active.   I cannot see any way to uninstall the licence for my main PC, I have tried to get to speak to someone by doing a telephone activation but you never get
    to speak to a real person.  I tried to re-install Win 7 so as to try to uninstall office 2013 from my hard drive but Windows 7 only wants to do a clean install which means I lose the original Office 2013 registration and again can't uninstall.  I've
    seen suggestions that this is possible through "My account" but I don't get that option when I check mine.       I've been through the Microsoft support site and when I put in my product code it says it's expired
    which is odd because HUP is as far as I can tell an extension of our business licence and that is very much still active.  Seems I can get support but it will cost me £65 when the software itself only cost me £8.95!!!
    Two questions, 1) if I uninstall Office 2013 HUP from my laptop, does this get picked up by the Microsoft registration service and then permit me to activate it on my new main PC, 2) is there a support service in the UK from Microsoft who could help sort
    this out without charging the earth?  

    Before answering your question, I would like to show your the FAQ below:
    Q1: On how many computers can I install the software?
    A: 2 computers, either 2 PCs or 2 Macs, specific to the software that was purchased.
    Q2: Is Internet access required for Office?
    A: Internet access is required to install and activate all the latest releases of Office suites.
    More FAQ about Office 2013 HUP, visit
    here.
    Answer your questions:
    A1: Since your previous motherboard is damaged, remove the Office 2013 related file woudn't picked up by the Microsoft registration service or permit you to activate it on your new PC. You have to activate the Office product by using the telephone
    A2: Customer Service is free service which can help you by locating the appropriate answers or resources.
    You may also contact here:
    https://www.microsofthup.com/hupsg/contactus.aspx?culture=en-GB
    Thanks.
    Tony Chen
    TechNet Community Support

Maybe you are looking for

  • Adding data to Power BI Q&A

    Hi, I am unable to add data to my Power BI App. I just see 1 folder and 1 file there the elipses (...) when clicked only displays one option "Open in Excel". What may be the problem?

  • Submit/Export/Import in a report

    Hi all , I have a report ZPP and know i am to developing a new report 'ZPP01' where i want to use the final internal table ITAB of  'ZPP' how to directly get the value of Final ITAB of ZPP into my report 'ZPP01' so that i use it's value directly in n

  • Recovery partition with no recovery

    Hello, My customer's laptop (Compaq Presario CQ58 - hopefully it's good place to ask that question) had some issues with hard drive, so I replace it with bigger one. I've cloned all partition trying to save 3 other sizes (Compaq specific ones: first,

  • Plan not found

    hi everyone, i am deploying a jms adapter after configuring new jms queue and connection pool. what happened is i mistakenly deleted plan.xml in following path C:\Oracle\Middleware\home_11gR1\Oracle_SOA1\soa\connectors.so what i did i created a new p

  • Binding multiple objects into one

    I'm creating a form, and i already have 5 drop down boxes that are bound to 5 other text boxes that generate numbers based on each selection.  This gives me a 10 digit number for purchasing. (2 digit- 1 digit - 4 digit - 2 digit - 1 digit) My questio