Thursday, November 19, 2009

If you are licence for Windows 7 (or 2008 R2) with a volume licensing you will need the following product keys in your unattend.xml to allow the installation to succeed. This is a change from Vista which didn’t require a key on installation to then activate against a KMS server.

Windows 7 Professional - FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4
Windows 7 Professional N - MRPKT-YTG23-K7D7T-X2JMM-QY7MG
Windows 7 Enterprise - 33PXH-7Y6KF-2VJC9-XBBR8-HVTHH
Windows 7 Enterprise N - YDRBP-3D83W-TY26F-D46B2-XCKRJ
Windows 7 Enterprise E - C29WB-22CC8-VJ326-GHFJW-H9DH4
Windows Server 2008 R2 HPC Edition - FKJQ8-TMCVP-FRMR7-4WR42-3JCD7
Windows Server 2008 R2 Datacenter - 74YFP-3QFB3-KQT8W-PMXWJ-7M648
Windows Server 2008 R2 Enterprise - 489J6-VHDMP-X63PK-3K798-CPX3Y
Windows Server 2008 R2 for Itanium-Based Systems - GT63C-RJFQ3-4GMB6-BRFB9-CB83V
Windows Server 2008 R2 Standard - YC6KT-GKW9T-YTKYR-T4X34-R7VHC
Windows Web Server 2008 R2 - 6TPJF-RBVHG-WBW2R-86QPH-6RTM4

Thursday, November 19, 2009 11:08:56 AM (E. Australia Standard Time, UTC+10:00)
 Tuesday, March 31, 2009

It would appear that most of the corporate world is still running Office 2003, which is fine - I am sure you have your reasons! But why the F*(K haven't you deployed the compatibility pack to view Office 2007 documents?

The hassle more than likely comes back to the sender (you!!) with a request to change the format of their documents, and although it isn't really my problem I have to oblige (otherwise, they may not pay my invoice).

==========
RANT OVER
==========

The script below will convert any Office 2007 (DOCX) files in a folder to a Office 97-2003 (DOC) format using the Office automation API.

get-childItem -filter *.docx | foreach {
  
$doc = "$($_.fullname)"
  
$2000doc = $($doc.substring(0,$($doc.length - 1)))
  
$office = New-Object -ComObject word.application

  
write-host "Opening - $doc"
  
$word = $office.Documents.Open($doc)

  
write-host "Saving - $2000doc"
  
$word.SaveAs2000($2000doc)

  
$word.close()
  
$office.quit()
}

Tuesday, March 31, 2009 7:20:46 PM (E. Australia Standard Time, UTC+10:00)
 Wednesday, March 11, 2009

If you missed the Brisbane Infrastructure Group last night you can checkout the Live Meeting recording (https://www112.livemeeting.com/cc/microsoft/viewRecordings, recording id BDT4KQ) and see the my presentation on "Managing Virtual Environments using System Centre Virtual Machine Manager".

And lastly thank you to everyone who provided words of wisdom and the BIG team for the presentation spot.

Enjoy :)

Wednesday, March 11, 2009 12:03:30 PM (E. Australia Standard Time, UTC+10:00)
 Friday, March 06, 2009

An private update has been released for users experiencing the following issues:

You cannot connect to a virtual machine when the Windows Server 2008 Hyper-V VMMS certificate has expired

Cannot connect to the virtual machine because the authentication certificate is expired or invalid. Would you like to try connecting again?

'VMName' failed to initialize.
Could not initialize machine remoting system. Error: ‘Unspecified error’ (0x80004005).
Could not find a usable certificate. Error: ‘Unspecified error’ (0x80004005).

And then today I noticed this posted on Ben Armstrong's blog:

Management Operating System

This is a new term that we are introducing in Windows Server 2008 R2.  We have been struggling without a good term here – as with Virtual PC / Virtual Server we had a nice set of terms where we could talk about the physical computer / virtual machine and the host operating system / guest operating system.  However this became muddier with Hyper-V – because we no longer really have a host operating system, and all operating systems run on top of the hypervisor.  Most people have been just using the term “Parent” or “Parent partition” to refer to what we used to call the host operating system – but this is not really architecturally correct.  Unfortunately the architecturally correct terms are – frankly – hideous; they are the “parent partition guest operating system” and the “child partition guest operating system”.  Yuck.  So after a lot of thought we decided to call the “parent partition guest operating system” the “Management operating system” as this is the operating system you use to manage your virtual machines, and “guest operating system” will be reserved to mean the operating system running inside virtual machines.

 

Friday, March 06, 2009 3:03:47 PM (E. Australia Standard Time, UTC+10:00)
 Wednesday, March 04, 2009
 #
 

If you are interested in learning about managing a virtual environment with System Center Virtual Machine Manager 2008 come along to the Brisbane Infrastructure Group meeting Tuesday (10th of March) to see Mark Rhodes and myself speak.

It is a free event and you can register over at there Events page.

Hope to see you there.

Wednesday, March 04, 2009 7:32:00 PM (E. Australia Standard Time, UTC+10:00)
 Thursday, January 29, 2009

If you are performing a migration to a new deployment suite, or if you just like to have every disk imaging tool in a WinPE WIM ready at a moment's notice, you might want to consider adding the Microsoft Automated Deployment Services (ADS) for legacy image support.

First off you will need to get a copy of the tools and the easiest way is to run the setup wizard for ADS and perform a custom installation. Be careful which options you install, multiple PXE agents in an environment could destroy all your hard work, see a screenshot of the installation options I used below.

Once installed you will need to collect the following file and incorporate them into your tools folder for WinPE.

  • "%windir%\system32\adssupport.dll"
  • "%programfiles%\Microsoft ADS\bin\*.*"

Done, enjoy.

Thursday, January 29, 2009 11:12:51 PM (E. Australia Standard Time, UTC+10:00)
 Thursday, November 27, 2008

I have been helping Alan Renouf, co-host of the Get-Scripting podcast, with a PowerShell script and he has been nice enough to mention me and my blog on during their latest episode.

If you haven't already checked out the Get-Scripting podcast you can listen and subscribe to it at http://get-scripting.blogspot.com.

Thursday, November 27, 2008 1:43:35 PM (E. Australia Standard Time, UTC+10:00)
 Wednesday, October 22, 2008

The WinPE customisations keep coming, wanting more information about the system you are running WinPE on?

If you are familiar with BGInfo, you already know that it is a great way of displaying information about a system and you probably already use it in your base server build (for those not in the know check out BGInfo on TechNet). But what you may not know is that it works in WinPE and you can draw that same information out and display it on the screen.

Simply add the BGInfo executable and custom layout file to your WinPE scripts directory, modify your unattend.xml to include "X:\BGInfo.exe /accepteula /timer:0 /iqX:\WinPE.bgi /silent" and you are up and running.

To get you started I have added my layout file for download WinPE.zip (.86 KB).

NOTE: BGInfo is a 32-bit executable and since WinPE 2.0 64-bit doesn't support WOW it will only work in a 32-bit WinPE environment.

MDT | WinPE
Wednesday, October 22, 2008 7:07:37 PM (E. Australia Standard Time, UTC+10:00)
Navigation
Search
On this page....
Archives
<November 2009>
SunMonTueWedThuFriSat
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345
Categories
Blogroll
Contact me
Send mail to the author(s) E-mail
Powered by

newtelligence dasBlog 2.0.7226.0.