<div dir="ltr"><span class="Apple-style-span" style="border-collapse: collapse; ">The script will do what you tell it to. &nbsp;If you tell it to operate in user space, it will.<div><br>I typically use a &quot;for&quot; command when I need to apply the same command to every item in a particular directory, such as /Users. &nbsp;For example:<br>
<br></div><div>for i in $( ls /Users ) ; do defaults write /Users/$i/Library/Preferences/com.manufacturer.product key type value ; done<br><br>Pardon me if my syntax isn&#39;t perfect, I don&#39;t have my script library or a Mac OS X box at hand at the moment, but this is the general idea. &nbsp;You can grep out stuff you don&#39;t want, or use if then else statements to avoid putting your files in places such as /Users/Shared.</div>
</span><br></div>