-
-
Jamf After Dark Podcast Episode 3, An Interview With Jamf CEO Dean Hager
-
Jamf After Dark Episode 2: Experiencing User Experience
-
The Pilot of the Jamf After Dark Podcast
-
Bryson Tyrrell from Jamf on the MacAdmins Podcast
-
Node Plugin To Embed Device Details From Jamf Pro Into Jira Service Desk
Been working on a new plugin to embed device details from Jamf Pro into Jira Service Desk. It looks a little like this: To access the plugin, see the links below. https://github.com/krypted/Jira-Device-Lookups-in-Jamf
-
Query Tomcat Logs On Windows Servers
Tomcat logs events into the system log. You can use the get-wmiobject commandlet to see events. Here, we’ll look at a JSS and view only system events: Get-WmiObject Win32_NTLogEvent -ComputerName $jss -Filter "LogFile='system' We can then use AND to further constrain to specific messages, in this case those containing Tomcat: Get-WmiObject Win32_NTLogEvent -ComputerName $jss -Filter "LogFile='system' AND (Message like '%Tomcat%') We can then further constrain output to those with a specific EventCode with another compound statement: Get-WmiObject Win32_NTLogEvent -ComputerName $jss -Filter "LogFile='system' AND (Message like '%Tomcat%') AND (EventCode=1024) For a comprehensive list of Windows event codes, see https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/default.aspx. You could instead use get-eventlog to see system logs. For example, the…
-
Episode 42 of the MacAdmins Podcast, with Nick McSpadden of Facebook
-
Using mdmclient on macOS
I mentioned mdmclient when I gave the talk on the inner workings of Mobile Device Management, or MDM. There, I spent a lot of time on APNs and profiles, but just kinda’ spoke about mdmclient in terms of it being the agent that runs on macOS to provide mdm parity for the Mac. The mdmclient binary is located at /usr/libexec/mdmclient and provides pretty limited access to see how the Mac reacts to and interprets information coming from a device management provider. I had been meaning to do a write-up on mdmclient and document what it can do since it first shipped. But as luck would have it, @Mosen on the…
-
Episode 13.5 of the MacAdmins Podcast: Live from JNUC!