OSD Task Sequence : Formatted the drive, dropped the image on the PC

Issue:  When trying to perform an OSD Task Sequence using SCCM 2007, the deployment fails, usually after it has successfully formatted the drive, dropped the image on the PC, and scanned for drivers. Looking at the SMSTS.log, the following error is logged: Task sequence cannot continue after reboot because TS Manager is not configured to … Read more

How to handle NEGATIVE PEOPLE

Here, I’ll share with you 9 tips to deal with negative people in your life: 1) Don’t get into an argumentOne of the most important things I learned is not to debate with a negative person. A negative person likely has very staunch views and isn’t going to change them because of what you say. … Read more

Systems Part of What Collections

–Systems Part of What Collections SELECT v_R_System.Name0, v_Collection.Name FROM v_FullCollectionMembership INNER JOIN v_R_System ON v_FullCollectionMembership.ResourceID = v_R_System.ResourceID INNER JOIN v_Collection ON v_FullCollectionMembership.CollectionID = v_Collection.CollectionID WHERE (v_R_System.Name0 = ‘Systemname’)

For finding the 90 days old computers in the AD

    For finding the 90 days old computers in the AD DSQUERY COMPUTER “DC=MydomainName,DC=COM” -STALEPWD 90 -LIMIT 5000 >> C:output.csv for finding the 90 days old computers in the AD & action to delete with the output DSQUERY COMPUTER “OU=COMPUTERS,DC=LANDESK,DC=COM” -STALEPWD 90 -LIMIT 5000 | DSRM -NOPROMPT >C:Output.csv

Good Posting for Multicasting for OSD : End to End

you can find here https://tinyurl.com/289ho4y Multicasting is a new feature of R2 in SCCM and is a welcome addition to the OSD feature.  Multicast allows for image deployment with a much reduced network load.  If, for example, you are deploying a 500 MB image to 20 workstations that have just arrived from the OEM then … Read more