ich arbeite an einem Verwaltungs-/Kontrollprogramm
ich habe zwei Fragen:
1. Ich habe folgendes batch Script:
Code: Alles auswählen
chcp 1252 >nul
for /f "tokens=1,* delims=:" %%a in ('netsh wlan show profiles ^| findstr Profil') do call :showprofile "%%b"
goto :eof
:showprofile
set "name=%~1"
set "name=%name:~1%"
for /f "tokens=1,* delims=: " %%c in ('netsh wlan show profile name^="%name%" key^=clear ^| findstr /i "inhalt"') do echo '%name%': %%d
2.
Ich möchte den Desktop für Backup zwecke als zip archiv speichern. (Auch per python script)
Danke im vorraus und einen schönen Abend.