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
windows [2018/01/12 07:27] – [Updateprobleme] matthiaswindows [2023/03/04 13:27] (aktuell) matthias
Zeile 73: Zeile 73:
  
 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]] 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
 +
 +===== Defender Definitionem reseten =====
 +
 +  cd "C:\Program Files\Windows Defender"
 +  .\MpCmdRun.exe -RemoveDefinitions -All
 +  .\MpCmdRun.exe -SignatureUpdate
 +
 +===== PC in Intune registrieren =====
 +
 +powershell
 +
 +  Set-Execution-Policy bypass
 +  install-script get-windowsautopilotinfo
 +  get-windowsautopilotinfo.ps1 -online
 +
 +  @ - . , # + \ / ~ % $ & " ' ' ` 
windows.1515742071.txt.gz · Zuletzt geändert: 2018/01/12 07:27 von matthias