User Tools

Site Tools


windows

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
windows [2015/08/03 09:32] – [Shortcuts] michaelwindows [2021/04/24 07:40] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +===== SSD Laufwerk aufräumen =====
 +
 +cleanmgr
 +pagefile.sys auf 16MB reduzieren
 +
 +===== Activate telnet in Windows 10 =====
 +
 +Start Powershell as Administrator\\
 +{{::powershell_telnet.png?200|}}
 +  Windows PowerShell
 +  Copyright (C) 2015 Microsoft Corporation. Alle Rechte vorbehalten.
 +  PS C:\WINDOWS\system32> dism /online /Enable-Feature /FeatureName:TelnetClient
 +  Tool zur Imageverwaltung für die Bereitstellung
 +  Version: 10.0.10586.0
 +  Abbildversion: 10.0.10586.0
 +  Features werden aktiviert
 +  [==========================100.0%==========================]
 +  Der Vorgang wurde erfolgreich beendet.
 +  PS C:\WINDOWS\system32>
 +
 +
 +===== Backup mit Robocopy =====
 +
 +Batch file für Backup:
 +
 +  @echo off
 +  robocopy "D:\Eigene Dateien" "\\BACKUPSERVER\home" /COPY:DAT /E /Z /XD "Bilder" /LOG+:"C:\Users\Ich\backups   \%date:~6,4%-%date:~3,2%-%date:~0,2%_%time:~0,2%%time:~3,2%%time:~6,2%_eigenedateien.log"
 +
 +/COPY: DAT = Data, Attribute, Timestamp \\
 +/E = include subdirs even if empty \\
 +/Z =  copy files in restart mode -> no need to transfer whole file if there was a connection error. \\
 +/XD = exclude directories with "Bilder" in Name \\
 +/LOG+ = append to logfile if already exists \\
 +
 +List of all features: [[https://technet.microsoft.com/de-de/library/cc733145%28v=ws.10%29.aspx]]
 +
 ===== Windows 10 ====== ===== Windows 10 ======
  
windows.1438594346.txt.gz · Last modified: 2021/04/24 07:38 (external edit)