Showing posts with label Tips & Tricks. Show all posts
Showing posts with label Tips & Tricks. Show all posts

Thursday, March 6, 2014

Add remove programs will not display and it is Blank

 

We have come across after system build Add remove programs not displaying the installed programs nor not able to add any new features

There is a Patch for this is more into Certificate file expiry

Windows6.1-KB2749655-x86.msu
http://support.microsoft.com/kb/2749655

Build Info in the Registry From OSD task Sequence

To Implement the Build info in the Registry Simply add below TS steps at the end of task sequence

clip_image002

Each Step explanation

Branding - TSeq Build Date: add a ts type as Run command line

Command line:

cmd /c reg add HKEY_LOCAL_MACHINE\SOFTWARE\CSC\SOE /v TaskSequence_BuildDate /d "%date% %time%" /f

clip_image004

For getting Task Sequence Name in the Registry:

Branding - TSeq Name:-

Command line :-

reg add HKEY_LOCAL_MACHINE\SOFTWARE\CSC\SOE /v TaskSequence_Name /d "%_SMSTSPackageName%" /f

clip_image006

For Branding - WIM Version

Command line:

reg add HKEY_LOCAL_MACHINE\SOFTWARE\CSC\SOE /v WIM_Version /d "%OSDImageVersion%" /f

clip_image008

For Branding - Country Code :- Note the TS Env should be define for this

Command line:-

reg add HKEY_LOCAL_MACHINE\SOFTWARE\CSC\SOE /v Country /d "%cmCountry%" /f

clip_image002[4]

OSD Phases Wise set a Background Wallpaper

For setting a wallpaper based on the OS deploy Phase

Create a section in your task sequence like below

clip_image002

Download the BGinfo and create a package

I have copied these files in my MDT package i.e…, MDT 2013 Files\Scripts\CustomScripts\BGInfo

The package source files looks like below

clip_image004

Now in the TS create a step as Run command line, in the Commad Line type blow and and make sure start in should be “%scriptroot%\CustomScripts\BGInfo”

Command Line: "%scriptroot%\CustomScripts\BGInfo\Bginfo.exe" SCCM-OSD-Wallpaper-Item3.bgi /nolicprompt /silent /timer:0

clip_image006