Enable RDP in the Task Sequence

Const HKEY_LOCAL_MACHINE = &H80000002strComputer = “.” Set oReg=GetObject(“winmgmts:{impersonationLevel=impersonate}!” & _strComputer & “rootdefault:StdRegProv”) strKeyPath = “SYSTEMCurrentControlSetControlTerminal Server” strValueName = “fDenyTSConnections”dwValue = 0oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue

Where Should i look at the SCOM? What to learn in focus??

Where Should i look at the SCOM? What to learn in focus?     Deployment, Setup, Upgrade    Operations Manager Management Packs    Reporting setup, deployment and configuration    Authoring Space, Authoring Console    Extensibility..Connectors, PowerShell    AVICode 5.7 specific genera    Product features for managing UNIX and Linux computers    Operations Manager Application Performance Monitoring

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 HKLMSOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystem /v EnableLUA /t REG_DWORD /d 0 /f”   Note: … Read more

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 … Read more

OSD import permission Issue

We might get when we are looking for only import permissions for a user or Group.. or even when we setup the permissions at the end of the wizard we may get this error.. Errors ·You do not have security rights to perform this operation. ·ConfigMgr Error Object: ·instance of SMS_ExtendedStatus ·{ · Description = … Read more

How to grant the SCCM Console permissions to Support Executive

Scenario SCCM installed on cm07.test.com & I have a test system with windows XP/7.I have a User called RBAC and RBAC wanted some permissions on SCCM console. Steps:- Install the SCCM console on windows Xp/7 add the RBAC user to SMS Admins Group. Follow these steps for granting the DCOM rights. From SCCM Server the … Read more

C drive disk space information on my all machine

SELECT TOP (100) PERCENT dbo.v_R_System.Name0 AS [System Name], dbo.v_GS_LOGICAL_DISK.Name0 AS [C Drive], dbo.v_GS_LOGICAL_DISK.Size0 AS [Total Size], dbo.v_GS_LOGICAL_DISK.FreeSpace0 AS FreeSpace, dbo.v_GS_LOGICAL_DISK.Size0 AS Used FROM dbo.v_R_System INNER JOIN dbo.v_GS_LOGICAL_DISK ON dbo.v_R_System.ResourceID = dbo.v_GS_LOGICAL_DISK.ResourceID INNER JOIN dbo.v_FullCollectionMembership ON dbo.v_FullCollectionMembership.ResourceID = dbo.v_R_System.ResourceID WHERE (dbo.v_GS_LOGICAL_DISK.DriveType0 = 3) AND (dbo.v_FullCollectionMembership.CollectionID = ‘sms00001’) AND (dbo.v_GS_LOGICAL_DISK.Name0 = ‘c:’) ORDER BY FreeSpace

Cookbook on SCOM

What are the SCOM Roles?                 The Management Group                 Operations Manager Database                 Root Management Server                 SCOM Console                 Management Packs What are the Optional Roles?                 These components are installed separately from the required core components, but some can be installed at the same time as the core components. o   Management Server … Read more