basic Programming Free CBTS
https://www.programmingvideotutorials.com
https://www.programmingvideotutorials.com
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? 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
https://www.infrontconsulting.com/docs/SCOM_2007_R2_Bootcamp.pdf
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 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
https://www.netometer.com/
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
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
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