SCCM Books

Monday, December 30, 2019

Monday, March 5, 2012

PowerShell in Nutshell learn from these steps

Stage 1

Stage 2

Stage 3

    Thursday, March 1, 2012

    Enable RDP in the Task Sequence

    Const HKEY_LOCAL_MACHINE = &H80000002
    strComputer = "."

    Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
    strComputer & "\root\default:StdRegProv")

    strKeyPath = "SYSTEM\CurrentControlSet\Control\Terminal Server"

    strValueName = "fDenyTSConnections"
    dwValue = 0
    oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue

    Monday, February 20, 2012

    How to disable the UAC in Windows 7 Deployment

    In fact we might get more errors if you have the UAC enabled while deploying the Windows 7, You can include one step in the task sequence as run a command line and fill this below in the command line box

    “CMD /C REG.EXE ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f”

     

    image

    Note: Not required any options in the options to configure however you can record with a optional Success Code “0 3010”

    http://joshuasmueller.wordpress.com/2011/01/18/disabling-windows-server-2008-sp2-uac-in-a-sccm-task-sequence/

    How to set the Timezone

    How to set the Timezone with in one task sequence… like you have more than one location and all these locations has different time zones…

     

    To do this under the task sequence Apply Windows Settings in the options TS Variable is ADSite name equals is “WhateverTheSite” and in the Properties Time Zone choose the time you wanted…

     

    image

    SNAGHTMLfacb20