27 oct 2012

SCCM by Davis

SCCM by Davis


Nick Moseley wrote a new post, Removing Desktop Shortcuts for First Dispute Client

Posted: 27 Oct 2012 09:13 AM PDT

ThumbnailI was in a recent situation where I needed to create an install package for First Data's FirstDispute client, but to eliminate the shortcuts.  It could have been easy to just install the software and then delete […]

Comments: 0

LTI/ZTI PowerShell: Deployment Script logging

Posted: 19 Sep 2012 09:00 PM PDT

The task sequence step "Run PowerShell Script" has some cool features. One of which is the way it handles information returned from the Write-Host, Write-Warning and Write-Error cmdlets.

MDT collects Information(Write-Host), Warnings(Write-Warning) and Errors(Write-Error) returned from a cmdlet in a script. The information is stored in the deployment logs(BDD.log and also a log with the scriptname).

To test this, I've written a simple script, just 3 lines.

Write-Host"This is an Information message."
Write-Warning"This is a Warning message."
Write-Error"This is an Error message."

Running the script returns this at the end of the deployment:

As you can see, the warnings and errors returned from using the Write-Warning and Write-Error cmdlets are displayed at the end of the deployment(although, I'm not sure why it's tripled the error count).

This yellow screen can generate unnecessary comeback sometimes. In some cases the warning is harmless. So in those situations I use the common parameter –WarningAction "SilentlyContinue" at the end of the script line to supress the messages. This prevents your deployments from looking like they've failed when they haven't really.

Another thing you can try is to add this line to the start of your script.

$WarningPreference = "SilentlyContinue

Right, looking at my output, in the log files MDT has handled all the logs and coded them appropriately.

I'm pleased with this and am sure it will save me having to do a lot of work. Remember, if you call a module that has a function that uses Write-Warning then you will see the yellow screen at the end of your deployments. You may have to edit the function to supress the message as it exists within a different scope.

#SCCM / #ConfigMgr 2012 :: RBA : Infrastructure Administrator Client Setting Issue

Posted: 19 Sep 2012 12:20 PM PDT

In this post, I'll provide few tips to resolve some common issues with build-in security role "Infra

Linux and Unix Clients for SCCM 2012 SP1

Posted: 19 Sep 2012 10:19 AM PDT

The following UNIX and Linux versions are supported in the Beta release.

  • AIX Version 7.1 (Power)
  • AIX Version 6.1 (Power)
  • AIX Version 5.3 (Power)
  • HP-UX Version 11iv3 (IA64 & PA-RISC)
  • HP-UX Version 11iv2 (IA64 & PA-RISC)
  • RHEL Version 6 (x86 & x64)
  • RHEL Version 5 (x86 & x64)
  • RHEL Version 4 (x86 & x64)
  • Solaris Version 10 (x86 & SPARC)
  • Solaris Version 9 (SPARC)
  • SLES Version 11 (x86 & x64)
  • SLES Version 10 SP1 (x86 & x64)
  • SLES Version 9 (x86)

The Clients can be downloaded from here

This blog post describes how to install them.

UPDATE : #Microsoft System Center 2012 Technical documentation for #ITPRO #sysctr #SCVMM

Posted: 19 Sep 2012 06:21 AM PDT

LTI/ZTI PowerShell: Comment Based Help

Posted: 18 Sep 2012 09:00 PM PDT

I recommend using PowerShell comment based help to document your deployment scripts as described on Technet in about_Comment_Based_Help. This makes your scripts self documenting so colleagues can see who wrote it, what it does and examples and parameter usage. Below, I've added an example of comment based help to my evolving rename-computer script.

Anything between the <# and #> in PowerShell is a comment. I've also documented it internally by adding a # comment line to each section of code.

<#

.SYNOPSIS

Lite-Touch Deployment script to rename a computer

 

.DESCRIPTION

The ZTIRename-Computer.ps1 script will rename a computer and join a new workgroup.

   

.PARAMETER Name

Specifies the new computername

 

.PARAMETER WorkgroupName

Specifies the new Workgroup name

 

.EXAMPLE

%SCRIPTROOT%\ZTIRename-Computer.ps1

Add this line to your add powershell task sequence to take values from the deployment

properties OSDComputername and Workgroup. Remember to add the task sequence step

Restart Computer immediately after this step.

 

.EXAMPLE

ZTIRename-Computer.ps1 -Name PC01 -Workgroup Continuum

This will rename the computer to PC01 and the workgroup to Continuum after a reboot.

 

.NOTES

Author: Andrew Barnes

Date: 14 September 2012

 

.LINK

Online version: http://scriptimus.wordpress.com          

#>

 

Param (

    [String]$Name=$TSEnv:OSDComputername,

    [String]$WorkGroupName=$TSEnv:JoinWorkgroup

)

 

Begin{}

Process{

    # Rename the Computer using WMI

    (Get-WmiObject win32_computersystem).rename($Name)

 

    # Add the computer to a new workgroup

    Add-Computer -WorkGroupName $WorkGroupName -WarningAction SilentlyContinue

}

End{}

From a console, other users of the script can use the Get-Help cmdlet to access the documentation.

Comment_Based_Help

LTI/ZTI PowerShell: Using parameterised scripts in Task Sequences

Posted: 17 Sep 2012 09:00 PM PDT

There are methods in creating PowerShell scripts suitable for task sequence deployment. A good starting point is the Technet article about_Scripts. One of the most useful features of MDT/SCCM are the deployment properties. Today, I'm going to talk about using script parameters to pass deployment data into your scripts.

As a subject, I'm going to create a script that renames a computer then joins a workgroup. This is because MDT doesn't do this natively(Post OS deployment). If you clone a VM then this is usually the first task you will do. Yes, PowerShell 3 has a cmdlet now for this but for earlier versions this is the method.

Here is the first example of a simple parameterised script that will work in a task sequence.

To accept parameters from the task sequence.

The code is very simple and uses a standard PowerShell construct:

  Param (   [String]$Name,   [String]$WorkGroupName  )    Begin{}  Process{   (Get-WmiObjectwin32_computersystem).rename($Name)   Add-Computer -WorkGroupName $WorkGroupName -WarningAction SilentlyContinue  }  End{}  

Save the script in the deployment share under the scripts folder and call it ZTIRename-Computer.ps1

Next, add it to MDT by creating a new Run PowerShell Script, task sequence step.

TS Step 1

Set the PowerShell script value as: %SCRIPTROOT%\ZTI-Rename-Computer.ps1

Then set the Parameters value as: -Name CON-LAB1 -WorkGroupName Continuum

This is how you accept the parameters from the task sequence itself.

Note: This particular script will need a restart but MDT can handle that itself so I added a Restart Computer step beneath it rather than code it in PowerShell.

To use deployment parameters with a script.

You will probably want to use your script on a number of different computers. In which case, you will need to call parameters from the customsettings.ini file or deployment database. First configure the computer name and workgroup parameters as normal in the customsettings.ini or database. eg:

OSDComputername = CON-Lab1
JoinWorkGroup = Continuum

Next, modify the Task Sequence step and change the Parameters section to these values:

-Name $TSEnv:OSDComputername -WorkGroupName $TSEnv:JoinWorkGroup

TS Step 2

This will use the deployment parameters and overwrite any defaults that may have been coded in the script. Speaking of which. . .

To code parameter defaults in the script.

In the script modify the Param section to store the values to the deployment properties. You can hard code the values or use the deployment parameters like in this example:

  Param (   [String]$Name = $tsenv:ComputerName,   [String]$WorkGroupName = $tsenv:JoinWorkgroup  )    Begin{}  Process{   (Get-WmiObjectwin32_computersystem).rename($Name)   Add-Computer-WorkGroupName$WorkGroupName-WarningActionSilentlyContinue  }  End{}  

For a script like this I would prefer to keep the parameters in the script to save having to enter the parameters in the task sequence.

Install Guide for ConfigMgr 2012 SP1 Beta + Server 2012 + SQL 2012 CU 3

Posted: 17 Sep 2012 11:31 AM PDT

Rob Marshall published very detailed step by step guide how we can install SCCM 2012 SP1 beta with SQL 2012 and Server 2012. If you want to create your test lab for SCCM 2012 SP1 beta you can follow the steps provided here.

Not #SCCM / #ConfigMgr : My Blog is listed in BizTech Magazine's 50 Must-Read IT Blogs of 2012 !!!

Posted: 17 Sep 2012 09:13 AM PDT

Below picture shows you all. My blog is listed in the BizTech Magazine's "50 Must-Read IT Blogs 2012

Rod Trent posted an update in the group System Center Operations Manager: Microsoft Office Web Apps Server MP Guide for Opsmgr released

Posted: 26 Oct 2012 04:59 PM PDT

Rod Trent wrote a new post, Microsoft Office Web Apps Server MP Guide for Opsmgr released

Posted: 26 Oct 2012 04:57 PM PDT

This guide contains a Quick Start section to help you set up the environment, import management packs, and configure the system for monitoring by using SCOM. It also contains monitors and rules for Office Web Apps […]

Comments: 0

Rod Trent posted an update in the group Windows 8: Beware the Windows 8 to Windows RT Profile Sync

Posted: 26 Oct 2012 04:46 PM PDT

Rod Trent posted an update in the group Microsoft Surface: Beware the Windows 8 to Windows RT Profile Sync

Posted: 26 Oct 2012 04:46 PM PDT

Rod Trent wrote a new post, Beware the Windows 8 to Windows RT Profile Sync

Posted: 26 Oct 2012 04:44 PM PDT

ThumbnailYou gotta love the cloud.  Today, I did two things of note: I received and setup my new Microsoft Surface RT and then shortly afterward I upgraded my Dell desktop to Windows 8.  All was good.  But, not for long.  […]

Comments: 0

Removing Built-in Applications from Windows 8

Posted: 25 Oct 2012 07:54 PM PDT

When creating a Windows 8 Image for the Enterprise you may not want to include all of the default Windows Store Applications. These applications are easy enough to remove by right clicking on the app tile in the Start Screen, but as you most likely know I am lazy and like to automate everything, so I prefer to use PowerShell.

To remove an application with PowerShell you need to remove it in two places:

  1. Remove the provisioned package
  2. Remove the "installed" package from the administrator account

To remove the provisioned package you use the command Remove-AppxProvisionedPackage and to remove the installed package you use the command Remove-AppxPackage.

If you want to remove all of the built-in applications then you can use the following simple PowerShell commands:

Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage –online

Get-AppXPackage | Remove-AppxPackage

However I often want to leave some of the applications in the image, I need granular control. In this case you need to find the PackageFullName value for each application and then remove each app individually. Getting this information can be a tedious process so I have created a script that you can use to remove the applications. This script works for both X84 and X64 versions of the Windows 8. I usually comment out the lines for the apps that I want to keep and then add the script to the MDT task sequence that I use to create my master image. The script is included below:

if([IntPtr]::Size -eq 4)

{

   # This is an X86 OS - Remove provisioned package for all users

    remove-AppxProvisionedPackage -package      Microsoft.Bing_1.2.0.137_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingFinance_1.2.0.135_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingNews_1.2.0.135_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingSports_1.2.0.135_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingTravel_1.2.0.145_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingWeather_1.2.0.135_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.Camera_6.2.8514.0_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      microsoft.microsoftskydrive_16.4.4204.712_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.Reader_6.2.8516.0_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      microsoft.windowscommunicationsapps_16.4.4206.722_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      microsoft.windowsphotos_16.4.4204.712_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.XboxLIVEGames_1.0.927.0_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.ZuneMusic_1.0.927.0_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.ZuneVideo_1.0.927.0_x86__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.Media.PlayReadyClient_2.3.1662.0_x86__8wekyb3d8bbwe -online

   # Remove installed apps for Local Administrator

    remove-AppxPackage -package Microsoft.Bing_1.2.0.137_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingFinance_1.2.0.135_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingNews_1.2.0.135_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingSports_1.2.0.135_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingTravel_1.2.0.145_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingWeather_1.2.0.135_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.Camera_6.2.8514.0_x86__8wekyb3d8bbwe

    remove-AppxPackage -package microsoft.microsoftskydrive_16.4.4204.712_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.Reader_6.2.8516.0_x86__8wekyb3d8bbwe

    remove-AppxPackage -package microsoft.windowscommunicationsapps_16.4.4206.722_x86__8wekyb3d8bbwe

    remove-AppxPackage -package microsoft.windowsphotos_16.4.4204.712_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.XboxLIVEGames_1.0.927.0_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.ZuneMusic_1.0.927.0_x86__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.ZuneVideo_1.0.927.0_x86__8wekyb3d8bbwe  

    remove-AppxPackage -package Microsoft.Media.PlayReadyClient_2.3.1662.0_x86__8wekyb3d8bbwe

}

Else

{

    # This is an X64 OS – Remove provisioned package for all users

    remove-AppxProvisionedPackage –package     Microsoft.Bing_1.2.0.137_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingFinance_1.2.0.135_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingMaps_1.2.0.136_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingNews_1.2.0.135_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingSports_1.2.0.135_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingTravel_1.2.0.145_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.BingWeather_1.2.0.135_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.Camera_6.2.8514.0_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      microsoft.microsoftskydrive_16.4.4204.712_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.Reader_6.2.8516.0_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      microsoft.windowscommunicationsapps_16.4.4206.722_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      microsoft.windowsphotos_16.4.4204.712_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.XboxLIVEGames_1.0.927.0_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.ZuneMusic_1.0.927.0_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.ZuneVideo_1.0.927.0_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.Media.PlayReadyClient_2.3.1662.0_x64__8wekyb3d8bbwe -online

    remove-AppxProvisionedPackage -package      Microsoft.Media.PlayReadyClient_2.3.1662.0_x86__8wekyb3d8bbwe -online 

    # Remove installed apps for Local Administrator

    remove-AppxPackage -package     Microsoft.Bing_1.2.0.137_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingFinance_1.2.0.135_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingMaps_1.2.0.136_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingNews_1.2.0.135_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingSports_1.2.0.135_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingTravel_1.2.0.145_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.BingWeather_1.2.0.135_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.Camera_6.2.8514.0_x64__8wekyb3d8bbwe

    remove-AppxPackage -package microsoft.microsoftskydrive_16.4.4204.712_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.Reader_6.2.8516.0_x64__8wekyb3d8bbwe

    remove-AppxPackage -package microsoft.windowscommunicationsapps_16.4.4206.722_x64__8wekyb3d8bbwe

    remove-AppxPackage -package microsoft.windowsphotos_16.4.4204.712_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.XboxLIVEGames_1.0.927.0_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.ZuneMusic_1.0.927.0_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.ZuneVideo_1.0.927.0_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.Media.PlayReadyClient_2.3.1662.0_x64__8wekyb3d8bbwe

    remove-AppxPackage -package Microsoft.Media.PlayReadyClient_2.3.1662.0_x86__8wekyb3d8bbwe

}

For more information on adding and removing apps please refer to this TechNet article.

This post was contributed by Ben Hunter, a Solution Architect with Microsoft Consulting Services.

Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the Terms of Use.

Rod Trent wrote a new post, FAQ: Do I need to reinstall Microsoft Security Essentials on Windows 8 or Windows RT?

Posted: 26 Oct 2012 02:11 PM PDT

This question is showing up already.  So, here's the answer...

Q: During the upgrade of Windows 8, it tells me that Microsoft Security Essentials (MSE) needs to be uninstalled. After the Windows 8 upgrade is […]

Comments: 0

Windows 8 Start Screen Customization with MDT

Posted: 25 Oct 2012 07:51 PM PDT

If you are creating a Windows 8 image then you most likely want to customize the Start Screen layout that users see when they logon for the first time. However the question is "how should I customize the Start Screen?"

There are three approaches that you can use:

  1. Use the Unattend.xml file to define which applications will appear in each "slot" on the Start Screen as detailed here.
  2. Manually customize the Start Screen, then use CopyProfile to apply the customizations to the default user profile.
  3. Manually customize the Start Screen and capture the layout file created, then copy this file to the default user during image deployment.

The main approach that I use is CopyProfile. I use this approach because this gives me control over the process. The one drawback is that it requires manual steps in the image creating process, and I love to automate everything! However at present the really isn't a viable alternative to manual steps. In the rest of this post I will detail how to customize the Start Screen using options 2 and 3 when building an image using MDT 2012 Update 1.

Customizing the Start Screen

As mentioned above when I create a Windows 8 image I always like to fully automate the process. This provides a consistent and repeatable image engineering process, however the customization of the Start Screen must be performed manually. To minimize the manual steps I pause the task sequence using the little know built-in MDT script - LTISuspend.wsf. I then perform the customization and resume the task sequence. The following steps outline this process:

       1. Add the LTISuspend.wsf script to the task sequence. This action should be added as highlighted in the picture below.

    clip_image001

        2. During the deployment you will see the following prompt.

    clip_image002

        3. Bring up the Start Screen and manually arrange the tiles and label groups as needed.

    Before:

    image

    After:

    clip_image003

4. Resume Task Sequence and automatically capture the image by clicking on the Resume Task Sequence shortcut on the desktop.

 

Once the image has been captured there are two options for replicating these changes to the default user profile.

Customization using CopyProfile

The CopyProfile process has been well documented in a this Deployment Guys post. In summary you must add the CopyProfile option to the unattend.xml used to deploy the image (NOT the unattend.xml used to create the image). This will then copy the Start Screen layout from the local administrator profile (that you manually customized) to the default user profile. Then when a user logs in for the first time they receive this layout.

The CopyProfile option should be added to the specialize pass section as follows:

<settings pass="specialize">
  <component>
    < CopyProfile>true</CopyProfile>
  </component>
< /settings>

Customization using App Layout file

During the Sysprep generalization process a file is created called AppsFolderLayout.bin. This file contains the layout for the local administrator in a generalized form which can be applied to other users. To use this file we simply copy the file from:

C:\Users\Administrator\AppData\Local\Microsoft\Windows\AppsFolderLayout.bin

To:

C:\Users\Default\AppData\Local\Microsoft\Windows\AppsFolderLayout.bin

The script located here will perform this process. Simply add this script to the task sequence immediately after the Postinstall \ Configure step as shown below.

  1. Copy the attached file to the scripts folder of your Deployment Share
  2. Add a new Run Command Line Task sequence action as shown in the screenshot below:

    clip_image004

 

Here are few extra tips that will help with your Start Screen customization:

  • If you want to change the color scheme then then use the SystemDefaultBackgroundColor setting in the unattend.xml as detailed on TechNet.
  • You can only customize the Start Screen layout for Windows 8 Enterprise or domain-joined Windows 8 Pro machines.
  • Links to websites will be maintained during the copy process however the icons for these links will not be retained.
  • You cannot add non-default Windows Store Apps to the image. This will cause Sysprep to fail. However you can side load applications.

For more information on customizing the Start Screen please refer to this TechNet article.

This post was contributed by Ben Hunter, a Solution Architect with Microsoft Consulting Services.

Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the Terms of Use.

SCCM by Davis

Posted: 26 Oct 2012 01:38 PM PDT

SCCM by Davis


Stewart McGee and Jonathan Robbins are now friends

Posted: 26 Oct 2012 10:42 AM PDT

Comments: 0

Rod Trent posted an update in the group Microsoft Surface: Setting the Microsoft Surface screen to not go dark while plugged in

Posted: 26 Oct 2012 10:26 AM PDT

Rod Trent replied to the forum topic Custom script right click tool? in the group SCCM Right-click tools

Posted: 26 Oct 2012 10:17 AM PDT

That would be awesome! Make sure to include disclaimers about "TEST THIS FIRST" before running. :)

Comments: 0

Rod Trent wrote a new post, Setting the Microsoft Surface screen to not go dark while plugged in

Posted: 26 Oct 2012 10:13 AM PDT

Here's a quick tip.  Most tablets have a quick way to tell the tablet to not go to sleep when running on power (plugged-in).  The Microsoft Surface does not have a quick and easy way to do it in the Metro (yes, I […]

Comments: 0

Huawei Proposes Security Center in Australia

Posted: 26 Oct 2012 10:45 AM PDT

The networking equipment maker is looking to allay national security fears regarding its relationship with the Chinese government.

Chris joined the group SCCM Right-click tools

Posted: 26 Oct 2012 09:55 AM PDT

Comments: 0

Ryan Ephgrave replied to the forum topic Custom script right click tool? in the group SCCM Right-click tools

Posted: 26 Oct 2012 08:36 AM PDT

When I say multiple scripts at once, I mean, let's say there are 20 computers in a collection. It's going to run the same script 20 times, passing one computer name to the script each time it runs. With jobs, […]

Comments: 0

Ryan Ephgrave started the forum topic Custom script right click tool? in the group SCCM Right-click tools

Posted: 26 Oct 2012 08:34 AM PDT

I was tossing around an idea for a Collection right click tool that would allow you to run a custom script against a collection. So you'd copy and paste your code into the text window, it could be batch, vbs, or […]

Comments: 0

David Scambler wrote a new post, WMUG Event - A Day with Wally Mead covering ConfigMgr 2012 RTM and SP1 on 10th of November 2012

Posted: 26 Oct 2012 07:03 AM PDT

ThumbnailWMUG has done it again!
We're very proud to announce that Wally Mead is coming back to the UK, and to WMUG on the 10th of November 2012, to present across a day on System Center 2012 Configuration Manager RTM […]

Comments: 0

Matt Schultz joined the group SCCM Right-click tools

Posted: 26 Oct 2012 05:42 AM PDT

Comments: 0

Phil Schwan joined the group Windows PowerShell

Posted: 26 Oct 2012 05:39 AM PDT

Comments: 0

Marco Nielsen wrote a new post, Apple iOS 6 - Microsoft Exchange Calendaring Issue

Posted: 26 Oct 2012 05:17 AM PDT

A bug has surfaced for iOS 6 users under some specific circumstances. It appears that several companies first reported in late September and it has escalated in recent weeks. It centers around meeting cancellation […]

Comments: 0

Rod Trent posted an update in the group The Word at myITforum: 1 Corinthians 1.27 But God has chosen the foolish things of […]

Posted: 26 Oct 2012 05:13 AM PDT

1 Corinthians 1.27 But God has chosen the foolish things of the world to put to shame the wise, and God has chosen the weak things of the world to put to shame the things which are mighty; and the base things of the world and the things which are despised God has chosen, and the things which are not, to bring to nothing the things that are,

Comments: 0

Rod Trent posted an update in the group IT Fit: MIO\'s Active Connect Watch Uses MyFitnessPal To Help You Lose Weight

Posted: 26 Oct 2012 05:04 AM PDT

Rod Trent posted an update in the group System Center Configuration Manager 2012: Wally Mead back in the UK presenting on ConfigMgr 2012 SP1

Posted: 26 Oct 2012 04:53 AM PDT

Ben Tey joined the group SCCM Right-click tools

Posted: 26 Oct 2012 12:31 AM PDT

Comments: 0

Rob Marshall wrote a new post, Wally Mead back in the UK presenting on ConfigMgr 2012 SP1

Posted: 25 Oct 2012 04:14 PM PDT

ThumbnailIt's becoming a regular annual feature now, and this year is no exception with Wally Mead joining WMUG for the day on the 10th of November 2012!We're back in Reading for this event, at the Microsoft UK TVP Campus. […]

Comments: 0

Rod Trent and Kevin Oliver are now friends

Posted: 25 Oct 2012 03:42 PM PDT

Comments: 0

Rod Trent posted an update in the group System Center Configuration Manager 2012: Citrix XenApp 6.5 integration with ConfigMgr 2012 – part 4

Posted: 25 Oct 2012 03:26 PM PDT

Rod Trent wrote a new post, Infographic: Evolution of the Windows user, Windows 1.0 thru Windows 8

Posted: 25 Oct 2012 03:25 PM PDT

ThumbnailWow...I think the actual PCs in this Infographic are more on target than the users themselves.  Windows 8 doesn't make me want to don a flanel shirt and carry a purse.

Compiled By: Freemake

Comments: 0

You are subscribed to email updates from SCCM by Davis
To stop receiving these emails, you may unsubscribe now.
Email delivery powered by Google
Google Inc., 20 West Kinzie, Chicago IL USA 60610
System Center Configuration Manager - Davis Blog

No hay comentarios:

Publicar un comentario

SCCM by Davis