• Stadsmuur

    Stadsmuur

  • De Hagen

    De Hagen

  • De Hofpoort

    De Hofpoort

  • Gemeentehuis

    Gemeentehuis

  • De Pontwaard

    De Pontwaard

  • Langendijk

    Langendijk

  • Mozesbrug - Sluismeesterbrug

    Mozesbrug - Sluismeesterbrug

Office

Now in the year 2017 it will be time to consider to say goodbye to the Microsoft Office 2003 product versions. That’s what Microsoft likes too. Many users who use the 2007 compatibility pack as a bridge between Office 2003 and the 2007 (and above) versions will experience problems when opening 2007 files after installing major Windows 10 updates.

I will describe some examples in this article how to manage and automate the installation of FileFormatConverters.exe. These scripts can be used standalone and are not suitable for a business deployment environment.

Script is written in oldschool batch cause many users with office 2003 products have not worked so much with powershell:)

copack2007-install.bat

@ECHO OFF

ECHO author      :  Arjan Lobbezoo, IT Professional, Solide Automatisering
ECHO email       :  info@solideautomatisering.nl
ECHO file        :  copack2007-install.bat
ECHO description :  install MS Office compatibility pack 2017 silent
ECHO dependency  :  FileFormatConverters.exe from https://www.microsoft.com/nl-NL/download/details.aspx?id=3

ECHO.

ECHO Try to install FileFromatConverters (language depending on file)...
FileFormatConverters.exe /quiet

Easy call of FileFormatConverts.exe with the quiet parameter so the installation will perform silent.

copack2007-remove.bat

@ECHO OFF

ECHO author      :  Arjan Lobbezoo, IT Professional, Solide Automatisering
ECHO email       :  info@solideautomatisering.nl
ECHO file        :  copack2007-remove.bat
ECHO description :  remove MS Office compatibility pack 2017

ECHO.

if _%1_==_payload_  goto :payload

:requestadmin
    echo %~nx0: elevating self
    set vbs=%temp%\requestadmin.vbs
    echo Set UAC = CreateObject^("Shell.Application"^)                >> "%vbs%"
    echo UAC.ShellExecute "%~s0", "payload %~sdp0 %*", "", "runas", 1 >> "%vbs%"
    "%temp%\requestadmin.vbs"
    del "%temp%\requestadmin.vbs"
goto :eof

:payload
    cd /d %2
    shift
    shift
    ECHO Try to remove the NL compatibility pack version...
    wmic product where name="Compatibiliteitspakket voor het 2007 Microsoft Office system" call uninstall /nointeractive
    ECHO Try to remove the EN compatibility pack version...
    wmic product where name="Compatibility Pack for the 2007 Office system" call uninstall /nointeractive
goto :eof

:eof

This script will create first a vbs file to get admin rights. Wmic is called and doesn’t request the admin rights. So the vbs script request the admin rights. If UAC is on you have to click yes. Then the script will use wmic to uninstall the package.

copack2007-reset.bat

@ECHO OFF

ECHO author      :  Arjan Lobbezoo, IT Professional, Solide Automatisering
ECHO email       :  info@solideautomatisering.nl
ECHO file        :  copack2007-reset.bat
ECHO description :  remove and install MS Office compatibility pack 2017
ECHO dependency  :  FileFormatConverters.exe from https://www.microsoft.com/nl-NL/download/details.aspx?id=3

ECHO.

if _%1_==_payload_  goto :payload

:requestadmin
    set vbs=%temp%\requestadmin.vbs
    echo Set UAC = CreateObject^("Shell.Application"^)                >> "%vbs%"
    echo UAC.ShellExecute "%~s0", "payload %~sdp0 %*", "", "runas", 1 >> "%vbs%"
    "%temp%\requestadmin.vbs"
    del "%temp%\requestadmin.vbs"
goto :eof

:payload
    cd /d %2
    shift
    shift
    ECHO Try to remove the NL compatibility pack version...
    wmic product where name="Compatibiliteitspakket voor het 2007 Microsoft Office system" call uninstall /nointeractive
    ECHO Try to remove the EN compatibility pack version...
    wmic product where name="Compatibility Pack for the 2007 Office system" call uninstall /nointeractive
    ECHO Try to install FileFromatConverters (language depending on file)...
    FileFormatConverters.exe /quiet
goto :eof

:eof

In this file the remove and install request of the compatibility pack is combined. This script can be used to solve the update issues after a major Windows 10 major upgrade. Just run it.

The batch scripts can only run from a local or remote drive letter. Server (netbios) shares are not supported yet except when the share is remapped to a driveletter. I hope to get started with another version (PowerShell) if needed.

 

 

Extract the files in a local folder or a remote drive share. For example c:\software\copack2007\. Run the batch file for the required action. Tip is to create a shortcut of copack2007-reset on the users dekstop. So users can easy fix the tool when the windows 10 update has broken the package.

For multi language support download the package in your language from the Microsoft site. You have to change the product name in the remove scripts. Use “wmic product get name” in cmd to determine the name in your language.

Read more

Het instellen of wijzigen van een email handtekening in Microsoft Outlook 2010, 2013 of 2016 is relatief eenvoudig. De handtekening bevind zich op lokaal niveau. Dus bij gebruik van meerdere computers dient de handtekening op iedere computer ingesteld te worden. Helaas wordt de handtekening nog niet gedeeld binnen de Office 365 suite.

Bij gebruik van meerdere devices is het handig om de standaard handtekening op te slaan als een Word document. Vanuit zo’n basis document kan de handtekening altijd gekopieerd en geplakt worden in de outlook omgeving. Ook bij het gebruik van een afbeeldingen of logo is het handig om het via een Word document te regelen. In een Word document zit iets meer flexibiliteit voor de precieze afwerking.

Hieronder de stappen voor het instellen:

  • Open Microsoft Outlook

Outlook-handtekening-stap1

  • Ga naar Nieuwe e-mail om het venster nieuw emailbericht te openen.

Outlook-handtekening-stap2

  • Kies Handtekening in de taakbalk gevolgd door Handtekeningen.

Outlook-handtekening-stap3

  • Gebruik veld A om verschillende handtekeningen aan te maken
  • Gebruik veld B om de handtekening tekst an te passen. Plak hier eventueel de inhoud van een Word document.
  • Gebruik veld C om diverse handtekeningen te koppelen aan verschillende mailaccounts.
  • Klik op OK als de handtekening bewerkt is.

 

Ondersteund in:
Microsoft Outlook 2010
Microsoft Outlook 2013
Microsoft Outlook 2016

Read more