Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/**/IntuneManagement/**/* diff working-tree-encoding=UTF-16LE-BOM eol=CRLF
/WINDOWS/IntuneManagement/**/* diff working-tree-encoding=UTF-8 eol=CRLF
/**/NativeImport/*.json diff working-tree-encoding=UTF-8 eol=CRLF
20 changes: 20 additions & 0 deletions .github/workflows/validate-oib-manifest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Validate OIB Manifest

on:
pull_request:
paths:
- '**/IntuneManagement/**/*.json'
- '**/PolicyManifest.json'
- 'Scripts/Update-OIBManifest.ps1'

jobs:
validate:
name: Validate OIBIDs and Manifests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate OIB Manifest
shell: pwsh
run: ./Scripts/Update-OIBManifest.ps1 -Mode Validate -Platform All
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,16 @@ That being said, if there's something you feel is missing or should be included,
---

## Importing the Baseline
You have two options when importing the baseline:
There are three options to import the baseline:

### **OIB Deployer**

My own tool, the [OIB Deployer](https://deploy.openintunebaseline.com/), allows for platform-specific, granular deployment of the baseline, as well as being able to check for existing OIB policies in your tenant, and highlight missing or updated policies.

Only requires a single application permission accepting (DeviceManagementConfiguration.ReadWrite.All), and can do a complete import in less than a minute!

### **IntuneManagement**
This is the recommended method, as it allows for an import of the entire baseline.
The OG deployment method, and how I still export the majority of baseline policies.

These files have been exported using the [IntuneManagement](https://github.com/Micke-K/IntuneManagement) tool developed by [Mikael Karlsson](https://twitter.com/Micke_K_72), and can be imported in the same way.
Please consult the IntuneManagement documentation for further information on how to import the baseline or for issues.
Expand All @@ -90,7 +96,7 @@ Each OS will have its own folder, with OS-specific files (readme, changelog, bas
The current OIB versions are:
| OS | Current Release | Change Log | Wiki Page |
|:---:|:---:|:---:|:---:|
| [Windows](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/tree/main/WINDOWS) | [v3.7](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/releases/tag/windows-v3.7) | [Link](/WINDOWS/CHANGELOG.md) | [Link](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/wiki/win-readme) |
| [Windows](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/tree/main/WINDOWS) | [v3.8](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/releases/tag/windows-v3.8) | [Link](/WINDOWS/CHANGELOG.md) | [Link](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/wiki/win-readme) |
| [Windows 365](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/tree/main/WINDOWS365) | [v1.0](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/releases/tag/win365-v1.0) | [Link](/WINDOWS365/CHANGELOG.md) | [Link](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/wiki/win365-readme) |
| [MacOS](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/tree/main/MACOS) | [v1.0](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/releases/tag/macos-v1.0) | [Link](/MACOS/CHANGELOG.md) | [Link](https://github.com/SkipToTheEndpoint/OpenIntuneBaseline/wiki/macos-readme) |

Expand Down
Loading
Loading