Skip to main content

Posts

Showing posts with the label SMS

SCCM DCM Symantec Backup Exec.Cloud

The intention this article is to provide an overview of DCM within SCCM and more importantly for some, the ability to create a baseline for Symantec Backup Exec.Cloud and generate a KPI. The DCM node within SCCM is made up of two parts Configuration Baselines and Configuration Items.  Right click on Configuration Items > New > Application configuration Item Identification: Provide a name and categor Detection Method: Select Use custom script (VBScript) Option Explicit                 If(IsNWMInstalled()) Then                 WScript.Echo("SymantexCloudBackup")                 End If                 Function IsNWMInstalled()          ...

SCCM DCM Symantec Backup Exec.Cloud

The intention this article is to provide an overview of DCM within SCCM and more importantly for some, the ability to create a baseline for Symantec Backup Exec.Cloud and generate a KPI. The DCM node within SCCM is made up of two parts Configuration Baselines and Configuration Items.  Right click on Configuration Items > New > Application configuration Item Identification: Provide a name and categor Detection Method: Select Use custom script (VBScript) Option Explicit                 If(IsNWMInstalled()) Then                 WScript.Echo("SymantexCloudBackup")                 End If                 Function IsNWMInstalled()       ...

SMS SCCM WDS MDT Windows 7

Tips- How to package software Switches -r Causes Setup.exe automatically to generate a silent setup file (.iss file), which is a record of the setup input, in the Windows folder.   Packages cmd files must have drive letter more info at  http://www.appdeploy.com/ tick "suppress program notifications" to stop systray bubble/add and remove programs Useful silent (un)install code: msiexec /I "xxxx.msi" transforms="xxxx.mst" /qn /norestart (/qn shows no interface, /qb shows basic progress bar) msiexec /x "xxxx.msi" /qn /norestart C:\WINDOWS\IsUninst.exe -fC:\xxx\xxx.isu -a (-a is for silent) IMAGEx Enter “ imagex /info img_file “, where “img_file” represents the location of the  WIM  file. You should see now the description of the  WIM file  as an XML file. The name of the tag for the  image number  is  IMAGE INDEX . Create a new folder where the image shall be mounted. This is the image path. Now, you can  mount the image : imagex /mount img_fi...

SMS SCCM WDS MDT Windows 7

Tips- How to package software Switches -r Causes Setup.exe automatically to generate a silent setup file (.iss file), which is a record of the setup input, in the Windows folder.   Packages cmd files must have drive letter more info at  http://www.appdeploy.com/ tick "suppress program notifications" to stop systray bubble/add and remove programs Useful silent (un)install code: msiexec /I "xxxx.msi" transforms="xxxx.mst" /qn /norestart (/qn shows no interface, /qb shows basic progress bar) msiexec /x "xxxx.msi" /qn /norestart C:\WINDOWS\IsUninst.exe -fC:\xxx\xxx.isu -a (-a is for silent) IMAGEx Enter “ imagex /info img_file “, where “img_file” represents the location of the  WIM  file. You should see now the description of the  WIM file  as an XML file. The name of the tag for the  image number  is  IMAGE INDEX . Create a new folder where the image shall be mounted. This is the image path. Now, you can  mount the image : imagex /mount img_fi...