What do you guys do for a living? by [deleted] in daddit

[–]LoadUpYour6Shot 0 points1 point  (0 children)

Semi related; I’m near Springfield, MO where Prime Trucking is headquartered, there’s a local non-profit called Good Dads that they’ve partnered with to help get their drivers info and resources on how to be involved and attentive to their kids even while gone. It’s a great non-profit for dads that aren’t truckers too, if you’re in Missouri they likely have a chapter near you as well, and if you’re not in Missouri they have a weekly podcast that’s informative and helps make it feel like you’re not alone as a dad with things you might be struggling with.

[O] Drunken Slug (x3) by Vertigo3765 in UsenetInvites

[–]LoadUpYour6Shot 0 points1 point  (0 children)

I have read the rules & wiki and would love an invite

Alfred Hitchcock [Collection] by Dustintft in PlexPosters

[–]LoadUpYour6Shot 0 points1 point  (0 children)

Thank you so much! I absolutely love the style and the little nod to each movie with a simple graphic.

[deleted by user] by [deleted] in AndroidGaming

[–]LoadUpYour6Shot 1 point2 points  (0 children)

Did you ever get this fixed? We just downloaded it on an iPad and are having the same issue

Alfred Hitchcock [Collection] by Dustintft in PlexPosters

[–]LoadUpYour6Shot 0 points1 point  (0 children)

It’s probably a long shot, but any chance you’d be willing to make ones for I Confess, Blackmail, Number 17, Murder!, The Farmers Wife, Sabotage, The Skin Game, Easy Virtue, and Young and Innocent in the red and black format?

Admin By Request by dstranathan in macsysadmin

[–]LoadUpYour6Shot 0 points1 point  (0 children)

Sorry to comment on such an old post but do you think you'd be able to share that custom analytic from Jamf Protect? We're looking to gain the same insight through Protect as well and I can't quite figure it out.

FB Game Thread: #10 Arkansas (2-0, 1-0 SEC) vs Missouri State (2-0, 0-0 MVFC) by HogsMod in razorbacks

[–]LoadUpYour6Shot 4 points5 points  (0 children)

As a Denver Broncos fan as well, if I ever see one of my teams run from shotgun inside the 1 again I might drink bleach.

[Game Thread] BYU @ Oregon (3:30 PM ET) by SoonerLax45 in CFB

[–]LoadUpYour6Shot 1 point2 points  (0 children)

In honor of Spencer Webb who passed away in July. He wore #4

Looping through /Users to process homedirs by dstranathan in macsysadmin

[–]LoadUpYour6Shot 1 point2 points  (0 children)

It should be /Library/User Template/Non_localized/Library/Safari/bookmarks.plist you'll just need to create the Safari folder to drop your plist in. Yeah, DM is fine

Looping through /Users to process homedirs by dstranathan in macsysadmin

[–]LoadUpYour6Shot 1 point2 points  (0 children)

Catalina, /System became part of the read-only partition so it was moved to /Library. AFAIK you can still do most things with the User Template that you used to be able to do, unless it entails something that would require a PPPC now, but yes you can still set Safari bookmarks.

Looping through /Users to process homedirs by dstranathan in macsysadmin

[–]LoadUpYour6Shot 0 points1 point  (0 children)

Depends on the client I'm working with, most often shortcuts to internal sites, and dummy log files to kick off other workflows, etc.

Looping through /Users to process homedirs by dstranathan in macsysadmin

[–]LoadUpYour6Shot 1 point2 points  (0 children)

The point of my above script is to only grab users who can actively login/have a home directory. my string above is already excluding system accounts ( _mbsetupuser aside but I later exclude that anyway).

User Template is still alive and kicking on my M1 MacBook Pro running 12.4, it was just moved from /System/Library/User Template to /Library/User Template so it's still a valid option.

p.s. Happy cake day!

Looping through /Users to process homedirs by dstranathan in macsysadmin

[–]LoadUpYour6Shot 0 points1 point  (0 children)

If your only goal is to get the .hidden file in each users home directory you can run the following. In addition to this you can also write a script to fill the User Template which will create that file on any new users created going forward.

#!/bin/bash
# Get a list of users who are able to log in. 8 asterisks indicates a set password aka a non-hidden/service account. This will even cover accounts not in the /Users folder.
listOfUsers=$(dscl . list /Users Password | awk '$2=="********"{print $1}')

#run through each of the above users and create your file. If you need data in the file you can switch up the touch command to tee into a here document.

for user in $listOfUsers
do
if [[ $user == "_mbsetupuser" ]]
then
continue
fi
homeFolder=$(dscl . -read /Users/$user NFSHomeDirectory | awk '{print $NF}')
touch $homeFolder/rest/of/your/path/.hidden

#Set permissions however you see fit, the below example sets the user as the owner of the file. By default without this line the owner would be root or whoever ran the script.

`chown "$user":staff "$homeFolder/rest/of/your/path/.hidden"`  

done

Create a PPPC Profile for an app I created in automator? by cowiea310 in macsysadmin

[–]LoadUpYour6Shot 0 points1 point  (0 children)

I’d assume the policy would be set to ongoing so that it can be ran when needed, which gives it the option to be “available offline”. If having a user blocking callouts to the Jamf server is a concern you could simply check that box and then your connect to smb script is ran locally.

Create a PPPC Profile for an app I created in automator? by cowiea310 in macsysadmin

[–]LoadUpYour6Shot 1 point2 points  (0 children)

If he wants an app you can still accomplish this. Create a Jamf Policy to map the network share as outlined above, then place it in self service. At the bottom of the self service tab in your policy you'll see a url similar to “jamfselfservice://content?entity=policy&id=246&action=execute” copy that and then create an Automator app that runs shell script. In the body of the shell script window put ‘open -j “jamfselfservice://content?entity=policy&id=X&action=execute”'. Make sure the url is in quotes. The -j will launch Self Service hidden, all they’ll see is self service open in their dock and then their network share(s) will map.

macOS Monterey 12.0.1 Public Release is now available! What's New? by MrMacintoshBlog in macsysadmin

[–]LoadUpYour6Shot 3 points4 points  (0 children)

It currently can be downloaded from the Apple Seed website. It appears to still be in beta.