├── .github └── FUNDING.yml ├── Binaries └── Ready to use Agent │ ├── PolicyApplicator.exe │ ├── PolicyApplicator.msi │ └── Readme.md ├── Code ├── CodeIntegrity │ └── HGO-CodeSigning.cer ├── Convert-JSonToOMACSVTemplate.ps1 ├── Convert-ListToOMACSVTemplate.ps1 ├── Convert-XmlToOMACSVTemplate.ps1 ├── Convert-iniToOMACSVTemplate.ps1 ├── Convert-simpleRegToOMACSVTemplate.ps1 ├── GUI │ ├── 1-Welcome.xaml │ ├── 2. File.xaml │ └── 3. Output.xaml ├── IntuneGraph │ └── Intune Graph Powershell Library goes here.txt ├── Invoke-CSVToIntuneUpload.ps1 ├── Modules │ ├── ADMX.psm1 │ ├── ComplianceReport.ps1 │ ├── Configuration.psm1 │ ├── Generic.psm1 │ ├── IniFile.psm1 │ ├── JSONFile.psm1 │ ├── ListFile.psm1 │ └── XMLFile.psm1 ├── PolicyApplicator.exe ├── PolicyApplicator.exe.cat ├── PolicyApplicator.exe.config ├── PolicyApplicator.exe.wrunconfig ├── PolicyApplicator.ps1 ├── PolicyApplicator_x64.exe ├── PolicyApplicator_x64.exe.cat ├── PolicyApplicator_x64.exe.config ├── PolicyApplicator_x64.exe.wrunconfig ├── Tasks │ ├── PolicyApplicator - SYSTEM.xml │ └── PolicyApplicator - Usercontext.xml └── wcommsixwrap.exe.config ├── Documentation ├── Img │ ├── Step1 - Create Store App.png │ ├── Step2 - Search the App.png │ ├── Step3 - Edit Details.png │ ├── Tutorial Visual Studio Code │ │ ├── 1 - Go go settings.png │ │ ├── 1 - VS Code.png │ │ ├── 10. Go to apps.png │ │ ├── 11. Add Apps.png │ │ ├── 12. create lob.png │ │ ├── 12.5 right app.png │ │ ├── 13. select app.png │ │ ├── 14. Appdata.png │ │ ├── 15 - assign app.png │ │ ├── 16 - app installed.png │ │ ├── 17 policy applied.png │ │ ├── 18 file is there.png │ │ ├── 19 working.png │ │ ├── 2 - Disable Settings.png │ │ ├── 3 - settings.png │ │ ├── 4 - Content.png │ │ ├── 5 - Download Zip.png │ │ ├── 6 Convert.png │ │ ├── 7. New Policy.png │ │ ├── 7. Upload.png │ │ ├── 8. Click Assignment.png │ │ └── 9. Assignment.png │ ├── step1 createapp.png │ ├── step2 Browse.png │ ├── step3 PickFile.png │ └── step4 FillinEverything.png ├── Readme.md └── howitworks.png └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Binaries/Ready to use Agent/PolicyApplicator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Binaries/Ready to use Agent/PolicyApplicator.exe -------------------------------------------------------------------------------- /Binaries/Ready to use Agent/PolicyApplicator.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Binaries/Ready to use Agent/PolicyApplicator.msi -------------------------------------------------------------------------------- /Binaries/Ready to use Agent/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Binaries/Ready to use Agent/Readme.md -------------------------------------------------------------------------------- /Code/CodeIntegrity/HGO-CodeSigning.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/CodeIntegrity/HGO-CodeSigning.cer -------------------------------------------------------------------------------- /Code/Convert-JSonToOMACSVTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Convert-JSonToOMACSVTemplate.ps1 -------------------------------------------------------------------------------- /Code/Convert-ListToOMACSVTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Convert-ListToOMACSVTemplate.ps1 -------------------------------------------------------------------------------- /Code/Convert-XmlToOMACSVTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Convert-XmlToOMACSVTemplate.ps1 -------------------------------------------------------------------------------- /Code/Convert-iniToOMACSVTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Convert-iniToOMACSVTemplate.ps1 -------------------------------------------------------------------------------- /Code/Convert-simpleRegToOMACSVTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Convert-simpleRegToOMACSVTemplate.ps1 -------------------------------------------------------------------------------- /Code/GUI/1-Welcome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/GUI/1-Welcome.xaml -------------------------------------------------------------------------------- /Code/GUI/2. File.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/GUI/2. File.xaml -------------------------------------------------------------------------------- /Code/GUI/3. Output.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/GUI/3. Output.xaml -------------------------------------------------------------------------------- /Code/IntuneGraph/Intune Graph Powershell Library goes here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/Invoke-CSVToIntuneUpload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Invoke-CSVToIntuneUpload.ps1 -------------------------------------------------------------------------------- /Code/Modules/ADMX.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/ADMX.psm1 -------------------------------------------------------------------------------- /Code/Modules/ComplianceReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/ComplianceReport.ps1 -------------------------------------------------------------------------------- /Code/Modules/Configuration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/Configuration.psm1 -------------------------------------------------------------------------------- /Code/Modules/Generic.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/Generic.psm1 -------------------------------------------------------------------------------- /Code/Modules/IniFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/IniFile.psm1 -------------------------------------------------------------------------------- /Code/Modules/JSONFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/JSONFile.psm1 -------------------------------------------------------------------------------- /Code/Modules/ListFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/ListFile.psm1 -------------------------------------------------------------------------------- /Code/Modules/XMLFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Modules/XMLFile.psm1 -------------------------------------------------------------------------------- /Code/PolicyApplicator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator.exe -------------------------------------------------------------------------------- /Code/PolicyApplicator.exe.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator.exe.cat -------------------------------------------------------------------------------- /Code/PolicyApplicator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator.exe.config -------------------------------------------------------------------------------- /Code/PolicyApplicator.exe.wrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator.exe.wrunconfig -------------------------------------------------------------------------------- /Code/PolicyApplicator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator.ps1 -------------------------------------------------------------------------------- /Code/PolicyApplicator_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator_x64.exe -------------------------------------------------------------------------------- /Code/PolicyApplicator_x64.exe.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator_x64.exe.cat -------------------------------------------------------------------------------- /Code/PolicyApplicator_x64.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator_x64.exe.config -------------------------------------------------------------------------------- /Code/PolicyApplicator_x64.exe.wrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/PolicyApplicator_x64.exe.wrunconfig -------------------------------------------------------------------------------- /Code/Tasks/PolicyApplicator - SYSTEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Tasks/PolicyApplicator - SYSTEM.xml -------------------------------------------------------------------------------- /Code/Tasks/PolicyApplicator - Usercontext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/Tasks/PolicyApplicator - Usercontext.xml -------------------------------------------------------------------------------- /Code/wcommsixwrap.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Code/wcommsixwrap.exe.config -------------------------------------------------------------------------------- /Documentation/Img/Step1 - Create Store App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Step1 - Create Store App.png -------------------------------------------------------------------------------- /Documentation/Img/Step2 - Search the App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Step2 - Search the App.png -------------------------------------------------------------------------------- /Documentation/Img/Step3 - Edit Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Step3 - Edit Details.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/1 - Go go settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/1 - Go go settings.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/1 - VS Code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/1 - VS Code.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/10. Go to apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/10. Go to apps.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/11. Add Apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/11. Add Apps.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/12. create lob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/12. create lob.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/12.5 right app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/12.5 right app.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/13. select app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/13. select app.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/14. Appdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/14. Appdata.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/15 - assign app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/15 - assign app.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/16 - app installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/16 - app installed.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/17 policy applied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/17 policy applied.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/18 file is there.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/18 file is there.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/19 working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/19 working.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/2 - Disable Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/2 - Disable Settings.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/3 - settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/3 - settings.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/4 - Content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/4 - Content.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/5 - Download Zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/5 - Download Zip.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/6 Convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/6 Convert.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/7. New Policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/7. New Policy.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/7. Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/7. Upload.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/8. Click Assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/8. Click Assignment.png -------------------------------------------------------------------------------- /Documentation/Img/Tutorial Visual Studio Code/9. Assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/Tutorial Visual Studio Code/9. Assignment.png -------------------------------------------------------------------------------- /Documentation/Img/step1 createapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/step1 createapp.png -------------------------------------------------------------------------------- /Documentation/Img/step2 Browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/step2 Browse.png -------------------------------------------------------------------------------- /Documentation/Img/step3 PickFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/step3 PickFile.png -------------------------------------------------------------------------------- /Documentation/Img/step4 FillinEverything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Img/step4 FillinEverything.png -------------------------------------------------------------------------------- /Documentation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/Readme.md -------------------------------------------------------------------------------- /Documentation/howitworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/Documentation/howitworks.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/PolicyApplicator-for-Microsoft-Intune/HEAD/README.md --------------------------------------------------------------------------------