SCCM Tutorial 52- How to Create Configuration Items and Baselines in MECM
This video is about to explain How to Create Configuration Items and Baselines in SCCM.
PowerShell Script used in videos.
=============================
$Diskspace = get-wmiobject -class “win32_logicaldisk“ -Namespace “root\CIMV2“
$Output = foreach($Disk in $Diskspace)
{
if ($ -gt 0)
{
$Size = [math]::round($, 0)
$Free = [math]::round($, 0)
[PSCustomObject]@{
Drive = $
Name = $
“Total Disk Space“ = $Size
“Free Disk Size“ = “{0:N0} ({1:P0})“ -f $free, ($free/$size)
}
}
}
$Output
1 view
144
37
4 months ago 01:04:18 1
Deploy the Configuration Manager Client Agent to Windows Computers in SCCM
1 year ago 01:00:10 1
SCCM Training For Beginners | Understanding Configuration Item And Compliance Baseline In SCCM
1 year ago 00:15:57 1
SCCM Tutorial 52- How to Create Configuration Items and Baselines in MECM