Forum Discussion
Multiple home pages
Hi Richard
This is possible through SyncML. An example below:
<SyncML xmlns="SYNCML:SYNCML1.2">
<SyncBody>
<Replace>
<CmdID>1</CmdID>
<Item>
<Target>
<LocURI>./Vendor/MSFT/Policy/Config/Browser/Homepages</LocURI>
</Target>
<Meta>
<Format xmlns="syncml:metinf">chr</Format>
</Meta>
<Data>"<https://www.website1.com><https://www.website2.com>"</Data>
</Item>
</Replace>
<Final/>
</SyncBody>
</SyncML>
You can see more about it here, and full details of the supported CSP's here.
For Intune, you want to create a custom configuration policy. Set the data type as String, the OMA-URI as ./Vendor/MSFT/Policy/Config/Browser/Homepages, and the value as your webpages wrapped in < and > for each webpage.
Note that we don't currently use Intune so I haven't tested the custom configuration policies yet, and we also only apply 1 homepage so I haven't tested the multiple homepages either!
Let me know if you have problems and I can do some testing for you tomorrow or Thursday.