Add a SCCM deployment with Powershell

Here is a powershell command for creating a SCCM deployment   Start-CMApplicationDeployment -CollectionName “Collection Name” -Name “Softwarename” -DeployAction Install -DeployPurpose Available -UserNotification DisplayAll -AvaliableDate (Get-Date) … Read more

Add Dock Items in Casper

Originally I added an application to the dock, and it didn’t work. So I changed the location a few times, it still didn’t work.  – … Read more

How to Get Current User as Assigned User in Casper

here is an excellent article to do that: https://macmule.com/2014/05/04/submit-user-information-from-ad-into-the-jss-at-login-v2/   here is the script : #!/bin/sh #################################################################################################### # # More information: http://macmule.com/2014/05/04/submit-user-information-from-ad-into-the-jss-at-login-v2/ # # GitRepo: … Read more

Mac Office 2011 Casper Package

Here is the steps I got from JAMF Nation: https://jamfnation.jamfsoftware.com/discussion.html?id=13946   I use Composer only because the resulting PKG installs faster, then creating a single … Read more

Time Update (includes Timezone) on Mac

Here is a very useful script for auto timezone update ( will enable location service) and time update from JAMF Nation: https://jamfnation.jamfsoftware.com/discussion.html?id=13723 #!/bin/sh #Use “/usr/sbin/systemsetup … Read more