Also verify that your application is signed with the entitlements embedded.$ codesign -dvvv --entitlements :- netsq_endpoint_agent
...
Authority=Apple Worldwide Developer Relations Certification Authority
Authority=Apple Root CA
Signed Time=Dec 29, 2019 at 9:35:56 AM
Info.plist=not bound
...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.developer.endpoint-security.client</key>
<true/>
<key>com.apple.security.get-task-allow</key>
<true/>
<key>com.apple.security.temporary-exception.mach-register.global-name</key>
<array>
<string>com.netsq.netsq_endpoint_agent</string>
</array>
</dict>
</plist>(Oops. It is good to do this anyways. I see an unnecessary entitlement I need to remove)
Post
Replies
Boosts
Views
Activity
Do you have System Integrity Protection (SIP) turned off?I had to turn this off for my endpoint development. Now I am waiting for an entitlement from Apple, so I can turn SIP back on and test my code on other people's computer.Todd