Do you remember the Powershell script posted by SCOMFAQ to download required MMS 2012 Sessions last year Once again he come up with easy way to download all the required MMS 2013 sessions using Powershell script. This basically contains 2 power shell scripts : Create-MMS2013SessionFile.ps1 –> This file creates the sessions.txt file OR You can create sessions.txe and add all the Sessions codes for Ex:DC-B309.wmv and save the file. MMS2013_Downloader.ps1 –> This file downloads the sessions which you have given in sessions.txt file. Download the scripts from Sky drive,save it in one folder.I have listed out all SCCM Configmgr 2012…
Author: Eswar Koneti
Configuration Manager Queries SQL Server views in the Configmgr site database when retrieving the information displayed in reports .Configmgr database contains large information about computer,User related resource and other components as well. If you are looking for some particular information while creating reports and if you are not sure which table the information has,you will stuck there else you will have guess the table/view to get what is desired. SQL views contain the information you need for your reports to make reporting easier. I cont find any document or related resources for SCCM 2012 SQL views . Russ from Microsoft…
MMS 2013 is getting nearer , (Apr 4-Apr 8) with loads of technical sessions on newly released products with hands on lab. More info here From Apr 4-8,total of 300+ sessions happening on various technologies . Many folks who works on Configuration manager like me, look for what content catalog. Here is the pdf file listing out all SCCM 2012 related stuff which might help you to follow up . download MMS 2013 SCCM 2012 SP1 Content Catalog These configuration manager Sessions will generally be available for streaming around 24 hours after the session is complete. http://channel9.msdn.com/Events/MMS/2013?sort=sequential&direction=desc&term=Configuration%20Manager How to participate in…
If you are planning to migrate your SCCM 2007 environment to SCCM 2012,you may have to think about your packages,collections,OSD and other stuff. you cannot migrate all collections from SCCM 2007 to SCCM 2012.Couple of things to note before you migrate them. Points to note on collection migration: 1. Collection can contain only either devices or users but not both. 2. Every collection must have Limitation. 3. Sub collections are no longer exists instead you have folders. blogged couple of posts on archiving/removing packages not been used for X days that will help you to not migrate them to…
How to add link URL or shortcut file to users desktop profile ? Easiest way to accomplish this task is with GPO(Group policy Object). If you want to accomplish this task using Configuration manager(SCCM),you can create simple VB script that does this job. Option Explicit dim path path=CreateObject("WScript.Shell").ExpandEnvironmentStrings("%UserProfile%\desktop") dim objFSO set objFSO=CreateObject("Scripting.FileSystemObject") If objFSO.FileExists(path & ("\eskonr.url")) = False Then objFSO.CopyFile "\\servername\folder name\eskonr.url", path & "\" end if Full Details http://social.technet.microsoft.com/Forums/en-US/configmgrswdist/thread/ba1647a1-0385-48a9-9e83-1fc5daa00976/#e9d4f330-500e-45db-b3e1-5e3954f50ea4
This is Continuation to previous post package archival process.up on the query results,I would not delete the packages from console directly rather i delete them from its assigned Distribution points and move them to Archive folder and let be there for sometime until for sometime incase if it is required. If you have large number of packages,you may find difficult in moving the packages by identifying where they reside (if you have subfolders).If you have less packages <10,you may use the report to know the root path of the package and then right click on the package Move to archive…
Long ago ,written SCCM report to list packages not used for 6 months as part of Package Archival process http://eskonr.com/2012/11/sccm-configmgr-package-archival-process-cleanup-activity/ .This report tells you to take further action to clean or move to Archive folder to wait for some more months before it goes for Deletion. What next ? Delete these packages from Assigned DPs to get some disk space ? You may find several scripts to do this task on the internet but, i find this is easy for me to get this activity done. Identify list of package which you want to remove ,pipe them to notepad .You…
Old post but useful to share from J.C.HornBeck .We all know there are some hidden files(they are kind of secret files) which are available since Since Many years( I would think from SMS 2003 or may be from 2.0) in order to activate or deactivate some features in SMS/SCCM 2007 /SCCM 2012 (now) on client side or server side, such as preventing Software Inventory for a particular folder or preventing the installation of ConfigMgr files on a machine. Here’s some information on some of those files and how you might use them to control your Configuration Manager environment. The files…