diff options
-rw-r--r-- | README.md | 8 | ||||
-rwxr-xr-x | maucl.py (renamed from mowgli.py) | 0 | ||||
-rwxr-xr-x | tests.py | 6 |
3 files changed, 7 insertions, 7 deletions
@@ -1,6 +1,6 @@ ### Introduction -mowgli (from MAUCLI (Microsoft AutoUpdate Command Line Interface)) is a command-line tool for installing Office 2016 updates. +maucl (Microsoft AutoUpdate Command Line) is a command-line tool for installing Office 2016 updates. ### System Requirements @@ -12,15 +12,15 @@ mowgli (from MAUCLI (Microsoft AutoUpdate Command Line Interface)) is a command- To list all available updates: -```mowgli.py -l``` +```maucl.py -l``` To update all installed Office applications, just issue: -```sudo mowgli.py -ia``` +```sudo maucl.py -ia``` You can also supply an optional path to the home folder: -```sudo mowgli.py -ia /Users/shared``` +```sudo maucl.py -ia /Users/shared``` Special thanks to [Charles](https://www.charlesproxy.com) - the excellent web debugging proxy for making the reverse-engineering possible! @@ -4,12 +4,12 @@ import unittest import subprocess -import mowgli +import maucl class DefaultTestCase(unittest.TestCase): def test_disable_au(self): - mowgli.set_pref() + maucl.set_pref() o = subprocess.check_output(['defaults', 'read', 'com.microsoft.autoupdate2', @@ -17,7 +17,7 @@ class DefaultTestCase(unittest.TestCase): self.assertEquals(o.strip(), 'Manual') def test_enable_au(self): - mowgli.set_pref(v='Automatic') + maucl.set_pref(v='Automatic') o = subprocess.check_output(['defaults', 'read', 'com.microsoft.autoupdate2', |