diff --git a/lock-device.sh b/lock-device.sh new file mode 100644 index 0000000..5371f38 --- /dev/null +++ b/lock-device.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +jssUser=$4 +jssPass=$5 +jssHost=$6 +passcode=$7 + +id=$(jamf recon | grep '' | xmllint --xpath xmllint --xpath '/computer_id/text()' -) +/usr/bin/curl -su "${jssUser}:${jssPass}" "https://${jssHost}/JSSResource/computercommands/command/DeviceLock/passcode/${passcode}/id/${id}" -H "Content-Type: application/xml" -X POST