Skip to content

Commit 966d55f

Browse files
committed
Update UpdateAndSysprep.ps1
1 parent cbb1061 commit 966d55f

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

UpdateAndSysprep.ps1

+3-17
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,9 @@ else
1717
Remove-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" -Name AutoLogonCount
1818
if($InstallCloudbaseInit)
1919
{
20-
$Host.UI.RawUI.WindowTitle = "Downloading Cloudbase-Init..."
21-
Invoke-WebRequest -Uri http://www.cloudbase.it/downloads/CloudbaseInitSetup_Beta.msi -OutFile C:\Windows\Temp\CloudbaseInitSetup_Beta.msi
22-
23-
$Host.UI.RawUI.WindowTitle = "Installing Cloudbase-Init..."
24-
net start msiserver
25-
26-
do
27-
{
28-
$p = Start-Process -Wait -PassThru -FilePath msiexec -ArgumentList "/i C:\Windows\Temp\CloudbaseInitSetup.msi /qn /l*v C:\Windows\Temp\CloudbaseInitSetup_Beta.log"
29-
if ($p.ExitCode -ne 0)
30-
{
31-
Write-Host "Cloudbase-Init setup failed. Retrying after a short break."
32-
Start-Sleep -s 30
33-
}
34-
}
35-
while($p.ExitCode -ne 0)
36-
20+
Invoke-WebRequest -Uri https://dl.dropboxusercontent.com/u/9060190/InstallCloudbaseInit.ps1 -OutFile C:\Windows\Temp\InstallCloudbaseInit.ps1
21+
C:\Windows\Temp\InstallCloudbaseInit.ps1
22+
3723
#$Host.UI.RawUI.WindowTitle = "Running Sysprep..."
3824
#C:\Windows\System32\Sysprep\Sysprep.exe /generalize /oobe /shutdown /unattend:"C:\Program\ Files\ (x86)\Cloudbase\ Solutions\Cloudbase-Init\conf\Unattend.xml"
3925
}

0 commit comments

Comments
 (0)