SMS/SCCM, Beyond Application Deployment is a blog by Matthew Hudson covering SMS 2003, SCCM 2007, 2012 and beyond package deployment. Here you will find hints, tips, and tricks to help with managing your infrastructure. It will focus mainly on Reg files, Batch, VbScript, WMI, and possibly other methods.
Tuesday, October 28, 2008
MMS 2008 Hands on DVD
-----------------
Dear MMS 2008 Attendee,
We are pleased to inform you that additional collateral has been created and is being sent to you. The MMS 2008 Hands-on Lab Walkthrough DVD contains video recordings of the most popular Hands-on Lab topics offered during the event with an audio commentary, allowing you to review the labs with a step-by-step commentary explaining the key procedures covered. In addition, the DVD contains soft copies of the Hands-on Lab manuals used at the event.
This e-mail serves as confirmation that your MMS 2008 Hands-on Lab Walkthrough DVD set has been shipped and you should be receiving it within 1-2 weeks (International locations may take longer). The DVD set has been sent via the U.S. Postal Service to the address included with your registration information.
If you do not receive your DVD set within the specified time, please e-mail MMS2008HOL@paragongroup.com for further assistance.
Thanks again for your participation in MMS 2008!
Saturday, October 25, 2008
Add computer to a collection
1. Allows the user to right click on a collection and add multiple computers
2. Allow the user to right click on a computer in a collection or query and add it to multiple collections
The output list is limited to 50 currently but you can change it per your enviroment. Also I am pulling System Resource from "All computers" collection. I am sure this could be modified to add groups and OUs and such.
Here is the link to look at the code and download the program
http://www.sccm-tools.com/tools/rightclick/rightclick-Collectionaddcomputers.html
I have some ideas to improve it so I might be posting those changes here.
Sunday, October 19, 2008
ODBC Report
You will find it here http://www.sccm-tools.com/tools/other/other-ODBCMOF.html on my sccm tools website.
Report Right click tool
The Tool is designed to allow the admin to run any of the reports. All that is needed is the reporting point server name, the report ID and the values that need to be passed.
report.vbs
Example:
Report.vbs sms-serve1 170 MachineName ##Sub:name##
Currently I have it set for the individual computer and collection GUIDS. This can be added and set to run for almost any one of the guids. Instead of trying to post all the code here I will give you a link to my sccm tools website and you can download the code from there.
http://www.sccm-tools.com/tools/rightclick/rightclick-webreports.html
Right click tool order
Well they run in alphabetical order. So if you want to add a seperator above and below you tools then you need to make them as say 1.xml and zz.xml
Create the XML line to ready.
Wednesday, October 8, 2008
Exclusions based on a Group or OU
Computer 1 Group A
Computer 2 Group B
Computer 3 Group A+B
Computer 4 Group A+B
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.Name not in (select distinct SMS_G_System_COMPUTER_SYSTEM.Name from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_R_System.SystemOUName = "Group B" ) and SMS_R_System.SystemOUName = "Group A"
Cross link on my blog to other exclusions
http://sms-hints-tricks.blogspot.com/2007/10/excluding-computers-from-collection.html
Monday, October 6, 2008
Helping others with SCCM Errors
I recieved an email today from one of the IT admins that had tested SCCM 2007 and was now moving to the actual installation phase. On his Windows 2008 Site server box he attempted to install SCCM 2007 SP1 on a Domain computer only to have an error (Domain Membership)... his computer "needed to be part of a domain."
So I started with some general questions and it struck me that possibly the firewall was on between the systems and it couldn't determine the domain it was on. After having him reconfigure his firewall on the SQL box and the Site server it was able to install. Now we are working to move him into Native mode. Since I was the first to move to SCCM I had already work with the Enterprise group to configure the Certificates for Native and Out of Band Mangement point. I think right now there are about 4 or 5 SCCM servers and 2 SMS servers left over at TAMU. It has been my goal for the last couple of years to get the community of SMS/SCCM IT people together so everyone can learn about it and see how to implement it. I even had them watch my MMS 2008 presentation before I left to give me pointers. In the next 1 or 2 years the campus will modify its AD structure pulling all the domains in to a single domain with departmental OUs and that means a change of how we utilize SCCM. I would hope by that time we can all work together on the single SCCM structure and bring all the computers together. Talk about a challange. Thank you for allowing me to assist you with SMS/SCCM. For every problem we work on, I learn something and I hope they learn something as well.