Wednesday, October 9, 2024
To check patch deployment status in TANIUM
Get Computer Name and Operating System and Patch - Deployment Statuses matches "^1234\|.*$" from all machines with Patch - Deployment Statuses matches "^1234\|.*$"
Note: here 1234 is deployment ID , so you need to switch it based on your ID
To download CAB file
http://download.windowsupdate.com/microsoftupdate/v6/wsusscan/wsusscn2.cab
https://content.tanium.com/files/hosted_dats/MS-CVEs.dat
https://content.tanium.com/files/windows-patch/wsusscn2.json
Wednesday, September 27, 2023
Wednesday, May 10, 2023
To download microsoft cab file
http://download.windowsupdate.com/microsoftupdate/v6/wsusscan/wsusscn2.cab
https://go.microsoft.com/fwlink/?LinkID=74689
if you are using Tanium
https://content.tanium.com/files/hosted_dats/MS-CVEs.dat
https://content.tanium.com/files/windows-patch/wsusscn2.json
Thursday, April 15, 2021
How do you transition All SCCM capabilities to some other tool?
How do you transition All SCCM capabilities to some other tool?
Will provide my answers soon HI
Tuesday, December 13, 2016
To get physical hostname
SELECT dbo.v_GS_OPERATING_SYSTEM.Caption0, dbo.v_GS_VIRTUAL_MACHINE_64.PhysicalHostName0, dbo.v_R_System.Name0
FROM dbo.v_R_System INNER JOIN
dbo.v_GS_OPERATING_SYSTEM ON dbo.v_R_System.ResourceID = dbo.v_GS_OPERATING_SYSTEM.ResourceID INNER JOIN
dbo.v_GS_VIRTUAL_MACHINE_64 ON dbo.v_GS_OPERATING_SYSTEM.ResourceID = dbo.v_GS_VIRTUAL_MACHINE_64.ResourceID
where v_r_system.name0 in (
FROM dbo.v_R_System INNER JOIN
dbo.v_GS_OPERATING_SYSTEM ON dbo.v_R_System.ResourceID = dbo.v_GS_OPERATING_SYSTEM.ResourceID INNER JOIN
dbo.v_GS_VIRTUAL_MACHINE_64 ON dbo.v_GS_OPERATING_SYSTEM.ResourceID = dbo.v_GS_VIRTUAL_MACHINE_64.ResourceID
where v_r_system.name0 in (
Monday, November 16, 2015
DP Content checking
--DP content status:
use sms
SELECT v_PackageStatusDistPointsSumm.PackageID,
v_Package.Name, v_PackageStatusDistPointsSumm.InstallStatus, v_PackageStatusDistPointsSumm.SiteCode, v_PackageStatusDistPointsSumm.ServerNALPath,
v_PackageStatusDistPointsSumm.SourceVersion, v_PackageStatusDistPointsSumm.State, v_PackageStatusDistPointsSumm.LastCopied,
v_PackageStatusDistPointsSumm.SourceNALPath, v_PackageStatusDistPointsSumm.SummaryDate
FROM v_PackageStatusDistPointsSumm INNER JOIN
v_Package ON v_PackageStatusDistPointsSumm.PackageID = v_Package.PackageID
WHERE (v_PackageStatusDistPointsSumm.ServerNALPath LIKE '%XXX%')---and InstallStatus <> 'Package Installation complete'
--WHERE (v_PackageStatusDistPointsSumm.ServerNALPath LIKE '%.stores.target.com%')and InstallStatus <> 'Package Installation complete'
--and Name like '%neil%'1
--order by name, v_PackageStatusDistPointsSumm.InstallStatus
and InstallStatus != 'Package Installation complete'
Note: in XXX put your DP name
use sms
SELECT v_PackageStatusDistPointsSumm.PackageID,
v_Package.Name, v_PackageStatusDistPointsSumm.InstallStatus, v_PackageStatusDistPointsSumm.SiteCode, v_PackageStatusDistPointsSumm.ServerNALPath,
v_PackageStatusDistPointsSumm.SourceVersion, v_PackageStatusDistPointsSumm.State, v_PackageStatusDistPointsSumm.LastCopied,
v_PackageStatusDistPointsSumm.SourceNALPath, v_PackageStatusDistPointsSumm.SummaryDate
FROM v_PackageStatusDistPointsSumm INNER JOIN
v_Package ON v_PackageStatusDistPointsSumm.PackageID = v_Package.PackageID
WHERE (v_PackageStatusDistPointsSumm.ServerNALPath LIKE '%XXX%')---and InstallStatus <> 'Package Installation complete'
--WHERE (v_PackageStatusDistPointsSumm.ServerNALPath LIKE '%.stores.target.com%')and InstallStatus <> 'Package Installation complete'
--and Name like '%neil%'1
--order by name, v_PackageStatusDistPointsSumm.InstallStatus
and InstallStatus != 'Package Installation complete'
Note: in XXX put your DP name
Subscribe to:
Posts (Atom)
SCCM to Tanium
SCCM transition Options: of course intune otherwise Deployment, Patching - Tanium Image - Tazier Inventory - Tanium Remote Control - Zoom ...
-
When a package is distributed to a PullDP, DistMgr creates a PkgXferMgr job and added to the queue. - PkgXferMgr processes the job and cre...
-
How to fix the SMS client GUID issue 1.If the client status unknown in the SMS console after installing the SMS client (make sure that ...
-
--DP content status: use sms SELECT v_PackageStatusDistPointsSumm.PackageID, v_Package.Name, v_PackageStatusDi...