Novell bouwt Microsofts xml-standaard in OpenOffice

Begin volgend jaar zullen de eerste vruchten van de overeenkomst tussen Microsoft en Novell echt geplukt kunnen worden. Het Linux-bedrijf is namelijk van plan om in januari ondersteuning te gaan bieden voor Microsofts Open XML-formaat in OpenOffice.
Microsoft OpenOffice Professional 2007Een woordvoerder van Novell benadrukt echter dat het nog niet zeker is dat de ondersteuning ook effectief in OpenOffice terechtkomt. Het bedrijf zal de code vrijgeven aan de community, die op haar beurt zal moeten beslissen of deze in de OpenOffice-codebase terechtkomt. De OpenOffice.org-ontwikkelaars hebben echter eerder al aangegeven blij te zijn met de deuren die de samenwerking tussen Novell en Microsoft opent. Naast deze Open XML-tool zullen de partnerbedrijven een vertaaltool ontwikkelen voor het omzetten van Word-, Excel- en Powerpoint-bestanden naar de equivalente OpenOffice-applicaties en vice versa. De onderlinge compatibiliteit tussen OpenOffice en Microsoft Office was een van de speerpunten van de overeenkomst die beide bedrijven sloten.

Microsoft ontkent rol in opensourceflop van Birmingham

De softwaregigant uit Redmond ontkent een rol te hebben gespeeld in het mislukte plan van de Engelse stad Birmingham om over te stappen op opensourcesoftware. Volgens sommige bronnen zou Birmingham uiteindelijk hebben afgezien van opensourcesoftware omdat Microsoft forse kortingen op zijn software zou hebben gegeven.

Tux Windows

Volgens Microsoft heeft Birmingham geen korting ontvangen om te voorkomen dat de gemeente over zou stappen op Linux. Het oorspronkelijke plan was dat 1500 systemen in bibliotheken zouden worden voorzien van Linux. Dit ging uiteindelijk toch niet door nadat het bestuur van de stad ontdekte dat een upgrade naar Windows XP uiteindelijk goedkoper zou zijn. In totaal zijn er slechts 200 computers voorzien van Linux. Volgens deskundigen zou Microsoft Birmingham extra korting hebben gegeven op Windows-licenties zodat de overstap naar Linux duurder uit zou pakken dan een upgrade van de bestaande Windows-installaties. Een woordvoerder van Microsoft ontkent dit echter ten stelligste ‘We zijn in gesprek met elke lokale overheid, er is dus een gebruikelijke aankoopprocedure. De belissing [om niet over te stappen op Linux] is uitsluitend op initiatief van Birmingham genomen’. Een woordvoerder van Birmingham is echter minder stellig in het ontkennen van dit verhaal. De it-verantwoordelijke van de stad liet weten dat ze niet bij Microsoft hebben gevraagd om korting en dat ‘korting op Windows ook niet het doel van het Linux-plan was’. Op de vraag of Birmingham nu wel of geen korting heeft ontvangen van Microsoft blijft hij echter onduidelijk.
Een woordvoerder van SOCITM, een organisatie die Birmingham ondersteunde in zijn opensourceplannen, liet weten dat Microsoft wel ‘betrokken was bij onderhandelingen’ met de gemeente. Hij weet echter niet of Birmingham extra korting heeft weten te bedingen bij Microsoft. Wel weet hij uit ervaringen dat andere gemeenten in het Groot-Brittannië korting bij Microsoft wisten te los te peuteren door te dreigen met een overstap naar Linux.

Brug tussen Microsoft en open source

Vannacht hebben de CEO van Microsoft en de CEO van Novell, Steve Ballmer en Ron Hovsepian in een persbijeenkomst in New York, die live via een webcast op het internet te volgen was een opmerkelijk samenwerkingsverband tussen Microsoft en Novell aangekondigd.
Met als uitgangspunt het gegeven dat veel klanten zowel Windows als Linux in hun netwerk willen draaien, richt de samenwerking zich erop om dat zo eenvoudig mogelijk te maken. Microsoft en Novell gaan daarom op technisch vlak samenwerken om de technieken goed op elkaar te laten aansluiten, met als genoemde speerpunten virtualisatie, beheer en de compatibiliteit van de verschillende documentformaten (dit laatste gaat dan meer over OpenOffice en Office dan om Linux). Daarnaast hebben de beide bedrijven een oplossing gevonden op het juridische vlak; concreet zegt Microsoft toe individuele open-source ontwikkelaars nooit op het gebied van patentrechten aan te zullen pakken. Gebruikers van SUSE Linux hebben van Microsoft ook niets te vrezen. En tenslotte heeft de samenwerking ook een marketingcomponent; Microsoft gaat iedereen vertellen dat als ze dan toch Linux gaan kopen, ze vooral SUSE Linux moeten aanschaffen.
Steve Ballmer benadrukte wel dat Microsoft en Novell concurrenten zullen blijven; “als klanten vragen welk besturingssysteem ze moeten kopen, dan blijft dat bij ons Windows, Windows, Windows!”
Voor wie de webcast zelf wil bekijken:
http://www.novell.com/linux/microsoft/

Standard Installer Command-Line Options

Standard Installer Command-Line Options

The executable program that interprets packages and installs products is Msiexec.exe.

Note Msiexec also sets an error level on return that corresponds to System Error Codes.

The following table identifies the standard command-line options for this program. Command-line options are case insensitive.

Windows Installer 2.0: The command-line options that are identified in this topic are available beginning with Windows Installer 3.0. The Windows Installer Command-Line Options are available with Windows Installer 3.0 and earlier versions.

Option Parameters Meaning
/help   Help and quick reference option. Displays the correct usage of the setup command including a list of all switches and behavior. The description of usage can be displayed in the user interface. Incorrect use of any option invokes this help option.Example: msiexec /help

Note The equivalent Windows Installer Command-Line Option is /?.

/quiet   Quiet display option. The installer runs an installation without displaying a user interface. No prompts, messages, or dialog boxes are displayed to the user. The user cannot cancel the installation. Use the /norestart or /forcerestart standard command-line options to control reboots. If no reboot options are specified, the installer restarts the computer whenever necessary without displaying any prompt or warning to the user.Examples:

msiexec /package Application.msi /quiet

Msiexec /uninstall Application.msi /quiet

Msiexec /update msipatch.msp /quiet

Msiexec /uninstall msipatch.msp /package Application.msi / quiet

Note The equivalent Windows Installer Command-Line Option is /qn.

/passive   Passive display option. The installer displays a progress bar to the user that indicates that an installation is in progress but no prompts or error messages are displayed to the user. The user cannot cancel the installation. Use the /norestart, /forcerestart, or /promptrestart standard command-line options to control reboots. If no reboot option is specified, the installer restarts the computer whenever necessary without displaying any prompt or warning to the user.Example: msiexec /package Application.msi /passive

Note The equivalent Windows Installer Command-Line Option is /qb! with REBOOTPROMPT=S set on the command line.

/norestart   Never restart option. The installer never restarts the computer after the installation.Example: msiexec /package Application.msi /norestart

Note The equivalent Windows Installer command line has REBOOT=ReallySuppress set on the command line.

/forcerestart   Always restart option. The installer always restarts the computer after every installation.Example: msiexec /package Application.msi /forcerestart

Note The equivalent Windows Installer command line has REBOOT=Force set on the command line.

/promptrestart   Prompt before restarting option. Displays a message that a restart is required to complete the installation and asks the user whether to restart the system now. This option cannot be used together with the /quiet option.

Note The equivalent Windows Installer command line has REBOOTPROMPT = “” set on the command line.

/uninstall <Package.msi|ProductCode> Uninstall product option. Uninstalls a product.

Note The equivalent Windows Installer Command-Line Option is /x.

/uninstall /package <Package.msi | ProductCode> /uninstall <Update1.msp | PatchGUID1>[;Update2.msp | PatchGUID2] Uninstall update option. Uninstalls an update patch.

Note The equivalent Windows Installer Command-Line Option is /I with MSIPATCHREMOVE=Update1.msp | PatchGUID1[;Update2.msp | PatchGUID2] set on the command line.

/log <logfile> Log option. Writes logging information into a log file at the specified existing path. The path to the log file location must already exist. The installer does not create the directory structure for the logfile.The following information is entered into the log:
  • Status messages
  • Nonfatal warnings
  • All error messages
  • Start up of actions
  • Action-specific records
  • User requests
  • Initial UI parameters
  • Out-of-memory or fatal exit information
  • Out-of-disk-space messages
  • Terminal properties

Note The equivalent Windows Installer Command-Line Option is /L*.

Note For more information about all the methods that are available for setting the logging mode, see Normal Logging in the Windows Installer Logging section.

/package <Package.msi|ProductCode> Install product option. Installs or configures a product.

Note The equivalent Windows Installer Command-Line Option is /I.

/update <Update1.msp>[;Update2.msp] Install patches option. Installs one or multiple patches.

Note The equivalent Windows Installer command line has PATCH = [msipatch.msp]<;PatchGuid2> set on the command line.