OLK folder delete Office 2010

I am trying to delete the content of Outlook 2010. The location is right. Using the following script as a logoff script to delete the content (location of Office2010 is the right one there are the files but they stay there after several restart of the Windows
7 system the scipt is also not working when start it manually. The scipt is in a batchfile OLK.cmd:
rem ***** this script is answer for wollowing:  http://support.microsoft.com/kb/817878 
rem *** tested on Wiindows XP, 7; office 2007, 2010 
VERIFY OTHER 2>nul 
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION 
if errorlevel 1 goto :eof  
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Microsoft\Office\11.0\Outlook\Security /v OutlookSecureTempFolder') do set office2003=%%~sb 
if defined office2003 ( 
    call :clear %office2003% 
    set office2003=)  
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Policies\Microsoft\Office\11.0\Outlook\Security /v OutlookSecureTempFolder') do set office2003=%%~sb 
if defined office2003 ( 
    call :clear %office2003% 
    set office2003=)  
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Microsoft\Office\12.0\Outlook\Security /v OutlookSecureTempFolder') do set office2007=%%~sb 
if defined office2007 ( 
    call :clear %office2007% 
    set office2007=) 
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Policies\Microsoft\Office\12.0\Outlook\Security /v OutlookSecureTempFolder') do set office2007=%%~sb 
if defined office2007 ( 
    call :clear %office2007% 
    set office2007=) 
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Microsoft\Office\14.0\Outlook\Security /v OutlookSecureTempFolder') do set office2010=%%~sb 
if defined office2010 ( 
    call :clear %office2010% 
    set office2010=) 
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Policies\Microsoft\Office\14.0\Outlook\Security /v OutlookSecureTempFolder') do set office2010=%%~sb 
if defined office2010 ( 
    call :clear %office2010% 
    set office2010=) 
call :clear %temp%\ 
goto :eof 
:clear 
 attrib -H /D /S "%1*" 
 DEL /S /Q /F "%1*.*" 
 for /D %%d in ("%1*.*") do RD /S /Q "%%d" 
freddie

I have reduced the script as follows and put a pause in the batchfile: The scipt looks like it is running without erros but the folder is not emptied...
VERIFY OTHER 2>nul 
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION 
if errorlevel 1 goto :eof  
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Microsoft\Office\14.0\Outlook\Security /v OutlookSecureTempFolder') do set office2010=%%~sb 
if defined office2010 ( 
    call :clear %office2010% 
    set office2010=) 
for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Policies\Microsoft\Office\14.0\Outlook\Security /v OutlookSecureTempFolder') do set office2010=%%~sb 
if defined office2010 ( 
    call :clear %office2010% 
    set office2010=) 
call :clear %temp%\ 
goto :eof 
:clear 
 attrib -H /D /S "%1*" 
 DEL /S /Q /F "%1*.*" 
 for /D %%d in ("%1*.*") do RD /S /Q "%%d" 
freddie
freddie

Similar Messages

  • Empty OLK folder Outlook 2010

    I am trying to empty the OLk folder from Outlook 2010 in WIndows 7. The location is appdata\local\microsoft\windows\temporary internet files\....I have checked that and it seems good. Put this script in a cmd file and run it thru gpo logoff computer gpo. The OLK folder is not emptyd however so it is not working what can be wrong with this script to empty the OLK folder?rem ***** this script is answer for wollowing:  http://support.microsoft.com/kb/817878 
    rem *** tested on Wiindows XP, 7; office 2007, 2010 
    VERIFY OTHER 2>nul 
    setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION 
    if errorlevel 1 goto :eof  
    for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Microsoft\Office\11.0\Outlook\Security /v OutlookSecureTempFolder') doset office2003=%%~sb 
    if defined office2003 ( 
        call :clear %office2003% 
        set office2003=)  
    for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Policies\Microsoft\Office\11.0\Outlook\Security /v OutlookSecureTempFolder') doset office2003=%%~sb 
    if defined office2003 ( 
        call :clear %office2003% 
        set office2003=)  
    for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Microsoft\Office\12.0\Outlook\Security /v OutlookSecureTempFolder') doset office2007=%%~sb 
    if defined office2007 ( 
        call :clear %office2007% 
        set office2007=) 
    for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Policies\Microsoft\Office\12.0\Outlook\Security /v OutlookSecureTempFolder') doset office2007=%%~sb 
    if defined office2007 ( 
        call :clear %office2007% 
        set office2007=) 
    for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Microsoft\Office\14.0\Outlook\Security /v OutlookSecureTempFolder') doset office2010=%%~sb 
    if defined office2010 ( 
        call :clear %office2010% 
        set office2010=) 
    for /f "skip=2 tokens=2*" %%a in ('reg query HKCU\Software\Policies\Microsoft\Office\14.0\Outlook\Security /v OutlookSecureTempFolder') doset office2010=%%~sb 
    if defined office2010 ( 
        call :clear %office2010% 
        set office2010=) 
    call :clear %temp%\ 
    goto :eof 
    :clear 
     attrib -H /D /S "%1*" 
     DEL /S /Q /F "%1*.*"for /D %%d in ("%1*.*") do RD /S /Q "%%d"       
    freddie

    I would suggest that you might fix you Office installation.  I just scanned through my folders and no system has more than two files,
    The temp folders on all versions of Office from 2003 to yhr present will be located here:
    %userprofiile%\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.Outlook
    On XP and 2003 they should be here:
    %userprofile%\Local Settings\Temporary Internet Files\Content.Outlook
    Delete everythingin that folder. Outlook will create a new secure folder the next time it is opened.
    Any file with attachments in you inbox will likely download the attachments again.  YOU should not use inbox for storage.  Move mail to a folder you don't open often.  Set outlook to not download attachments.
    If Outlook is not working correctly it may leave files behind when it closes.
    ¯\_(ツ)_/¯

  • Importing Office 2007 Quick Access Toolbar to Office 2010

    I want to bring over my QATs created in Office 2007 (running in Windows XP Pro) into Office 2010 (running in Windows 7 Pro). Because there is no way to export the Office 2007 QATs to a file, I can't do the normal importing a customization file
    directly from within Office 2010. However, if I copy my word.qat (or excel.qat, powerpoint.qat, etc) file created in Office 2007 over to the appropriate folder in Office 2010, and just change the file extension from ".qat" to ".officeUI" it brings up
    my QAT settings in Office 2007. It looks okay and seems to function properly like this.
    I think this will work, but I'm not sure if it will cause other problems. It seems to look okay. Will I run into trouble with it later?

    I want to bring over my QATs created in Office 2007 (running in Windows XP Pro) into Office 2010 (running in Windows 7 Pro). Because there is no way to export the Office 2007 QATs to a file, I can't do the normal importing a customization file
    directly from within Office 2010. However, if I copy my word.qat (or excel.qat, powerpoint.qat, etc) file created in Office 2007 over to the appropriate folder in Office 2010, and just change the file extension from ".qat" to ".officeUI" it brings up
    my QAT settings in Office 2007. It looks okay and seems to function properly like this.
    I think this will work, but I'm not sure if it will cause other problems. It seems to look okay. Will I run into trouble with it later?
    Sorry to bump such an old thread... but I couldn't find anything about a possible 2007 > 2013 migration.  The strict change in extension names doesn't enable the old .qat file to be imported (in MSO2013 the new extension is .exportedUI) -- however,
    digging into the old .qat and new .exportedUI files, it seems all I needed to do was add <mso: cmd app="Word" dt="0" /> to the start of the file and presto... imported without any problems.  Let's see if it all runs fine... (and if it works in Excel
    too) (phew!)

  • How to install Office 2010 in ZCM11

    Hello NG
    I would like to know how i can install Office 2010 with ZCM11. In Office2010
    no MSI files are available for the installation. The procedure must be
    running with exe and xml config files.
    Does somebody give me a tip?
    thanks in advance for your help
    Ramon

    Ramon,
    I can't answer for ZCM11, but I can only assume that the process has not changed significantly from ZCM 10.3.x.
    You've got several options at your disposal.
    The way we do things in our environment is to use a copy files action (or a file copy utility that shows a progress bar, since a copy files action has no progress indicator) to copy the files locally to the workstation to a staging area, where they are then launched as a dynamic administrator/system account.
    I'd say use an install files or install directory action, but my experience in the past has been that install directory ends up losing track of the directory structure, so it only works well for a single directory with no subdirectories.
    Plus, every time you throw a new update MSP file into the "updates" folder within the network deployment folder for Office 2010, you'd need to re-upload to the repository whereas when you copy from a network share you can simply throw a new update into the folder and be done with it.
    Jacob

  • PDF Maker Issue - can't find add-in in adobe folder, doesn't work in MS Office 2010.

    Hi Guys,
    Since last few years I've been using Adobe Acrobat Reader (IX, X, XI) on my Sony Vaio.
    It was integrated with MS Office 2010 and worked perfect with Outlook, Word, and Excel.
    Last week I had serious isues with my notebook and had to do a clean instalation of Windows 7 64-bit.
    I installed all software back (Eset Endpoint Antivirus 5, MS Office 2010 32-bit, etc.) and at the end, yesterday
    I finally installed Adobe Acrobat Reader XI (free). Then I noticed with dissapointment that there is no Adobe ribbon.
    I did everything mentioned here PDFMaker unavailable | Office 2007, Office 2010 | Acrobat 9, Acrobat X, Acrobat XI
    including instalation in a simplified mode, but it doesn't work for me.
    The path mentioned in above link doesn't exist in my computer "C:\Program Files\Adobe\Acrobat [9.0 or 10.0]\PDFMaker\Office".
    I can find only: "C:\Program Files (x86)\Adobe\Reader 11.0\Reader"   - a path to AR app. There is no PDFMaker folder at all.
    And another path: "C:\ProgramData\Adobe\Acrobat\11.0\Replicate" - Replicate is the only folder under "11.0".
    Do You have any idea what I could do to instal PDFMaker module , and use it with MS Office 2010?
    Sorry for my poor English.
    I'll be very gratefull for help.

    If you have all of those Adobe Reader products on your system, you are asking for problems. Adobe states one should not have more than one copy of an application on their system.
    Reader has no plug-in for MS Office of any version.
    Only Acrobat has a plug-in for MS Office. Again Adobe does not approve of more than one copy of Acrobat on a system. And if you dare to have Reader on the same system then Acrobat and Reader should be at the same major version.

  • I want to open an excel file from a folder in the Microsoft live office on Hotmail. Their instruction is to go to tools in Firefox, go to plug-ins and then install Microsofts Office 2010. Can't find plug-h. Help?

    I have uploaded an excel file from my desk top to the Windows Live (HOTMAIL?) office suite. When I try to open the file I get an error that says my system is not supported. My system passes all of the listed criteria except for one. That is a plug in from Firefox. The instructions say to go to the Firefox menu, click on tools then plug-ins. Of course when I go to tools plug-ins is not immediately available, but when I do go to plug-ins, I am to click on Microsoft Office 2010. This plug in is supposed to allow earlier versions of office documents to be viewed as well as Office 2010. The plug-in is not available. When I search the Firefox website I am not able to find such a plug-in.
    I am using Microsoft XP, Office 2007 and the version of Firefox prior to V4. V4 does not support all of my e-mail clients so am not able to use V4.

    I am using Microsoft XP, Office 2007 and the version of Firefox V4 but I have this same problem.

  • Can't create a PDF using "print" from Office 2010 w/ Acrobat 9.5.1 installed

    I've been working on a lengthy Word document for the past three days, upgrading most of the inserted images and straightening out the formatting. Converting the entire 180-odd page document every time I made a few updates is a bit time-consuming. I also noticed that when I converted the entire document as a whole, the quality of some (not all) of the images in the document was significantly degraded. So I'd been using the Adobe Acrobat printer selection in Word to create single page pdf files, and then used the documents tab in Acrobat to insert the new page and delete the undesirable page.
    This was working fine for two days. Then I was attempting to print a page, and didn't notice the "Creating a PDF Document" window, nor did I see the requested filename in the target folder. I attempted to print the page a second time, but nothing happened. After closing several open pages, I found the "Creating a PDF Document" pop-up. But the progress bar was stuck at about 20% and never moved. Eventually I closed the pop-up and attempted to print again. The pop-up reappeared but stuck at 20%. Rebooted and got the same. I rebooted again and went into Program and Features and ran repair on both Office 2010 and Acrobat. No change.
    I'm operating Win 7 (64 bit) w/ SP1 on an AMD E-350 1.60Ghz processor w/ 8GB of ram. I'm using Office Professional Plus 2010 build 14.0.6112.5000 (32 bit). I've included the System Report below. The only trick I have left is to uninstall and reinstall, but hoping for a more specific solution. Any help would be appreciated.
    Available Physical Memory: 4194303 KB
    Available Virtual Memory: 1511340 KB
    BIOS Version: ALASKA - 1072009
    Default Browser: C:\Program Files (x86)\Internet Explorer\iexplore.exe
    Version: 9.00.8112.16421 (WIN7_IE9_RTM.110308-0330)
    Creation Date: 2011/06/04
    Creation Time: 17:17:11
    Default Mail: Microsoft Outlook
    mapi32.dll
    Version: 1.0.2536.0 (win7_rtm.090713-1255)
    Graphics Card: AMD Radeon HD 6300 series Graphics
    Version: 8.17.10.1077
    Check: Not Supported
    Installed Acrobat: C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:37
    Installed Acrobat: C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Version: 10.1.3.23
    Creation Date: 2012/04/04
    Creation Time: 01:53:54
    Locale: English (United States)
    Monitor:
    Name: AMD Radeon HD 6300 series Graphics
    Resolution: 1920 x 1080 x 60
    Bits per pixel: 32
    OS Manufacturer: Microsoft Corporation
    OS Name: Microsoft Windows Vista
    OS Version: 6.1.7601 Service Pack 1
    Page File Space: 4194303 KB
    Processor: AMD64 Family 20 Model 1 Stepping 0 AuthenticAMD ~1600 Mhz
    System Name: GARYSTOASTER-PC
    Temporary Directory: C:\Users\GARYST~1\AppData\Local\Temp\
    Time Zone: Eastern Standard Time
    Total Physical Memory: 4194303 KB
    Total Virtual Memory: 2097024 KB
    User Name: Garys Toaster
    Windows Directory: C:\Windows
    Installed plug-ins:
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Accessibility.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\AcroForm.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:47
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Annots.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:52
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\DigSig.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:47
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\EScript.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:51
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\IA32.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:51
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\ImageConversion.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:46
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\MakeAccessible.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\geo.api
    Version: 5.7.0.01
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\geomark.api
    Version: 5.7.0.01
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\jeo.api
    Version: 6.0.0.18
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\PDDom.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\PPKLite.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Preflight.api
    Version: 9.2.0 (065)
    Creation Date: 2012/04/19
    Creation Time: 22:26:45
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\reflow.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\SaveAsRTF.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Search.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:57
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\TouchUp.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Updater.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\weblink.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\WebPDF.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:45

    As far as the images are concerned, that may be a result of your choice of job settings. You may want to use the Press or Print option if the image quality is important. I assume you are talking about bit images in this case.
    As to the hangup, have you checked to see if AcroTray is active on your system? It may not be running as needed. In the meantime, try checking print to file and then opening that file in Distiller to complete the conversion to PDF.
    Before you ever try a reinstall, you need to do a repair first to see if that resolves the problem. There are a lot of unknowns about your exact process for the printing and your job settings that may be part of the problem. The rest of your system setup is useful in some cases, but did not help me see your problem.

  • Acrobat XI Pro "Out of Memory" error after Office 2010 install

    Good Afternoon,
    We recently pushed Office 2010 to our users and are now getting reports of previous installs of Adobe Acrobat XI Pro no longer working but throwing "Out of Memory" errors.
    We are in a Windows XP environment. All machines are HP 8440p/6930p/6910 with the same Service pack level (3) and all up to date on security patches.
    All machines are running Office 2010 SP1.
    All machines have 2GB or 4GB of RAM (Only 3.25GB recognized as we are a 32bit OS environment).
    All machines have adequate free space (ranging from 50gb to 200gb of free space).
    All machines are set to 4096mb initial page file size with 8192mb maximum page file size.
    All machines with Acrobat XI Pro *DO NOT* have Reader XI installed alongside. If Reader is installed, it is Reader 10.1 or higher.
    The following troubleshooting steps have been taken:
    Verify page file size (4096mb - 8192mb).
    Deleted local user and Windows temp files (%temp% and c:\WINDOWS\Temp both emptied).
    Repair on Adobe Acrobat XI Pro install. No change.
    Uninstall Acrobat Pro XI, reboot, re-install. No change.
    Uninstall Acrobat Pro XI Pro along with *ALL* other Adobe applications presently installed (Flash Player, Air), delete all Adobe folders and files found in a full search of the C drive, delete all orphaned Registry entries for all Adobe products, re-empty all temp folders, reboot.
    Re-install Adobe Acrobat XI Pro. No change.
    Disable enhanced security in Acrobat XI Pro. No change.
    Renamed Acrobat XI's plug_ins folder to plug_ins.old.
    You *can* get Acrobat to open once this is done but when you attempt to edit a file or enter data into a form, you get the message, "The "Updater" plug-in has been removed. Please re-install Acrobat to continue viewing the current file."
    A repair on the Office 2010 install and re-installing Office 2010 also had no effect.
    At this point, short of re-imaging the machines (which is *not* an option), we are stumped.
    We have not yet tried rolling back a user to Office 2007 as the upgrade initiative is enterprise-wide and rolling back would not be considered a solution.
    Anyone have any ideas beyond what has been tried so far?

    As mentioned, the TEMP folder is typically the problem. MS limits the size of this folder and you have 2 choices: 1. empty it or 2. increase the size limit. I am not positive this is the issue, but it does crop up at times. It does not matter how big your harddrive is, it is a matter of the amount of space that MS has allocated for virtual memory. I am surprised that there is an issue with 64GB of RAM, but MS is real good at letting you know you can't have it all for use because you might want to open up something else. That is why a lot of big packages turn off some of the limits of Windows or use Linux.

  • Need assistance creating applications with superseedence to uninstall Office 2010, Lync 2010 and then install Office 365 click to run 2013

    We are getting ready in a few months to uninstall our locally installed Office 2010 and head to the cloud with Office 365 2013. I have created applications to uninstall Office 2010 and Lync 2010 and then added them to the supersedence tab for Office 365
    office 2013 click to run with appv5.
    When deploying the office 365 2013 application it does not uninstall office 2010 or lync 2010 with the supersedence.  I am able to manually uninstall Office 2010 and Lync 2010 with the command lines I am using in the applications.
    The application uninstall for Office 2010 is:
    The application uninstall is an exe so I created an application, created a deployment type with the location of our Office 2010 admin point, installation program and uninstall program are set with the same line as I have tried to deploy it separately and
    also as a supersedence in the Office 365 application setup.exe /uninstall ProPlus /config "\\sccmserver\share\Office2010\ProPlus.ww\silentuninstallconfig.xml.  The silentuninstallconfig.xml was created from the original config.xml file and edited
    to these settings:<Configuration Product="ProPlus">
     <Display Level="none" CompletionNotice="NO" SuppressModal="yes" AcceptEula="yes" />
     <Setting Id="Reboot" Value="Never" />
     <Setting Id="SETUP_REBOOT" Value="NEVER" />
     <OptionState Id="ProductFiles" State="Local" Children="force" />
     </Configuration>
    The detection method is the folder path to see that office 14 exists.  When I deploy this the machines finish with success showing this exists, but does not uninstall Office 2010.
    running the command line manually mapped to this location on a machine uninstalls office 2010 without issue. 
    Lync 2010 uninstall:
    Lync is an exe so I am using the LyncSetup.exe /silent /uninstall.  The application is in the supersedence tab for Office 365 2013. This never installs.  If I create a softare distribution and deploy it on its own it uninstalls without issue. 
    We are going to use Lync 2013 with our office 365 2013 installation so we need to uninstall this.  The detection method for lync is file system folder and the Microsoft lync folder for detection.
    MS Office 15 (Office 365) was created with the click to run tool.  I can install this with the application I created using the appv5 package created with the click to run tool.  The issue is we need Office 2010 and Lync 2010 uninstalled first. 
    Having both versions of Office installed in test has caused issues where Office 15 365 will not list in add and remove programs and cannot be uninstalled even with the fix it article to remove office 2013. 
    I have looked at many articles and so far it is not working for us.  Any help appreciated to get us to the cloud.
    Thanks,
    Brit

    The applications I have for uninstall of office 2010 and Lync 2010 for some reason do not uninstall. Manually testing the command lines they do.  The detection method seems to be hanging things up.  On the lync uninstall detection method I have
    the setting type of file system, type folder, path c:\program files\ folder name Microsoft Lync.
    I highly recommend using something other than a file/folder "exists" detection method. Installers are constantly leaving things behind due to environmental inconsistencies. It may leave files/folders behind with a schedule to delete files on next reboot.
    These things are unpredictable and very hard to use. I just use the "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall" Registry location. There you can actually key off the "Product Version" DWORD as well which gives you an even more accurate method
    to determine if the application you are trying to deploy (or expect to exist) is truly there. This, of course, being if you are not using an MSI. If you have MSI technology ALWAYS use the product code unless the person writing the MSI chooses to use the same
    product code for every version release of their product. In which case, Use the registry method.
    As far as getting the supersedence and everything working. You need to start from the basics. Create Applications for all of the apps you want to remove. Make sure they install and uninstall properly (seems like overkill but it isn't that hard). Once you
    have working install/uninstall applications then you can easily apply supersedence to your new applications with a setting of Uninstall on the superseded apps you should have no problem getting rid of them. I have done this for numerous things.
    For example, I did this with Cisco Jabber to replace older versions of jabber, older versions of cisco unified personal communicator and lync and OSC. All of these replaced versions had to have an Application but once it was in it took two seconds to apply
    all the supersedence rules and now I know when I push that software out no matter version is running on any machine it will pull all the old apps off and put the new one on.
    Dustin Estes - MCP | www.dustinestes.com

  • OfficeJet 4315 no longer works after Win 7 and Office 2010 service packs applied

    I've used OfficeJet 4315 on a Toshiba Satellite with WinXP (SP3) and Office 2003 and been delighted with the printer.  I recently migrated to a brand-new Acer Aspire with Win 7 and Office 2010 (home & student ed.)  At first, the 4315 worked well--in fact, all I had to do was plug in the USB connection and the in-OS drivers installed automatically.  However, something has now caused the printer too be essentially useless!  I think it happened after I applied SP1 to Win 7 and/or the service pack to Office 2010.  I can no longer print Word files (.doc or .docx), Excel spread sheets (.xls or .xlsx), PDFs, Web pages, or even e-mails,  The only things I can print are .txt files or equivalent and .jpg files or equivalent.  I've tried deleting and reinstalling the printer (including deleting the drivers and reloading them from Windows Update).  I don't believe I should have to replace a perfectly good printer just to support Windows 7 and Office 2010.  I NEED HELP URGENTLY with this problem!  If anyone has any knowledge or ideas, I'd be forever in your debt.  (HP, I'd even pay to get the help I need on this one!!)  TIA.

    Hi,
    Based on your description, my understanding is that the PDF files cannot be checked out to local drafts folder after Office 2013 is installed.
    Did this issue occur with Office files?
    I recommend to check if the Office files can be checked out to local drafts folder with Office 2013.
    And it is recommended to use Office 2010 with SharePoint 2010 for best practice.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Going from Office 2010 to 2013 and Back to 2010 I lost My Outlook Search

    Hello--
    We are doing some beta testing and I had to install Office 2013 from 2010. I finished the testing and went back to 2010.
    Now, when I do a Windows search, my Outlook email is not included in the search results. This is a major loss to my productivity. I believe I read that Outlook email is not included in the Windows search with 2013, so that's probably why I lost it.
    Can you tell me how I can include Outlook email in my Windows searches again? I searched for solutions online and all I got were questions.
    Thanks!
    Stephen
    Stephen Davis

    Hi,
    Sorry for not having resolved this issue so far. We can try to uninstall Office 2010 first, then delete the following registry keys from the location:
    Win + R, type "regedit"(without quotes) then press Enter.
    Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps
    carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry,
    http://windows.microsoft.com/en-US/windows7/Back-up-the-registry
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook
    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook
    HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook
    HKEY_LOCAL_MACHINE\Software\Microsoft\Office\14.0\Outlook
    HKEY_LOCAL_MACHINE\Software\Microsoft\Office\15.0\Outlook
    HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlook
    Once the keys are deleted restart the computer, then re-install Office 2010 to check the result.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here
    That fixed it. After I did the steps you indicated, I went back to the Indexing options and made sure the Office14 folder was included.
    Thansk
    Stephen Davis

  • Cannot reset office 2010 from uninstalled AD RMS server

    Hi;
    For test purposes i was installed and successfully deployed RMS server few mounts before. (2008 R2) (windows7 office 2010)
    But cuz of it doesnt work on portable devices we decide to cancel that project.
    But now problem is my clients office programs still tries to connect my old server.
    i was tried that http://social.technet.microsoft.com/wiki/contents/articles/7697.ad-rms-troubleshooting-reset-the-client.aspx
    article but every time i delete DRM folder contents and other registry keys, every time when any office program opens recreates that old server parameters. and office not able to use restrict permissions. I was checked 3 times already all my gpo s (maybe
    it took it from gpo ) but not there too
    If any one has any idea could be perfect.
    Thanks in advance.

    Have you registered SCP during ADRMS installation?
    You can view if SCP is still registered in your AD Forest/Domain using ADSI Edit or LDP. Connect to the configuration container in ADSI Edit and navigate the following nodes: CN=Configuration [server name], CN=Services, CN=RightsManagementServices, CN=SCP.
    If it is still registered, use DScpRegister.exe tool included in the RMS Administration Toolkit to remove it.
    Did my post help you or make you laugh? Don't forget to click the Helpful vote :) If I answered your question please mark my post as an Answer.

  • OFFICE 2010 can not open EXCEL files by double click, only File Open....

    Hi:
    I am using WIN7 ultimate 64 bit and excel 2010 (office 2010 Pro plus).
    I can not open any excel file(.xls and .xlsx) with a double click on the file. if I double click on the file, the application launches and excel starts, but no file is loaded and no error message, I have to manually go file open and select the file and
    then it opens correctly...
    I have tried every solutions I can find from internet, but none worked....
    1.Repair the office 2010 instalation.------doesn't work.
    2.Right-click the file >>Select "Open With" and select [Excel 2010]>> Check always use this program. ------doesn't work.
    3.Options>>Advanced>>General section>>unchecked "Ignore Other Applications that use Dynamic Data Exchange (DDE)".------doesn't work.
    4.Run>> input "Excel /regserver". ------doesn't work.
    5.Create new user profiles.------doesn't work.
    6.Delete EXCEL folder under "HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\".------doesn't work.
    Is there any other solutions can fix this problem? Any help are appreciated. 
    Yong.

    Hello Yong,
    Thanks for posting in our forum. Seems you've already tried lots of things, and I can see that those are all steps that reportedly have worked for others.
    Here is one more thing that you might want to have a try:
    Open Registry Editor
    Go to the registry key HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\command
    Highlight the key, select the (Default), select "Modify..."
    from the pull-down menu and then enter the value below: "C:\Program Files\Microsoft Office 15\Root\Office15\EXCEL.EXE"
    "%1" (include the quote marks)
    Then OK your way out
    Please have a try and feel free to post back.
    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.

  • Unpinning Office 2010 icons from taskbar after clean 2013 installation

    Ok so when installing Office 2013, Office 2010 programs get uninstalled. If the user had any Office 2010 icons on there taskbar though, they are still pinned to the taskbar and inactive. Is there a way to completely remove these icons? I created a .bat file
    which goes into where the shortcuts are
    (C:\Users\%user%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar). I watch as the shortcuts are removed from this area, but when I go to the taskbar the icons are still there. Clicking on them gives me a message that the item
    has been moved, renamed, or deleted, and allows me to remove it manually. Is there a way through scripting or GPO or the registry to make the shortcuts and icons to be deleted without having to do this manually?

    Hi,
    Looks like clear out the TaskBar folder (%Appdata%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar) can only make the taskbar item an unusable shortcut with no target. 
    You might need to refer to some scripting to achieve this. Please take a look at this thread and see if it helps:
    http://social.technet.microsoft.com/Forums/windows/en-us/07c56c20-3f56-4191-84c6-fc033f7a8f29/remove-default-pinned-items-from-taskbar-with-gpop
    Also, for scripting related issues, you can post in our script forum for more experienced responses:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • Issues publishing links to Office 2010 applications

    I have a Windows Server 2008 R2 with SharePoint 2010 installed, Windows 7 64Bit Enterprise clients, Office 2010 x86.  It has been in production for close to 2 years.  At first, the main function was to archive email with vital documents for projects,
    RFPs and legal information.  Now, we are moving closer with another department using it straight from Word/Excel and wanting to save from Office applications.  I have been working on getting the links published but I have not had much luck. 
    I got it to work once several months ago when I had to re-build the User profile service and Mysites.  Now, getting it to work again is my problem.  The links that was published at first only went to me and a couple other people and they were still
    there today.  This is my problem now:  When I use the All Site Users audience to publish a link to either a site or doc library, nothing is pushed.  I can create a new audience and test with it and nothing happens.  When I go in and clear
    out the registry key on my client machine that has the Mysites personal page information in it, reboot the machine and then delete the "SharePoint Sites" folder from my user profile and then publish the link, it works.  I cannot publish any
    NEW links.  If I publish something new, it never shows up in the folder.  Also, I have read that Desktop Experience needs to be turned on for this to work.  DE is not turned on but yet I can still publish the one link and I can also use the
    "Open in Explorer" button in SP with IE11.  Also, the Web Client service is running on the client machine if that makes a difference. 
    Why can I not make more than one link?  Do I really need to turn on DE on the server? 
    David Hood

    For a shorter question, why does only the first link that I publish work and none after that?
    David Hood
    UPDATE:  I have re-tested this and it seems that I cannot get a new link to show up in my list unless I either delete the registry keys, restart and then delete the Sharepoint List folder and go back to MySites for it to ask to connect to Office, or Manually
    adding another document library through the web browser.   When I manually add another library/list to Office via the Connect To Office button, my other links that I published from the server show up. 

Maybe you are looking for

  • REMOTE AND TESTING INFO

    When I close Dreamweaver 8 it wipes the remote info and testing server login and password details for my web sites. Can this be avoided? OS Widows XP Professional. Thank you Mike Shields

  • Sending report output to Excel

    Dear buddies I'm using OLE Object in my report to send its output to excel. I find this way from an example at the same forum. But I feel that this example is for very small sized reports which have to send a few cells to excel because in this method

  • [New SAP NetWeaver 7.01 ABAP Trial Version] - Installation issues

    Hi community thanks to SAP for this trial release with MaxDB 7.7 Unfortunately the installation failed on my laptop. This is an extract of the error log: (Aug 26, 2008 1:29:15 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckService

  • Can't start mobile device service error 1503

    I'm using win7 .. I recently tried to sync my iphone4 with the itunes And a message poped up say " can't start mobile device" sth like that Then I followed some solution on the apple webiste.. But when I try to restart the service.. It said " Error 1

  • Photos emailed to MM gallery bounce back

    I'm running the latest Snow leopard with iPhoto '11, 9.1.1. I've published an album to my gallery, and selected the option to allow others to email to that gallery. Every time I try and email a photo there, it comes back as undeliverable; text from e