Zum Hauptinhalt springen
Erweitern Sie Ihre Windows MDM-Profile mit benutzerdefinierten CSP-Richtlinien (Configuration Service Provider) unter Verwendung von Roh-XML. Verwenden Sie dies, wenn die integrierten Steuerelemente von Primo eine bestimmte Windows-Einstellung, die Sie erzwingen müssen, nicht abdecken – z. B. Desktop-Personalisierung, Kioskmodus oder andere Unternehmenskonfigurationen.

Betriebssystemunterstützung

macOSWindowsLinuxiOS / iPadOSAndroid

Auf Windows

Wenn Sie ein XML schreiben, um eine CSP-Richtlinie auf ein Gerät anzuwenden, lassen Sie die ersten paar (und letzten) Zeilen der XML-Datei weg und beginnen (und enden) Sie entweder mit <Replace>@@I18N_SEG_10@@<Add>@@I18N_SEG_11@@</Replace>@@I18N_SEG_12@@</Add>)

Erlauben Sie Personalisierungs-CSP auf Windows Pro

<Replace>
  <!-- Allows Personalization CSPs to be deployed on non-Enterprise versions of Windows.
       Setting this value to true triggers the action to configure a device as education environment.
       Thorough testing is crucial to ensure it does not disrupt workflows or create compatibility issues. -->
  <Item>
    <Meta>
      <Format xmlns="syncml:metinf">bool</Format>
    </Meta>
    <Target>
      <LocURI>./Vendor/MSFT/SharedPC/SetEduPolicies</LocURI>
    </Target>
    <Data>true</Data>
  </Item>
</Replace>

Hintergrundbild und Sperrbildschirm festlegen

Personalisierungs-CSP wird in den Windows Enterprise- und Education-Editionen unterstützt. Es funktioniert in Windows Professional nur, wenn SetEduPolicies im SharedPC CSP festgelegt ist. Siehe „Personalisierungs-CSP auf Windows Pro zulassen“.
<Replace>
  <CmdID>1</CmdID>
  <Item>
    <Target>
      <LocURI>
        ./Vendor/MSFT/Personalization/LockScreenImageUrl
      </LocURI>
    </Target>
    <Meta>
      <Format xmlns="syncml:metinf">chr</Format>
      <Type>text/plain</Type>
    </Meta>
    <Data> … your URL here … </Data>
  </Item>
</Replace>
<Replace>
  <CmdID>2</CmdID>
  <Item>
    <Target>
      <LocURI>
        ./Vendor/MSFT/Personalization/DesktopImageUrl
      </LocURI>
    </Target>
    <Meta>
      <Format xmlns="syncml:metinf">chr</Format>
      <Type>text/plain</Type>
    </Meta>
    <Data> … your URL here … </Data>
  </Item>
</Replace>