[wpkg-users] Office 2007 Individual Keys

2010-06-15 Thread Christian Becker
Hey There,

I only have individual Office 2007 Keys - No VL Licence.

Is there a way to install it on several workstations and use an other key
for every workstation?

Thanks allot
Chris
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Office 2007 Individual Keys

2010-06-15 Thread Rainer Meier
Hi Chrisitan,

On 15.06.2010 12:21, Christian Becker wrote:
 I only have individual Office 2007 Keys - No VL Licence.
 
 Is there a way to install it on several workstations and use an other
 key for every workstation?

For Microsoft Office 2007 you need individual config.xml settings for each host
to do this. Each config.xml needs to include the individual PIDKEY
Value=xx / setting.

For example you can name them
config-hostX.xml
config-hostY.xml
...

Assuming you know your host names you can do the following:

First create all the individual config files as listed above.

Then create a small batch script (e.g. unattended.cmd) with the following 
content:

@echo off
echo Installing Microsoft Office 2007
set INSTALL_LOC=%~dp0
start /wait Office %INSTALL_LOC%setup.exe /config
  %INSTALL_LOC%CONFIG-%COMPUTERNAME%.XML



A config.xml file might look as follows:

Configuration Product=ProHybridr
Display Level=none CompletionNotice=no SuppressModal=yes 
AcceptEula=yes /
!-- Logging Type=standard Path=%temp% Template=Microsoft Office
Professional Hybrid Setup(*).txt / --

!-- The following keys do not allow activation but are used for 
testing and
pre-configuration --
!-- Low Value aApps (Access, Excel, Groove, InfoPath, InterConnect, 
OneNote,
Outlook, PowerPoint, SharePoint, Designer, Word) --
PIDKEY Value=X-X-X-X-X /
/Configuration



(sorry for ugly line-breaks)


In fact you might even install MS Office 2007 without any key and then just ask
your users to call helpdesk on first use where helpdesk will either dictate the
right key for this user or use some remote-support solution to enter the key at
first run of any office application.


br,
Rainer
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] XML packages tree

2010-06-15 Thread Daniel Dehennin
Hello,

I'm wondering if it's possible to get a tree of XML packages like this:
zip/
  \- 7zip.xml
  \- quickzip.xml
browser/
  \- mozilla/firefox.xml
  \- google/chrome.xml

Just using:
profiles
  profile id='base'
package package-id='zip/7zip'/
  /profile
/profiles

and using zip/7zip as id in 7zip.xml does not works, neither zip\7zip
(windows path separator).

Any hints?

Regards.
-- 
Daniel Dehennin
RAIP de l'Orne


pgppJ0PeUTRWw.pgp
Description: PGP signature
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] XML packages tree

2010-06-15 Thread Rainer Meier
Hi Daniel,

On 15.06.2010 14:39, Daniel Dehennin wrote:
 I'm wondering if it's possible to get a tree of XML packages like this:
 zip/
   \- 7zip.xml
   \- quickzip.xml
 browser/
   \- mozilla/firefox.xml
   \- google/chrome.xml
 
 Just using:
 profiles
   profile id='base'
 package package-id='zip/7zip'/
   /profile
 /profiles
 
 and using zip/7zip as id in 7zip.xml does not works, neither zip\7zip
 (windows path separator).
 
 Any hints?

Currently WPKG either supports defining all your packages in packages.xml or in
packages/ sub-folder as independent files (or files containing multiple
packages. But it does currently not do recursive parsing of packages/ sub folder
to hunt for any XML file which might be there. Opening directories has also
turned out to be quite slow on VPN connections so I don't think this is a very
good idea.

Moreover your package-id reference in the profile does not refer to a file. It
refers to a package ID defined as an attribute to the package XML node.

So feel free to define a package like

package id=zip/7zip ... /

and then refer to the package as
package package-id='zip/7zip'/


you might also call your files accordingly in order to sort them within your
packages/ directory. For example:

zip-7zip.xml
zip-quickzip.xml
browser-mozilla-firefox.xml
browser-google-chrome.xml

Or even to put all browsers in browsers.xml and all zip applications in zip.xml
(Note that one XML file can contain multiple packages).



br,
Rainer
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] check conditions and or

2010-06-15 Thread Paul McGrath
Hi,
  Is it possible to combine check conditions?  I ask because with the advent of 
Windows 7 64bit the %programfiles% variable becomes inaccurate for file 
location between XP and Win7 64.  I'll show you what I would like to achieve

check type=logical condition=and
check type=uninstall condition=exists path=McAfee VirusScan 
Enterprise /
   check type=logical condition=or
check type=file condition=versiongreaterorequal 
path=%programfiles%\mcafee\virusscan enterprise\mcupdate.exe 
value=8.7.0.659 /
check type=file condition=versiongreaterorequal 
path=%programfiles(x86)%\mcafee\virusscan enterprise\mcupdate.exe 
value=8.7.0.659 /
 /check

If this is not possible now could it be possible in the future?

I would prefer this to creating multiple packages and profiles for multiple OS.

Thanks
Paul

--
Paul McGrath,
IT Manager,
Leeds Institute of Molecular Medicine,
St James's University Hospital,
Beckett Street, Leeds, LS9 7TF, UK
Ext.: Uni - 38630, NHS - (89)38630
Tel.: +44 113 34 38630
Email...: j.p.mcgr...@leeds.ac.ukmailto:j.p.mcgr...@leeds.ac.uk
Homepage: http://www.limm.leeds.ac.uk

-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] check conditions and or

2010-06-15 Thread Pendl Stefan

 Hi,
   Is it possible to combine check conditions?  I ask because with the advent 
 of Windows 7 64bit the %programfiles%
 variable becomes inaccurate for file location between XP and Win7 64.  I'll 
 show you what I would like to achieve

 check type=logical condition=and
 check type=uninstall condition=exists path=McAfee VirusScan 
 Enterprise /
check type=logical condition=or
 check type=file condition=versiongreaterorequal 
 path=%programfiles%\mcafee\virusscan enterprise\mcupdate.exe 
 value=8.7.0.659 /
 check type=file condition=versiongreaterorequal 
 path=%programfiles(x86)%\mcafee\virusscan enterprise\mcupdate.exe 
 value=8.7.0.659 /
  /check

 If this is not possible now could it be possible in the future?

 I would prefer this to creating multiple packages and profiles for multiple 
 OS.


Paul,

If you use multiple checks without a logical condition, they must all be true, 
since AND is the default.

This is not specific to Win7, but to 64-bit Windows in general, since 32-bit 
applications are always installed into %ProgramFiles(x86)%.

The correct check for your package is below:

check type=uninstall condition=exists path=McAfee VirusScan Enterprise /
check type=logical condition=or
  check type=file condition=versiongreaterorequal 
path=%programfiles%\mcafee\virusscan enterprise\mcupdate.exe 
value=8.7.0.659 /
  check type=file condition=versiongreaterorequal 
path=%programfiles(x86)%\mcafee\virusscan enterprise\mcupdate.exe 
value=8.7.0.659 /
/check

As an example, for the following all three checks must return true:

check type=uninstall condition=exists path=McAfee VirusScan Enterprise /
check type=registry condition=exists path=HKLM\SOFTWARE\MyCheck\TestMe 
value=true /
check type=file condition=versiongreaterorequal 
path=%programfiles(x86)%\mcafee\virusscan enterprise\mcupdate.exe 
value=8.7.0.659 /

Nested checks must be done as below:

check type=logical condition=or
  check type=logical condition=not
check type=file /
  /check

  check type=registry /
/check

---
Stefan
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users