如何创建Mac脚本以在夜间自动更新


0

我正在管理一组Mac,我需要它们在每晚2 AM自动更新。我应该使用哪种终端命令(或其他方式)来实现此目的?谢谢!

Answers:


0

如果您正在谈论OS X系统更新,则该命令为softwareupdate并且必须以root用户身份运行。这是CLI选项。

$ softwareupdate -h
usage: softwareupdate <mode> [<args> ...]

** Catalog Management:
    --set-catalog <URL> Set the new catalog URL (requires privileges)
    --clear-catalog     Clear the catalog URL back to defaults (requires privileges)

** Manage Updates:
    -l | --list     List all appropriate update labels
    -d | --download     Download Only
    -i | --install      Install
        <label> ... specific updates
        -a | --all      All appropriate updates
        -r | --recommended  Only recommended updates

    --ignore <label> ...    Ignore specific updates
    --reset-ignored     Clear all ignored updates
    --schedule (on | off)   Set automatic checking

-v | --verbose  Enable verbose output
-h | --help Print this help

因此,假设您要安装任何/所有可用更新,则可以使用

sudo softwareupdate -ia

然后,您可以使用所选的系统管理工具来部署启动代理,使其在2AM运行。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.