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

Von Version 4.1
bearbeitet von Jonas Mayer
am 2022/05/02 19:40
Änderungskommentar: Es gibt keinen Kommentar für diese Version
Auf Version 2.5
bearbeitet von Michael Ecer
am 2022/03/08 09:19
Änderungskommentar: Update document after refactoring.

Zusammenfassung

Details

Seiteneigenschaften
Dokument-Autor
... ... @@ -1,1 +1,1 @@
1 -XWiki.jonasmayer@sbede
1 +XWiki.michaelecer@sbede
Inhalt
... ... @@ -1,29 +1,44 @@
1 -(% style="color:#000000" %)**__Wichtiger Hinweis:__** Die nachfolgenden Kommandosssen in der PowerShell als (% style="color:#e74c3c" %)**SYSTEM-User**(% style="color:#000000" %) ausgeführt werden.
1 +(% style="color:#000000" %)Hinweis: Muss in der PowerShell als SYSTEM-User ausgeführt werden
2 2  
3 3  (% style="color:#000000" %)1. Cmd als Administrator öffnen
4 4  
5 -(% style="color:#000000" %)2. Befehl {{code}}psexec -i -s powershell.exe{{/code}} ausführen, um interaktive Powershell-Konsole mit höchsten Privilegien zu starten.
5 +(% style="color:#000000" %)2. psexec -i -s powershell.exe
6 6  
7 7  
8 -(% style="color:#000000" %)Nun die nachfolgenden Befehle absenden:
9 9  
9 +(% style="color:#000000" %)# Disable
10 +
10 10  (% class="box" %)
11 11  (((
12 -(% style="color:#16a085" %)### Disable Shared PC Mode##
13 -
14 14  (% style="color:#000000" %)##$sharedPC = Get-CimInstance -Namespace "root\cimv2\mdm\dmmap" -ClassName "MDM_SharedPC"##
14 +)))
15 15  
16 +(% class="box" %)
17 +(((
16 16  (% style="color:#000000" %)##$sharedPC.EnableSharedPCMode = $False##
19 +)))
17 17  
21 +(% class="box" %)
22 +(((
18 18  (% style="color:#000000" %)##$sharedPC.SetEduPolicies = $False##
24 +)))
19 19  
26 +(% class="box" %)
27 +(((
20 20  (% style="color:#000000" %)##$sharedPC.EnableAccountManager = $False##
29 +)))
21 21  
31 +(% class="box" %)
32 +(((
22 22  (% style="color:#000000" %)##$sharedPC.AccountModel = 2##
34 +)))
23 23  
36 +(% class="box" %)
37 +(((
24 24  (% style="color:#000000" %)##$sharedPC.DeletionPolicy = ""##
39 +)))
25 25  
41 +(% class="box" %)
42 +(((
26 26  (% style="color:#000000" %)##Set-CimInstance -CimInstance $sharedPC##
27 27  )))
28 -
29 -