patrick-it
Goto Top

Registry Keys im MDT Setup setzen

Hallo zusammen

Seit einer Weile versuche ich für ein Windows 10 Setup diverse Registry Keys zu setzen, leider schlägt die Installation mit dem Fehlercode 0x00000001 fehl.

Folgendes Powershell Script:
$Path = "HKLM:\SYSTEM\test"  
New-Item $Path -Force
$DateTime = Get-Date -Format "dd/MM/yyyy HH:mm"  

$tsenv = New-Object -COMObject Microsoft.SMS.TSEnvironment
$type = $tsenv.Value("'testComputerType")  

New-ItemProperty -Path $Path -Name "DateStaged" -Value $DateTime -PropertyType String -Force  
New-ItemProperty -Path $Path -Name "Build" -Value "1.0" -PropertyType String -Force  
New-ItemProperty -Path $Path -Name "Computer Type" -Value $type -PropertyType String -Force  

Die Variable testComputerType habe ich im UDI Wizard konfiguriert und sie wird je nachdem was ein Typ PC es ist dementsprechend gesetzt.

Die Position des Scripts in der Task Sequenz ist folgende:
positionmdt

Ich hoffe jemand kann mir sagen, wo sich der Fehler befindet.

Vielen Dank und beste Grüsse
Patrick

Content-ID: 491039

Url: https://administrator.de/forum/registry-keys-im-mdt-setup-setzen-491039.html

Ausgedruckt am: 23.12.2024 um 19:12 Uhr

mayho33
Lösung mayho33 02.09.2019 um 16:06:21 Uhr
Goto Top
Nur so eine Idee:

Hast du wirklich alle PS-Scripts signed?? Andernfalls würde ich die PS- Execution Policy auf Bypass setzen und den Parameter auf Powershell.exe -ExecutionPolicy Bypass ergänzen.
Patrick-IT
Patrick-IT 02.09.2019 um 17:37:04 Uhr
Goto Top
Total vergessen, danke für den Hinweis, habe es jetzt hier gesetzt und es hat funktionert:
bypass

Hab überhaupt nicht daran gedacht, vielen dank für die schnelle Antwort!
mayho33
mayho33 06.09.2019 um 17:40:52 Uhr
Goto Top
👍