Archive

Archive for May, 2010

Office 2010 KMS and Visio 2010

May 22nd, 2010 verteto No comments

Last week I installed an Office 2010 KMS server. I had to install it on top of an existing Windows 7 KMS server. So I downloaded the Office 2010 KMS host license pack and activated the machine. No issues so far. After I installed Visio 2010 on my machine I saw that i had installed and activated a premium version.

Visio 2010 comes preinstalled with a Premium KMS client key. Remember to enter the appropriate KMS key as needed in your image. See also http://technet.microsoft.com/en-us/library/ee624357.aspx

Categories: KMS/MAK, Office 2010 Tags:

Another Win 7 seminar; Managing the dynamic desktop? Windows 7 deployment

May 22nd, 2010 verteto No comments

Last Wednesday we hosted our seminar “Managing the dynamic desktop? Windows 7 deployment”. This seminar not only listed many of the new features and functionality that are included in Windows 7 but also answered many deployment questions. Some of them were “how do I know which deployment system is best-suited for my organization?” and “how can I certify this to be my final mass deployment”.

The result can be found here:

http://seminar.the-d-spot.org/Windows 7 Presentation_part1.pdf

http://seminar.the-d-spot.org/Windows 7 Presentation_part2.pdf

Categories: MDT 2010, SCCM, Seminar, Windows 7 Tags:

End of Support!

May 14th, 2010 Siegmund No comments

I hope the title didn’t scare you too hard…

anyway, I wanted to remind you that in the coming weeks Microsoft will cease to support some client OS.

- on July 13 the support for XP SP2 will stop ( Note: this is not valid if you are running XP SP2 64 bit edition that will be supported until April 2014 )

- also on July 13 extended support for both Windows 2000 client and Server SP4 will stop

- on the first of June, the RC of Windows 7 will stop working.

- Support for Vista RTM has already stopped on April 13

Be Prepared!

Categories: Uncategorized Tags:

Upgrading AppV client to version 4.6

May 11th, 2010 Ben De Vriese No comments

Microsoft’s application virtualization solution has reached version 4.6 some weeks ago. The most important thing about version 4.6 is support for 64 bit. The Server parts could run on x64 operating systems, but it was impossible to install the AppV client on x64 operating systems. Time to upgrade!

As the client needs to be updated first, I will cover the client upgrade process only. (Client first, server next, sequencer last). Good to know that only the client and the sequencer are updated to version 4.6. No need to update your Management server as version 4.5.2.17140 is still the latest and greatest.

AppV has some Prerequisites, I will install them first. Then I will install the AppV client itself, using some command line parameters and a registry file import for applying custom settings.

Prerequisites

Application error reporting

msiexec /I SOURCE_PATH\dw20shared.msi /QN APPGUID={4C1CE627-6B28-436E-BD12-3A881065FB20} REBOOT=REALLYSUPPRESS ALLUSERS=1

Visual C++ 2005 runtime

SOURCE_PATH\vcredist2005_x86.exe /Q:A /c:”VCREDI~3.exe /Q:A /C:”"MSIEXEC /I VCREDIST.MSI /QN “”"

Visual C++ 2008 runtime

msiexec /i SOURCE_PATH\vc2008\vc_red.msi /qn /l*v “LOGFILE_PATH\vc2008runtime.log”

 

AppV 4.6 Client with command line parameters

Because storage is expensive, we have a different cache policy for virtual machines. Cache size on virtual systems don’t have to be as enormous as on physical machines. Not only the cache size is reduced in virtual machines, also the AutoLoad features are disabled via the MSI command line parameters.

To identify virtual machines I query on the computer name. As we use specific names for our VM’s, this should be a piece of cake!

We do an architecture check in a batch file. So I have two code blocks, one for x64 and another for x86 operating systems. Only the paths are different, so I will post only one.

AppV Client Installation

Echo install AppV x64 Client

rem Virtual Machine check
Echo %computername% | findstr /i “ISOPC99 VPC” >NUL && (
    Echo Installing AppV x64 client for Virtual Machines
    msiexec /i “SOURCE_PATH\x64\setup.msi” SWICACHESIZE=”4096″ autoloadTriggers=0 AutoLoadTarget=0 AutoLoadonLaunch=0 AutoLoadonRefresh=0 AutoLoadonLogin=0 SWIDCSDISPLAY=”Company Streaming Server” SWIDCSTYPE=”RTSP” SWIDCSHOST=”appvserver.domain.local” SWIDCSPORT=”554″ SWIDCSREFRESH=”on” SWIGLOBALDATA=”C:\Program Files\Microsoft Application Virtualization Client\GLOBAL\” SWISOFTGRIDDRIVE=”Q” /q REBOOT=REALLYSUPPRESS /l*v “LOGFILE_PATH\appv46.log”
    ) || ( 
   Echo Installing AppV x64 client for Physical Machines
    msiexec /i “SOURCE_PATH\Source\x64\setup.msi” MinFreeSpaceMB=”6000″ SWIDCSDISPLAY=”Company Streaming Server” SWIDCSTYPE=”RTSP” SWIDCSHOST=”appvserver.domain.local” SWIDCSPORT=”554″ SWIDCSREFRESH=”on” SWIGLOBALDATA=”C:\Program Files\Microsoft Application Virtualization Client\GLOBAL\” SWISOFTGRIDDRIVE=”Q” /q REBOOT=REALLYSUPPRESS /l*v “LOGFILE_PATH\appv46.log”
    )

Echo Import Regkeys
regedit /s SOURCE_PATH\appv64_v2.reg

 

The registry file that is imported in the last line specify the sftlog.txt log file location, and some other tweaks, have a look:

Registry import (x86)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SoftGrid\4.5\Client\Configuration]
“SystemEventLogLevel”=dword:00000004
“LogFileName”=”C:\\PATH_OF_YOUR_CHOICE\\sftlog.txt”
“UserDataDirectory”=”%APPDATA%”
“ApplicationSourceRoot”=”RTSP://server.domain.local:554″
“LaunchRecordMask”=dword:005a0000

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SoftGrid\4.5\Client\DC Servers\Company Streaming Server]
“Period”=dword:000002d0
“Refresh”=dword:00000001
“Reporting”=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SoftGrid\4.5\Client\AppFS]
“UnloadLeastRecentlyUsed”=dword:00000001
“MinPackageAge”=dword:00000001

 

Registry import (x64)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\SoftGrid\4.5\Client\Configuration]
“SystemEventLogLevel”=dword:00000004
“LogFileName”=”C:\\PATH_OF_YOUR_CHOICE\\sftlog.txt”
“UserDataDirectory”=”%APPDATA%”
“ApplicationSourceRoot”=”RTSP://server.domain.local:554″
“LaunchRecordMask”=dword:005a0000

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\SoftGrid\4.5\Client\DC Servers\Company Streaming Server]
“Period”=dword:000002d0
“Refresh”=dword:00000001
“Reporting”=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\SoftGrid\4.5\Client\AppFS]
“UnloadLeastRecentlyUsed”=dword:00000001
“MinPackageAge”=dword:00000001

 

That’s it.

Retirement time for Windows XP!

May 7th, 2010 Siegmund No comments

I want to draw your attention to this creative approach Microsoft Belux has launched in order to throw a retirement party for our beloved friend, Windows XP. 

checkout http://www.xpmetpensioen.be for full details (including competition rules) on this matter!

In fact by writing down your name on the goodbye card for XP, your company can win one of three real farewell parties.  so make some fuzz and write this on your billboards next monday, the company with the most registered signatures is a good candidate to win one of the parties.  There is even more, the 10 most original signatures  are likely to win a legit copy of Windows 7 Ultimate (5 x) or Office 2010 Professional (5 x) !

This farewell card will be closed after the 25th of June.

And even though your workspace is more than just an OS, you should really get yourself acquainted with Windows 7, the perfect employee for your company !

Cheers!

Categories: Uncategorized Tags:

HP Insight Control server deployment 6.1.0

HP has released a new version of their rapid deployment pack. It consists of Altiris DS 6.9 SP4, HP Firmware 9.00, Drivers  and a lot of preconfigured jobs to install your servers with various OS’s. Their SmartStart scripting toolkit is included as well to automate iLO and SmartArray config.
http://h18013.www1.hp.com/products/servers/management/rdp/knowledgebase/20000060.html

For Dell servers there’s a similar package.
http://www.symantec.com/business/theme.jsp?themeid=deployment_solution_dell

HP also launched a version for Microsoft SCCM.
https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPICE-SC

Categories: Deployment Tags: