



From the release of Windows Server 2008 you can choose when you install the OS between the Full or the Core version of Windows. The Core version has most of the functionnalities of the Full but lose its graphical interface (GUI).
In this particular configuration, most of Windows administrator will be lost. You can hopefully manage remotely the server using the well known MMC consoles but there are a lot of basic tasks that will require manual configuration.
If you try this savor you’ll find some included scripts to enable/disable Windows Update or Remote Desktop but that’s all.
There is however a tool named “Core Configurator” available in 2 version (2.0 for R2 and 1.1 for R1) that enable you to easily configure your Server Core.
The following can be done:
There is another tool (in command line this time) named Core Configuration Console R2 (also exist for R1). It does most of the jobs (perhaps more than Core Configurator) and it’s worth having a look on it.
Keep in mind that you can also manage Server Core using:




TrueSec, a consulting/training company in US and Sweden, well known for their experts has published a series of guides about deployment of Windows 7 using Lite Touch and Zero Touch deployment method.
These guides (in video and PDF format) show you how to deploy a PoC (Proof of Concept) from installing the environment (SCCM, SQL, MDT 2010), through capture a reference computer, deploy it afterwards, personalize images.
This is worth to look at it. It leverages the latest technologies :
It is from my point of view a good opportunity to discover what these products can do for you.
The link to download these guides (as a iso file) is here : http://www.deploymentcd.com/





UPDATED : both PASSED !!!
Microsoft give you the opportunity to take 2 MCITP exams :
You can register to these exams on Prometric with these codes (for free):
Here are some information:
Availability
Public Registration begins: September 14, 2009
Beta exam period runs: September 21, 2009– October 16, 2009
Receiving this invitation does not guarantee you a seat in the beta; we recommend that you register immediately. Beta exams have limited availability and are operated under a first-come-first-served basis. Once all beta slots are filled, no additional seats will be offered.
Testing is held at Prometric testing centers worldwide, although this exam may not be available in all countries (see Regional Restrictions). All testing centers will have the capability to offer this exam in its live version.
Regional Restrictions: India, Pakistan, China
The learning guides are available there :
You can find some interesting resources there :
I registered for them, let see what I can do !




UPDATE : PASSED !!!
For those who like me like to take beta Microsoft exams, you have now a new opportunity with Exchange Server 2010!
I’ll take it next month, just to be sure I’m well trained.
Exchange 2010 RC is widely available on MS Download Center http://technet.microsoft.com/en-us/evalcenter/dd185495.aspx
You have great resources there: http://technet.microsoft.com/en-us/evalcenter/dd185494.aspx and http://www.msteched.com/online/channels.aspx?cname=track&channel=Unified+Communications
Just have a look for the following mail and register (if some seats remain).
You are invited to take beta exam 71-662: TS: Microsoft Exchange Server 2010, Configuring. You were specifically chosen to participate in this beta because of the SME profile you created on the Microsoft Learning Content Development site. If you pass the beta exam, the exam credit will be added to your transcript and you will not need to take the exam in its released form. The 71-xxx identifier is used for registering for beta versions of MCP exams, when the exam is released in its final form the 70-xxx identifier is used for registration.
By participating in beta exams, you have the opportunity to provide the Microsoft Certification program with feedback about exam content, which is integral to development of exams in their released version. We depend on the contributions of experienced IT professionals and developers as we continually improve exam content and maintain the value of Microsoft certifications.
71-662: TS: Microsoft Exchange Server 2010, Configuring counts as credit towards the following certification(s).
• MCTS: Microsoft Exchange Server 2010, Configuration
________________________________________
Availability
Registration begins: August 20, 2009
Beta exam period runs: August 31, 2009– September 14, 2009
Receiving this invitation does not guarantee you a seat in the beta; we recommend that you register immediately. Beta exams have limited availability and are operated under a first-come-first-served basis. Once all beta slots are filled, no additional seats will be offered. Because of the limited nature of beta exam seats, please do not blog or otherwise post this beta code until 8/24/09 to increase the likelihood that a seat will be available.
Testing is held at Prometric testing centers worldwide, although this exam may not be available in all countries (see Regional Restrictions). All testing centers will have the capability to offer this exam in its live version.
Regional Restrictions: India, Pakistan, China
________________________________________
Registration Information
You must register at least 24 hours prior to taking the exam.
Please use the following promotional code when registering for the exam: E14J
Receiving this invitation does not guarantee you a seat in the beta; we recommend that you register immediately.
To register in North America, please call:
• Prometric: (800) 755-EXAM (800-755-3926)
Outside the U.S./Canada, please contact:
• Prometric: http://www.register.prometric.com/ClientInformation.asp
___________________________________
Test Information and Support
You are invited to take this beta exam at no charge.
You will be given four hours to complete the beta exam. Please plan accordingly.
Find exam preparation information: http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-662




PowerShell uses the power of .Net Framework thus you can leverage .Net classes in your PowerShell scripts.
In this example I’ll show you how you can perform DNS lookups using the Net.Dns class :
[System.Net.Dns]::GetHostentry(“blog.paux.fr”)
The result will be (depending if your input is a A or CNAME) :
HostName Aliases AddressList
-------- ------- -----------
dedibox2.jeanb-net.com {} {88.191.92.204}
You can obviously pipe a list of hostname to this command and if you need to keep the original name you can add it to the resulted object and display it in a grid (new to PS2.0 !):
gc .\hosts.txt |% { [System.Net.Dns]::GetHostentry($_) | Add-Member -Name Host -MemberType NoteProperty -Value $_ -PassThru } | Select Host,AddressList | out-gridview
You can of course do the same with an IP address (or an IPv6 address):
[System.Net.Dns]::GetHostentry("2001:4860:a005::68")
The class in .Net Framework stay basic so you can’t resolve NS, SOA, MX or TXT records for example but you can try to use other classes as this implementation of a resolver in C# or using this one (that use the internal DNS resolver of Windows)




Microsoft released last week Office 2010 Technical Preview on Connect and it is time to speak about it !
I really appreciate this new version, for a lot of reasons (conversation display in Outlook, improvements of UI in most of apps of the suite etc.) but I’d like to emphasis on one improvement I was asking for a long time : the ability to have multiple Exchange Accounts in the same Outlook process (without using App-V, run-as or other tips to launch multiple Outlook).
You can ask why do I have 2 Exchange accounts, but it is simply because I’ve got my Avanade corporate account and my personal Exchange server (Exchange 2007 but soon Exchange 2010)
So how to do this ?
As you can see it is really straightforward so abuse of it !
I’ve got now my two Exchange accounts, as we had before for POP/IMAP :




If you often use PowerShell as script language you well know the out-* and export-* cmdlets.
I often use export-csv and open the result in Excel or out-GridView in PowerShell v2 (useful cmdlet BTW) for a nice graphical interface. I sometime use Excel API to create an Excel sheet directly or to import data but something was missing : simplicity.
These are an excellent solutions but why don’t we use Excel directly with an out-excel cmdlet ?
I just found this cmdlet there : http://pathologicalscripter.wordpress.com/out-excel/ and it is working very well ! So have fun using it.




Après avoir attendu depuis quelques jours les résultats de la certification Windows 7 : Configuration, je suis fier d’annoncer que je suis maintenant certifié (score 916/1000 !) !
La certification ressemble beaucoup à son équivalent Vista (70-620) tout en abordant les nouveautés/spécificités de Windows 7.
Quelques ressources si vous voulez bosser dessus :
________________________________
After waiting for a few days the results, I’m glad to announce I’ve passed the Windows 7 : Configuration beta exam. It’s a bit harder than its equivalent for Vista (70-620) but make a good overview of all Windows 7 new features.
You have excellent ressources if you want to train:
________________________________




Since Windows 2000, it is possible to configure which settings must be displayed in the control panel. You can hide some items or on the other side, only display the ones you choose.
To configure this you will have to edit a GPO (or the Local group policy).
The settings to edit are depending of what you want to achieve:
User Configuration\Administrative Templates\Control Panel\Hide specified Control Panel Items
or
User Configuration\Administrative Templates\Control Panel\Show only specified Control Panel Items
In Windows Vista or Windows 7, you must enter the values defined in the MSDN documentation instead of the different .cpl you want to display. You can find the different settings there : http://msdn.microsoft.com/en-us/library/cc144191(VS.85).aspx
If you want to restrict/show only the Display part in which you can set the resolution, display output, DPI, you’ll not find it in the previous link. The option is as simply as its name : Microsoft.Display.
You’ll now be able to restrict this view
and have this kind of control panel


More Options ...
Categories
Tag Cloud
Blog RSS
Comments RSS

Void « Default
Life
Earth
Wind
Water
Fire
Light 