16 mar 2013

SCCM by Davis: “Kenneth van Surksum became a registered member” plus 19 more

SCCM by Davis: “Kenneth van Surksum became a registered member” plus 19 more

Link to SCCM by Davis

Kenneth van Surksum became a registered member

Posted: 16 Mar 2013 01:54 AM PDT

Comments: 0

CM12 Collection prompt example

Posted: 15 Mar 2013 01:20 PM PDT

For full details see: http://www.myitforum.com/forums/tm.aspx?high=&m=238953&mpage=1#239186

SELECT distinct       sys1.Name0,       csys.Model0,       csys.Manufacturer0,       os.Caption0,       os.CSDVersion0,       BIOS.SerialNumber0,       sys1.description0,        REPLACE((SELECT IPAddress0 + ', ' FROM v_GS_NETWORK_ADAPTER_CONFIGUR WHERE resourceID = sys1.resourceID AND ipenabled0 = 1 FOR XML PATH('') )+'..',', ..','') AS [IP Addresses]  FROM       v_r_SYSTEM sys1       join v_GS_COMPUTER_SYSTEM csys on csys.resourceid=sys1.resourceid       join v_GS_OPERATING_SYSTEM os on os.resourceid=sys1.resourceid       join v_GS_PC_BIOS bios on bios.resourceid=sys1.resourceid       JOIN v_FullCollectionMembership fcm on fcm.resourceid=sys1.resourceid    WHERE        fcm.Collectionid= 'SMS00001'  ORDER BY       sys1.Name0 

Damon Mulligan became a registered member

Posted: 15 Mar 2013 03:42 PM PDT

Comments: 0

Garth Jones wrote a new post, CM12 Collection prompt example

Posted: 15 Mar 2013 01:20 PM PDT

ThumbnailFor full details see: http://www.myitforum.com/forums/tm.aspx?high=&m=238953&mpage=1#239186 SELECT distinct
sys1.Name0,
csys.Model0,
csys.Manufacturer0,
os.Caption0,
os.CSDVersion0,
[…]

Comments: 0

Rod Trent posted an update in the group Microsoft Management Summit: Prepping for MMS 2013

Posted: 15 Mar 2013 02:17 PM PDT

Phil Schwan wrote a new post, Prepping for MMS2013

Posted: 15 Mar 2013 02:11 PM PDT

ThumbnailI'm ready to get my geek on.  The Microsoft Management Summit (MMS) conference is always a marathon. Between the time difference (three hours), the information overload from the sessions and labs, the late nights […]

Comments: 0

Deploying Windows 8 and Customizing the Lock Screen with ConfigMgr 2012

Posted: 27 Jan 2013 06:55 AM PST

This week my post will be about the deployment of Windows 8 and then with a customized lock screen. One of the main complaints about a customized deployment of Windows 8 was that it wasn't possible to set a customized lock screen without using unsupported methods of "hacking" file permissions and replacing the pictures. This has changed since the cumulative update of November for Windows 8 (see also here).

One of the nice adjustments with this cumulative update is that it enables enterprise customers to customize the default lock screen. This setting is introduced as a Group Policy –setting, named Force a specific default lock screen image. In this post I'm not going to use the Group Policy –setting, but only the corresponding registry value LockScreenImage under HKLMSOFTWAREPoliciesMicrosoftWindowsPersonalization. The reason for that is simple, I like setting a customized lock screen via my task sequence, because it gives a clear view when the task sequence is successfully ended.

Prerequisites

Like last week, before we can start to deploy Windows 8 we need ConfigMgr 2012 SP1. The biggest difference is that Microsoft released updated binaries, this week (see here), for ConfigMgr 2012 SP1. These binaries prevent the problems with deploying Windows 8 and installing the client. Besides that, the following two bullets are a prerequisite for this post:

  • An activated version of Windows 8 Enterprise. Without activation it's not possible to personalize the default lock screen.
  • The cumulative update of November 2012 (KB2770917). Without this update, Windows 8 does not support customizing the default lock screen.

Configuration

TSEdiSetLocScrNow, after the prerequisites are met, let's start with configuring the task sequence. There are only a few steps that need to be configured and they are all basic actions. So I won't go into a lot of details, besides the batch file with the real actions. These are the global steps:

  • Add a Configuration Manager Client Package (default)
  • Add a x86/ x64 Boot Image (default)
  • Add a Operating System Image of Windows 8 (default install.wim)
  • Create an Package, with as content the new lock screen image and a batch file. The content of the batch file should look like this:

    REM ============================================================================== REM Make OEM Background directory REM ============================================================================== MD "C:<NewLockScreenFolder>" REM ============================================================================== REM Copy OEM Background image REM ============================================================================== XCOPY "%~dp0<NewLockScreenImage>.jpg" "C:<NewLockScreenFolder>" /HERCIY REM ============================================================================== REM Make Windows use OEM Background image REM ============================================================================== REG ADD HKLMSOFTWAREPoliciesMicrosoftWindowsPersonalization /V LockScreenImage /T REG_SZ /D C:<NewLockScreenFolder><NewLockScreenImage>.jpg /F

    .csharpcode, .csharpcode pre
    {
    font-size: small;
    color: black;
    font-family: consolas, "Courier New", courier, monospace;
    background-color: #ffffff;
    /*white-space: pre;*/
    }
    .csharpcode pre { margin: 0em; }
    .csharpcode .rem { color: #008000; }
    .csharpcode .kwrd { color: #0000ff; }
    .csharpcode .str { color: #006080; }
    .csharpcode .op { color: #0000c0; }
    .csharpcode .preproc { color: #cc6633; }
    .csharpcode .asp { background-color: #ffff00; }
    .csharpcode .html { color: #800000; }
    .csharpcode .attr { color: #ff0000; }
    .csharpcode .alt
    {
    background-color: #f4f4f4;
    width: 100%;
    margin: 0em;
    }
    .csharpcode .lnum { color: #606060; }

    .csharpcode, .csharpcode pre
    {
    font-size: small;
    color: black;
    font-family: consolas, "Courier New", courier, monospace;
    background-color: #ffffff;
    /*white-space: pre;*/
    }
    .csharpcode pre { margin: 0em; }
    .csharpcode .rem { color: #008000; }
    .csharpcode .kwrd { color: #0000ff; }
    .csharpcode .str { color: #006080; }
    .csharpcode .op { color: #0000c0; }
    .csharpcode .preproc { color: #cc6633; }
    .csharpcode .asp { background-color: #ffff00; }
    .csharpcode .html { color: #800000; }
    .csharpcode .attr { color: #ff0000; }
    .csharpcode .alt
    {
    background-color: #f4f4f4;
    width: 100%;
    margin: 0em;
    }
    .csharpcode .lnum { color: #606060; }

  • Create a Install an existing image package –Task Sequence, with the mentioned packages of the previous steps (no need for the steps State Migration, Include Updates and Install Updates).
    • Note: In case KB2770917 is not part of the Windows 8 image, then it is necessary to deploy it during the task sequence via an Install Updates –step.
  • Edit the new Task Sequence and add a Run Command Line –step (see picture). Now add as Command line <NameOfBatchFile>.cmd, select Package and Browse to the created Package.

Result

After all the configuring is done, it's time to take a look at the results. In this case, I think, it's not interesting to look at the log files, but just at the end result. So under here, on the left side is the result of a normal deployment and on the right side is the result of my custom deployment.

Default Custom
OldLockScreen NewLockScreen

Rod Trent posted an update in the group System Center Configuration Manager 2012: Systems Center Configuration Manager Sp1 : Adds support for […]

Posted: 15 Mar 2013 12:35 PM PDT

Riverbed Offers Developer Tools, APIs for Customization

Posted: 15 Mar 2013 11:50 AM PDT

The company wants to let IT staffs more easily customize how they use Riverbed application performance products in their networking infrastructures.

Rebecca Schaffer joined the group System Center Configuration Manager 2012

Posted: 15 Mar 2013 11:31 AM PDT

Comments: 0

Fluke Visual TruView Provides Deeper Insight Into Complex Networks

Posted: 15 Mar 2013 07:00 AM PDT

REVIEW: Visual TruView from Fluke Networks combines network monitoring, troubleshooting, forensics and analysis into a simple-to-use, all-inclusive package.

Rod Trent posted an update in the group IT Fit: The Mechanics of the Pull-Up (and Why Women Can Absolutely […]

Posted: 15 Mar 2013 10:29 AM PDT

Jase T. Wolfe wrote a new post, A Look At The ZTIGather Flow and The CustomSettings.INI File

Posted: 15 Mar 2013 09:58 AM PDT

Thumbnail"I don't understand the
CustomSettings.ini file."  I hear this from a
high percentage of clients who use MDT in their environment. If
they started with an MDT-only deployment position, I will often see
a rules […]

Comments: 0

Rod Trent posted an update in the group Microsoft Management Summit: 2 MMS 2013 full conference passes, just enter to win!

Posted: 15 Mar 2013 09:53 AM PDT

Rod Trent wrote a new post, 2 MMS 2013 full conference passes, just enter to win!

Posted: 15 Mar 2013 09:51 AM PDT

We've acquired 2 full conference passes to MMS 2013 and need to give these to individuals who really want to go.  And, because time is short, we need to give these away quickly to give the winners enough time to […]

Comments: 0

Flexera Software wrote a new post, App Store Essentials: Creating the Right User Experience

Posted: 15 Mar 2013 06:30 AM PDT

1st in a series of blogs on the characteristics of a successful enterprise app store
By: Laura Noonan
Think about how easy it is to order an app from iTunes or Google Play. Now compare that to traditional IT […]

Comments: 0

Rod Trent posted an update in the group Software Licensing and SAM: Three Reasons Why Software Asset Management Programs Have […]

Posted: 15 Mar 2013 07:55 AM PDT

Rod Trent posted an update in the group Microsoft Management Summit: First look: MMS 2013 slide deck

Posted: 15 Mar 2013 07:33 AM PDT

Rod Trent wrote a new post, First look: MMS 2013 slide deck

Posted: 15 Mar 2013 07:32 AM PDT

ThumbnailIf you're curious and want a sneak peak at what you'll experience during a MMS 2013 session, take a look at the splash and title slides from the official MMS 2013 slide deck.

What do you think?  Very […]

Comments: 0

Rod Trent posted an update in the group Microsoft Management Summit: Channel 9 providing MMS 2013 session replays

Posted: 15 Mar 2013 07:30 AM PDT

No hay comentarios:

Publicar un comentario

SCCM by Davis