Benutzer-Werkzeuge

Webseiten-Werkzeuge


windows

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Nächste ÜberarbeitungBeide Seiten der Revision
windows [2017/12/08 09:51] matthiaswindows [2021/11/07 14:38] – [Deaktivierung von Ziehen Sie einen noch größeren Nutzen aus Windows 10] matthias
Zeile 56: Zeile 56:
 Unter Computerkonfiguration / Administrative Vorlagen / System / Anmelden Unter Computerkonfiguration / Administrative Vorlagen / System / Anmelden
 "Einstiegspunkte für die schnelle Benutzerumschaltung ausblenden" aktivieren "Einstiegspunkte für die schnelle Benutzerumschaltung ausblenden" aktivieren
 +
 +===== Updateprobleme =====
 +
 +  DISM /online /cleanup-image /startcomponentcleanup
 +  DISM /Online /Cleanup-image /Scanhealth
 +  DISM /online /cleanup-Image /restorehealth
 +  DISM /online /cleanup-image /restorehealth /Source:C:\RepairSource\Windows /LimitAccess
 +  
 +  sfc /scannow
 +
 +[[http://www.majorgeeks.com/files/details/sfcfix.html|SFCfix Tool]]
 +
 +[[https://aka.ms/wudiag|Windows Update Diagnostic Windows 10]]
 +
 +[[https://aka.ms/diag_wu|Windows Update Diagnostic Windows 8 / 7]]
 +
 +Quellen: [[http://www.thewindowsclub.com/windows-8-1-update-fails-to-install|1]] [[https://msdn.microsoft.com/de-de/library/hh825265.aspx|2]] [[https://support.microsoft.com/de-de/help/947821/fix-windows-update-errors-by-using-the-dism-or-system-update-readiness|3]]
 +
 +===== WinSxS aufräumen =====
 +
 +  Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
 +  Dism.exe /online /Cleanup-Image /SPSuperseded
 +
 +https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/clean-up-the-winsxs-folder
 +
 +===== Bloateware löschen und Privacy optimieren =====
 +
 +    iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/debloat'))
 +
 +https://github.com/Sycnex/Windows10Debloater
 +
 +https://www.ntlite.com/
 +
 +https://www.oo-software.com/de/shutup10
 +
 +
 +  Get-AppxPackage *photo* | Remove-AppxPackage
 +
 +https://community.spiceworks.com/scripts/show/4378-windows-10-decrapifier-18xx-19xx-2xxx
 +
 +  set-executionpolicy unrestricted
 +  set-executionpolicy restricted
 +
 +===== SSH installieren =====
 +
 +<code>
 +Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
 +Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
 +Start-Service sshd
 +Set-Service -Name sshd -StartupType 'Automatic'
 +</code>
 +
 +===== Window-Update via Powershell =====
 +
 +Work In Progress !
 +
 +  [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
 +  Install-Module -Name PSWindowsUpdate
 +
 +Auf Nachfrage mit "A" antworten!
 +
 +Verfügbare Updates aneigen:
 +
 +  Get-WindowsUpdate
 +
 +  Get-WindowsUpdate -Download -KBArticleID KB2267602 -AcceptAll
 +
 +  Get-WindowsUpdate -Install -KBArticleID KB2267602 -AcceptAll -IgnoreReboot
  
  
windows.txt · Zuletzt geändert: 2024/06/07 08:40 von matthias