Dressurausbildung Daniel Köck

Dresssurausbildung Koeck

Windows Server 2022

Stern inaktivStern inaktivStern inaktivStern inaktivStern inaktiv

Nach der Installation von KB5034129 unter Windows Server 2022  starten Edge, Chrome und Firefox nur noch mit weißem Bildschirm.

Derzeitiger Workaround:

In unseren Tests haben wir festgestellt, dass das Problem durch Entfernen des Registrierungsschlüssels "chrome.exe" unter

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options behoben wird.

Oder Sie können PowerShell öffnen und den folgenden Befehl ausführen, um die .exe zu löschen:

reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\chrome.exe" /f

Sie können Chrome.exe auch in  chrome_test.exe umbenennen, und Chrome funktioniert wieder.

Diese Schritte erfordern keinen Neustart und funktionieren in den meisten Fällen.

Als weitere Alternative bleibt die Deinstallation der KB5034129.

 

Stern inaktivStern inaktivStern inaktivStern inaktivStern inaktiv

Microsoft.UI.Xaml.2.7 ist ein Framework, das Microsoft-UI-Steuerelemente und -Features für Windows-UWP-Apps bereitstellt. Dieses Paket wird von anderen Store-Apps benötigt, um ordnungsgemäß zu funktionieren. Für die folgenden Store-Apps ist z. B. Microsoft.UI.Xaml.2.7 erforderlich.

  • Microsoft.WindowsStore
  • Microsoft.StorePurchaseApp
  • Microsoft.DesktopAppInstaller
  • Microsoft.WindowsCommunicationsApps

Wenn Microsoft.UI. aml.2.7 fehlt, wird der Microsoft Store nicht gestartet.

 

Um das Problem zu beheben, laden Sie das Appx-Paket Microsoft.UI.Xaml.2.7 herunter, und installieren Sie es. Es gibt viele Methoden, um das appx-Paket herunterzuladen.

Option 1: Download über nuget.org

  1. Öffnen Sie den folgenden Link → https://www.nuget.org/packages/Microsoft.UI.Xaml/2.7.3
  2. Klicken Sie im rechten Bereich auf "Paket herunterladen". Dadurch wird die Datei "microsoft.ui.xaml.2.7.3.nupkg" heruntergeladen.
  3. Umbenennen in microsoft.ui.xaml.2.7.3.zip
  4. Extrahieren Sie den Inhalt des Archivs in einen Ordner, z. B. D:\microsoft.ui.xaml.2.7.3.
  5. Öffnen Sie PowerShell als Administrator, und geben Sie die folgenden Befehle ein:
    Add-AppxPackage -Path "d:\microsoft.ui.xaml.2.7.3\tools\AppX\x64\Release\Microsoft.UI.Xaml.2.7.appx"
    Add-AppxPackage -Path "d:\microsoft.ui.xaml.2.7.3\tools\AppX\x86\Release\Microsoft.UI.Xaml.2.7.appx"
  6. Um zu überprüfen, ob die Pakete ordnungsgemäß installiert sind, geben Sie Folgendes in admin PowerShell ein:
    get-appxpackage Microsoft.UI.Xaml.2.7 -allusers

Option 2: Herunterladen mit WinGet

Öffnen Sie die Admin-Eingabeaufforderung und führen Sie Folgendes aus:

winget install 9P5VK8KZB5QZ

Dadurch sollte das Microsoft.UI.Xaml.2.7-Framework installiert werden. 9P5VK8KZB5QZ ist die SKU-ID für Microsoft.UI.Xaml.2.7.

 

Option 3: Download von Microsoft über rg-adguard.net

Sie können das Appx-Paket Microsoft.UI.Xaml.2.7 über https://store.rg-adguard.net/  herunterladen.

 

  1. Besuchen Sie https://store.rg-adguard.net/
  2. Wählen Sie "Produkt-ID" aus der Dropdown-Liste aus.
  3. Geben Sie 9P5VK8KZB5QZ   das Textfeld ein.
  4. Wählen Sie Retail aus der Dropdown-Liste aus.
  5. Klicken Sie auf die Schaltfläche mit einem Häkchen. Dadurch werden die Download-Links für x86 und x64 generiert.
  6. Laden Sie beide Pakete (x86 und x64) herunter, indem Sie mit der rechten Maustaste auf den .appx-Link klicken und in Ihrem Browser "Link speichern unter" auswählen.
  7. Öffnen Sie PowerShell als Administrator, und geben Sie die folgende Befehlszeilensyntax ein:
    Add-AppxPackage -Path "c:\Microsoft.UI.Xaml.2.7_7.2208.15002.0_x86__8wekyb3d8bbwe.appx"
    Add-AppxPackage -Path "c:\Microsoft.UI.Xaml.2.7_7.2208.15002.0_x64__8wekyb3d8bbwe.appx"

Bewertung: 5 / 5

Stern aktivStern aktivStern aktivStern aktivStern aktiv

WSUS Fehler Server22

Wenn Sie versuchen, WSUS auf einem Server mithilfe der internen Windows-Datenbank (Windows Internal Database, WID) zu installieren, wird dieser Fehler wahrscheinlich NICHT angezeigt. Dies liegt daran, dass die WID auch unter Windows Server 2022 eine ältere spezielle eingebettete Version von SQL Server ist. Wir können dies mit dem TSQL-Befehl sehen. SELECT @@version

  • WID-Version auf Server 2012 – Microsoft SQL Server 2012 – 11.0.2100.60 (x64)
  • WID-Version auf Server 2012R2 – Microsoft SQL Server 2012 – 11.0.2100.60 (x64)
  • WID-Version auf Server 2016 – Microsoft SQL Server 2014 – 12.0.2000.8 (x64)
  • WID-Version auf Server 2019 – Microsoft SQL Server 2014 (SP2-GDR) (KB4057120) – 12.0.5214.6 (x64)
  • WID-Version auf Server 2022 – Microsoft SQL Server 2014 (SP2-GDR) (KB4057120) – 12.0.5214.6 (x64)

WSUS lässt sich bei Verwendung der WID einwandfrei installieren.

Wenn Sie jedoch versuchen, WSUS auf einem SQL Server zu installieren, wird möglicherweise die im obigen Bild zu sehende Fehlermeldung  angezeigt.

So beheben Sie dieses Problem:

Öffnen einer PowerShell im erhöhten Modus mithilfe von "Als Administrator ausführen"

Führen Sie den folgenden Code aus, um 1 Codezeile in der Datei VersionCheck.sql zu ändern:

Start-Process takeown.exe -ArgumentList '/f "C:\Program Files\Update Services\Database\VersionCheck.sql"' -Wait
Start-Process icacls.exe -ArgumentList '"C:\Program Files\Update Services\Database\VersionCheck.sql" /grant "administrator:(F)"' -Wait
(Get-Content "C:\Program Files\Update Services\Database\VersionCheck.sql") -replace "(^DECLARE @scriptMinorVersion\s+ int = \(11\)$)","DECLARE @scriptMinorVersion int = (51)" | Set-Content "C:\Program Files\Update Services\Database\VersionCheck.sql"

Hier finden Sie die Zeile

DECLARE @scriptMinorVersion     int = (11)

und ersetzen Sie es durch

DECLARE @scriptMinorVersion     int = (51)

weitere Lösungsmöglichkeit:

  • Entfernen Sie die WSUS-Rolle und das Windows Internal Database (WID)-Feature.
  • Entfernen Sie E:\WSUS oder wo auch immer sich der WSUS Content-Ordner befindet.
  • Entfernen Sie C:\Windows\WID (insbesondere: Löschen Sie SUSDB.mdf und SUSDB_log.ldf in C:\Windows\WID\Data). Wenn Sie die WID-Rolle und ihre Dateien bei einer Neuinstallation nicht entfernen, wird sie erneut an dieselbe Datenbank angefügt.
  • Entfernen Sie in IIS die Website "WSUS-Administration" und den Anwendungspool "WsusPool", falls sie noch vorhanden sind.
  • Starten Sie den Server neu, und fügen Sie die WSUS- und WID-Rollen erneut hinzu. Lassen Sie es installieren, und starten Sie den Server dann erneut neu.
  • Versuchen Sie nun, die Konfiguration nach der Installation durchzuführen.

Nachdem Sie WSUS gemäß den obigen Anweisungen vollständig entfernt haben, können Sie die Rolle bei Bedarf erneut installieren.

 

Postinstall mit Powershell ausführen:

 # Create directory for WSUS storage
$wsusContentPath = 'E:\wsus'
#New-Item -Path $wsusContentPath -ItemType Directory
# Populate Sql server/instance details
$sqlInstance = 'sqlexpress' # Leave blank if default instance MSSQLSERVER
$sqlServerName = $ENV:COMPUTERNAME
$sqlInstanceName = "$sqlServerName\$sqlInstance"
$sqlInstanceName = $sqlInstanceName.TrimEnd('\')
# Configure WSUS to use the WID in your specified location
New-Alias -Name WsusUtil -Value 'C:\Program Files\Update Services\Tools\WsusUtil.exe'
WsusUtil postinstall SQL_INSTANCE_NAME=$sqlInstanceName CONTENT_DIR=$wsusContentPath

 

 

 

Quelle: ajteck.ca

Stern inaktivStern inaktivStern inaktivStern inaktivStern inaktiv

Take action: OOB update to address an issue with sign in and Kerberos authentication

Updated November 18, 2022: Added update information for Windows Server 2008 R2 SP1.
Microsoft is releasing Out-of-band (OOB) updates today, November 17, 2022 and November 18, 2022 for installation on all the Domain Controllers (DCs) in affected environments. This update addresses a known issue which might cause sign in failures or other Kerberos authentication issues. You do not need to install any update or make any changes to other servers or client devices in your environment to resolve this issue. If you used any workaround or mitigations for this issue, they are no longer needed, and we recommend you remove them.
To get the standalone package for these out-of-band updates, search for the KB number in the Microsoft Update Catalog. You can manually import these updates into Windows Server Update Services (WSUS) and Microsoft Endpoint Configuration Manager. For WSUS instructions, see WSUS and the Catalog Site. For Configuration Manger instructions, see Import updates from the Microsoft Update CatalogNote The below updates are not available from Windows Update and will not install automatically.
Cumulative updates:
Note: You do not need to apply any previous update before installing these cumulative updates. If you have already installed updates released November 8, 2022, you do not need to uninstall the affected updates before installing any later updates including the updates listed above.
Standalone Updates:
Note: If you are using security only updates for these versions of Windows Server, you only need to install these standalone updates for the month of November 2022. Security only updates are not cumulative, and you will also need to install all previous Security only updates to be fully up to date. Monthly rollup updates are cumulative and include security and all quality updates. If you are using Monthly rollup updates, you will need to install both the standalone updates listed above to resolve this issue, and install the Monthly rollups released November 8, 2022 to receive the quality updates for November 2022. If you have already installed updates released November 8, 2022, you do not need to uninstall the affected updates before installing any later updates including the updates listed above.
Stern inaktivStern inaktivStern inaktivStern inaktivStern inaktiv

Windows Server 2022 20348 Eval

Die ISO kann über techbench oder der Microsoft-Seite heruntergeladen werden. (Insider-Account  ist Voraussetzung).

Server Standard: MFY9F-XBN2F-TYFMP-CCV49-RMYVH

Datacenter: 2KNJJ-33Y9H-2GXGX-KMQWH-G6H67

Direkter Download

 

 

Windows Server LTSC/LTSB versions

Windows Server 2022

WINDOWS SERVER 2022
Operating system editionKMS Client Setup Key
Windows Server 2022 Datacenter WX4NM-KYWYW-QJJR4-XV3QB-6VM33
Windows Server 2022 Standard VDYBN-27WPP-V4HQT-9VMD4-VMK7H

Copyright © winxperts4all.com. All Rights Reserved.