Posts

Showing posts from January, 2012

How to Turn on Remote Desktop Using Regedit

Image
Run regedit .exe . Enter the following registry key : HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server Under the Terminal Server key, find the REG_WORD value named DenyTSConnection . Double-click on that value to open the edit DWORD Value box and change the value data from 1 (Remote Desktop disable) to 0 (Remote Desktop enabled) .

Find all Obsolete computerobject in SCCM 2007

Image
When you have a big Microsoft SCCM 2007 environment, it’s very handy to have an overview of all the obsolete computerobject within the SCCM database. This query gives you this overview. 1.) Create a new Collection. (In my example it is All Obsolete Computerobjects ) 2.) Create a new query. (In my example it is Query All Obsolete Computerobjects ) 3.) Edit the query statement. Use the following query: select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.Obsolete = 1 4.) Run the “Update Collection Membership” 5.) View the result This entry was posted on Wednesday, April 6th, 2011 at 11:30 am and is filed under Microsoft SCCM 2007 . You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.

How to remove the Null Entries from SCCM

Image
Run this query select SYS1.ResourceID,SYS1.ResourceType,SYS1.Name,SYS1.SMSUniqueIdentifier,SYS1.ResourceDomainORWorkgroup,SYS1.Client from SMS _R_System as sys 1 inner join SMS _R_System as sys 2 on sys 2. NetbiosName = sys 1. NetbiosName where ( sys 1. ResourceId < sys 2. ResourceId ) to find system with null entries Run this query Select R.ResourceID,R.ResourceType,R.Name,R.SMSUniqueIdentifier,R.ResourceDomainORWorkgroup,R.Client from SMS_R_System as r full join SMS_R_System as s1 on s1.ResourceId = r.ResourceId full join SMS_R_System as s2 on s2.Name = s1.Name where s1.Name = s2.Name and s1.ResourceId != s2.ResourceId and R.Client = null to find system with Null Entries in the console having properties with values "blocked=Null,Client Type=Null,Obsolete=Null,Active=Null" moreover their Hardware id Null System UUID is null and SMS unique identifier is null. Resolution: These are not obsolete clients, they are what we call “timing issue records” t

Snapshot

Image

Remote Server Administration Tools for Windows 7 is missing

About Remote Server Administration Tools You can install the Administration Tools pack on computers that are running the Windows 7 operating system, and use the Administration Tools pack to manage specific technologies on computers that are running either Windows Server® 2008 R2, Windows Server 2008, or, in some cases, Windows Server 2003. The Administration Tools pack includes support for remote management of computers that are running the Server Core installation option of either Windows Server 2008 R2 or Windows Server 2008. However, Remote Server Administration Tools for Windows 7 cannot be installed on any versions of the Windows Server operating system. Administration Tools are secure by default. The default Administration Tools configuration opens only those ports and enables only those services and firewall exceptions required for remote management to work. System requirements Remote Server Administration