Benutzer-Werkzeuge

Webseiten-Werkzeuge


windows

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
windows [2025/11/15 13:15]
admin
windows [2026/05/20 12:07] (aktuell)
jango [Updates]
Zeile 3: Zeile 3:
 [[https://www.youtube.com/shorts/G9Nd9mKbMJo|Lokalen Account erstellen]] [[https://www.youtube.com/shorts/G9Nd9mKbMJo|Lokalen Account erstellen]]
  
-<code +<code> 
-DELETE: delete character +DEL: delete character 
-CTRL-Delete: delete word +CTRL-DEL: delete word 
 </code> </code>
  
Zeile 29: Zeile 29:
 - **Windows 11**: Strengere Hardware-Anforderungen, aber Key-Typen gleich. - **Windows 11**: Strengere Hardware-Anforderungen, aber Key-Typen gleich.
  
 +=====Updates=====
 +
 +<code powershell>
 +Get-WindowsUpdate [-MicrosoftUpdate]
 +
 +# Installieren
 +Install-WindowsUpdate -MicrosoftUpdate -AcceptAll [-AutoReboot]
 +Install-WindowsUpdate -KBArticleID KB5086096,KB5086097,KB5007651,KB890830,KB5082417,KB5083769 -AcceptAll
 +Install-WindowsUpdate -Title "PowerShell v7.5.5*" -AcceptAll
 +
 +# Updates ausblenden
 +Hide-WindowsUpdate -Title "*Defender Antivirus*" -Hide:$false -Confirm:$false
 +
 +# Kategorien einbeziehen/ausschliessen
 +Get-WindowsUpdate -Category "Critical Updates"
 +Get-WindowsUpdate -NotCategory "Drivers"
 +Get-WindowsUpdate -Category "Critical Updates" -NotCategory "Drivers" -Download
 +
 +# Reboot Status anzeigen
 +Get-WURebootStatus
 +Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired"
 +</code>
 +
 +Kategorien z.B
 +
 +  * Critical Updates
 +  * Definition Updates
 +  * Drivers
 +  * Feature Packs
 +  * Security Updates
 +  * Updates
 +  * Upgrades
  
 =====WMI===== =====WMI=====
Zeile 386: Zeile 418:
 addKey <menutitle> "command"  addKey <menutitle> "command" 
 addKey <menutitle> <command> value "cmd.exe ." addKey <menutitle> <command> value "cmd.exe ."
 +</code>
 +
 +.reg file
 +<code>
 +Windows Registry Editor Version 5.00
 +
 +[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
 +@="Eingabeaufforderung hier öffnen"
 +
 +[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere\command]
 +@="cmd.exe /k cd /d \".\""
 +</code>
 +
 +delete the .reg file entry
 +
 +<code>
 +[-HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
 </code> </code>
  
windows.1763208959.txt.gz · Zuletzt geändert: 2025/11/15 13:15 von admin