Skip to main content

Posts

Showing posts from March, 2012

Tip: how can I target applications to specific hardware (just a tip ignore if you know this pls)

Tip: how can I target applications to specific hardware (just a tip ignore if you know this pls) http://www.windows-noob.com/forums/index.php?/topic/563-how-can-i-target-applications-to-specific-hardware/ also you can use below query if you want to create a collection based on hardware: 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 inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_G_System_COMPUTER_SYSTEM.Model in ("Latitude D420","Latitude D630","Latitude D430","Latitude D620") Note: you can change hardware models based on your requirement in the query.

To increase log file size on SMS/SCCM client: ConfigMgr : Verbose and Debug Logging

To increase log file size:   ConfigMgr : Verbose and Debug Logging 64 Bit machine: ============ 1.       In registry, go to HKLM > Software > WOW6432Node > Microsoft > CCM > Logging > @Global 2.       Right click on @Global and click on Permissions. Grant Administrators group with Full control. 3.       Modify the key: “LogLevel” and set the value from 1 to 0 –{This enables Verbose logging} 4.       Now, right click on Logging and create a new key and name it: DebugLogging 5.       Under DebugLogging, create a new string named: "Enabled" ->{Without Quotes}, and set the value to "True" ->{Without Quotes}. –{This enables Debug Logging} 32 Bit machine: =========== 1.       In registry, go to HKLM > Software > Microsoft > CCM > Logging > @Global 2.       Right click on @Global and click on Permissions. Grant Administrators group with Full control. 3.       Modify the key: “LogLevel” and set the value from 1 to 0 –{This enables Ve