├── .github ├── dependabot.yml └── workflows │ ├── new-package.yml │ ├── update-binaries.yml │ └── validate-xml.yml ├── .gitignore ├── .img ├── intune-package.jpeg └── run-workflow.png ├── .rules ├── LowercaseKeyword.psm1 ├── PSScriptAnalyzerSettings.psd1 └── PascalCase.psm1 ├── .vscode └── settings.json ├── LICENSE ├── Microsoft365AppsPackage.psm1 ├── New-Microsoft365AppsPackage.ps1 ├── README.md ├── configs ├── O365Business.xml ├── O365BusinessOutlook-VDI.xml ├── O365BusinessOutlook.xml ├── O365ProPlus-VDI.xml ├── O365ProPlus.xml ├── O365ProPlusOutlook-VDI.xml ├── O365ProPlusOutlook.xml ├── O365ProPlusOutlookVisioProProjectPro-VDI.xml ├── O365ProPlusOutlookVisioProProjectPro.xml ├── O365ProPlusVisioProProjectPro-VDI.xml ├── O365ProPlusVisioProProjectPro.xml └── Uninstall-Microsoft365Apps.xml ├── icons └── Microsoft365.png ├── intunewin └── IntuneWinAppUtil.exe ├── m365 └── setup.exe ├── scripts ├── App.json ├── AppNoPsadt.json ├── Deploy-Application.ps1 └── Invoke-AppDeployToolkit.ps1 ├── scrub ├── OffScrub03.vbs ├── OffScrub07.vbs ├── OffScrub10.vbs ├── OffScrub_O15msi.vbs ├── OffScrub_O16msi.vbs └── OffScrubc2r.vbs └── tests ├── README.md └── Test-Validation.ps1 /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/new-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.github/workflows/new-package.yml -------------------------------------------------------------------------------- /.github/workflows/update-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.github/workflows/update-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/validate-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.github/workflows/validate-xml.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.gitignore -------------------------------------------------------------------------------- /.img/intune-package.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.img/intune-package.jpeg -------------------------------------------------------------------------------- /.img/run-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.img/run-workflow.png -------------------------------------------------------------------------------- /.rules/LowercaseKeyword.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.rules/LowercaseKeyword.psm1 -------------------------------------------------------------------------------- /.rules/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.rules/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /.rules/PascalCase.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.rules/PascalCase.psm1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft365AppsPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/Microsoft365AppsPackage.psm1 -------------------------------------------------------------------------------- /New-Microsoft365AppsPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/New-Microsoft365AppsPackage.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/README.md -------------------------------------------------------------------------------- /configs/O365Business.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365Business.xml -------------------------------------------------------------------------------- /configs/O365BusinessOutlook-VDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365BusinessOutlook-VDI.xml -------------------------------------------------------------------------------- /configs/O365BusinessOutlook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365BusinessOutlook.xml -------------------------------------------------------------------------------- /configs/O365ProPlus-VDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlus-VDI.xml -------------------------------------------------------------------------------- /configs/O365ProPlus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlus.xml -------------------------------------------------------------------------------- /configs/O365ProPlusOutlook-VDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlusOutlook-VDI.xml -------------------------------------------------------------------------------- /configs/O365ProPlusOutlook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlusOutlook.xml -------------------------------------------------------------------------------- /configs/O365ProPlusOutlookVisioProProjectPro-VDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlusOutlookVisioProProjectPro-VDI.xml -------------------------------------------------------------------------------- /configs/O365ProPlusOutlookVisioProProjectPro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlusOutlookVisioProProjectPro.xml -------------------------------------------------------------------------------- /configs/O365ProPlusVisioProProjectPro-VDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlusVisioProProjectPro-VDI.xml -------------------------------------------------------------------------------- /configs/O365ProPlusVisioProProjectPro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/O365ProPlusVisioProProjectPro.xml -------------------------------------------------------------------------------- /configs/Uninstall-Microsoft365Apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/configs/Uninstall-Microsoft365Apps.xml -------------------------------------------------------------------------------- /icons/Microsoft365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/icons/Microsoft365.png -------------------------------------------------------------------------------- /intunewin/IntuneWinAppUtil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/intunewin/IntuneWinAppUtil.exe -------------------------------------------------------------------------------- /m365/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/m365/setup.exe -------------------------------------------------------------------------------- /scripts/App.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scripts/App.json -------------------------------------------------------------------------------- /scripts/AppNoPsadt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scripts/AppNoPsadt.json -------------------------------------------------------------------------------- /scripts/Deploy-Application.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scripts/Deploy-Application.ps1 -------------------------------------------------------------------------------- /scripts/Invoke-AppDeployToolkit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scripts/Invoke-AppDeployToolkit.ps1 -------------------------------------------------------------------------------- /scrub/OffScrub03.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scrub/OffScrub03.vbs -------------------------------------------------------------------------------- /scrub/OffScrub07.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scrub/OffScrub07.vbs -------------------------------------------------------------------------------- /scrub/OffScrub10.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scrub/OffScrub10.vbs -------------------------------------------------------------------------------- /scrub/OffScrub_O15msi.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scrub/OffScrub_O15msi.vbs -------------------------------------------------------------------------------- /scrub/OffScrub_O16msi.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scrub/OffScrub_O16msi.vbs -------------------------------------------------------------------------------- /scrub/OffScrubc2r.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/scrub/OffScrubc2r.vbs -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/Test-Validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronparker/m365apps/HEAD/tests/Test-Validation.ps1 --------------------------------------------------------------------------------