├── .gitignore ├── JSS-Importer-Templates ├── PolicyTemplateAutopatch.xml ├── SmartGroupTemplateAutopatch.xml └── readme.md ├── README.md ├── app_quitter.py ├── images ├── Screen Shot 2019-06-19 at 1.54.34 PM.png ├── Screen Shot 2019-06-19 at 1.56.52 PM.png ├── Screen Shot 2019-07-10 at 10.19.03 AM.png ├── Screen Shot 2019-07-10 at 10.19.38 AM.png ├── app_quitter.png ├── autopatch_arch.png ├── policy_overview.png └── readme.md ├── license.txt └── silent_update.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/.gitignore -------------------------------------------------------------------------------- /JSS-Importer-Templates/PolicyTemplateAutopatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/JSS-Importer-Templates/PolicyTemplateAutopatch.xml -------------------------------------------------------------------------------- /JSS-Importer-Templates/SmartGroupTemplateAutopatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/JSS-Importer-Templates/SmartGroupTemplateAutopatch.xml -------------------------------------------------------------------------------- /JSS-Importer-Templates/readme.md: -------------------------------------------------------------------------------- 1 | folder for the JSS Importer templates 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/README.md -------------------------------------------------------------------------------- /app_quitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/app_quitter.py -------------------------------------------------------------------------------- /images/Screen Shot 2019-06-19 at 1.54.34 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/images/Screen Shot 2019-06-19 at 1.54.34 PM.png -------------------------------------------------------------------------------- /images/Screen Shot 2019-06-19 at 1.56.52 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/images/Screen Shot 2019-06-19 at 1.56.52 PM.png -------------------------------------------------------------------------------- /images/Screen Shot 2019-07-10 at 10.19.03 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/images/Screen Shot 2019-07-10 at 10.19.03 AM.png -------------------------------------------------------------------------------- /images/Screen Shot 2019-07-10 at 10.19.38 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/images/Screen Shot 2019-07-10 at 10.19.38 AM.png -------------------------------------------------------------------------------- /images/app_quitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/images/app_quitter.png -------------------------------------------------------------------------------- /images/autopatch_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/images/autopatch_arch.png -------------------------------------------------------------------------------- /images/policy_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/images/policy_overview.png -------------------------------------------------------------------------------- /images/readme.md: -------------------------------------------------------------------------------- 1 | place to host images 2 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/license.txt -------------------------------------------------------------------------------- /silent_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-lark/Auto-Update/HEAD/silent_update.py --------------------------------------------------------------------------------