Zuletzt geändert von Tom Altenbrunn am 2023/01/27 09:15

Von Version 3.1
bearbeitet von Jonas Mayer
am 2022/03/23 11:21
Änderungskommentar: Es gibt keinen Kommentar für diese Version
Auf Version 1.1
bearbeitet von Michael Ecer
am 2021/08/29 11:57
Änderungskommentar: Es gibt keinen Kommentar für diese Version

Zusammenfassung

Details

Seiteneigenschaften
Übergeordnete Seite
... ... @@ -1,1 +1,1 @@
1 -Main.LD Deploy.Allgemein.WebHome
1 +Main.LDDeploy.WebHome
Dokument-Autor
... ... @@ -1,1 +1,1 @@
1 -XWiki.jonasmayer@sbede
1 +XWiki.michaelecer@sbede
Inhalt
... ... @@ -1,27 +1,47 @@
1 -(% style="color:#000000" %)**__Wichtiger Hinweis:__** Die nachfolgenden Kommandos müssen in der PowerShell als (% style="color:#e74c3c" %)**SYSTEM-User**(% style="color:#000000" %) ausgeführt werden.
1 +(% style="color:#000000" %)Hier die Kommandos, um den Shared-PC Modus nachträglich zu deaktivieren.
2 2  
3 +
4 +(% style="color:#000000" %)Hinweis: Muss in der PowerShell als SYSTEM-User ausgeführt werden
5 +
3 3  (% style="color:#000000" %)1. Cmd als Administrator öffnen
4 4  
5 5  (% style="color:#000000" %)2. psexec -i -s powershell.exe
6 6  
7 7  
11 +
12 +(% style="color:#000000" %)# Disable
13 +
8 8  (% class="box" %)
9 9  (((
10 -(% style="color:#16a085" %)### Disable Shared PC Mode##
11 -
12 12  (% style="color:#000000" %)##$sharedPC = Get-CimInstance -Namespace "root\cimv2\mdm\dmmap" -ClassName "MDM_SharedPC"##
17 +)))
13 13  
19 +(% class="box" %)
20 +(((
14 14  (% style="color:#000000" %)##$sharedPC.EnableSharedPCMode = $False##
22 +)))
15 15  
24 +(% class="box" %)
25 +(((
16 16  (% style="color:#000000" %)##$sharedPC.SetEduPolicies = $False##
27 +)))
17 17  
29 +(% class="box" %)
30 +(((
18 18  (% style="color:#000000" %)##$sharedPC.EnableAccountManager = $False##
32 +)))
19 19  
34 +(% class="box" %)
35 +(((
20 20  (% style="color:#000000" %)##$sharedPC.AccountModel = 2##
37 +)))
21 21  
39 +(% class="box" %)
40 +(((
22 22  (% style="color:#000000" %)##$sharedPC.DeletionPolicy = ""##
42 +)))
23 23  
44 +(% class="box" %)
45 +(((
24 24  (% style="color:#000000" %)##Set-CimInstance -CimInstance $sharedPC##
25 25  )))
26 -
27 -