yonasty
Goto Top

Microsoft Edge aufräumen

Ich möchte mit einem Batch alle Daten, das heisst Verlauf, Cookies, Zwischengespeicherte Daten, Downloadverlauf, Formulardaten und Kennwörter löschen.

Hab schon einiges probiert, doch ich habe nicht einmal einen funktionierenden Lösungsansatz gefunden. Wäre froh für jede Hilfe


Gruss und Danke

Content-Key: 303623

Url: https://administrator.de/contentid/303623

Printed on: April 19, 2024 at 09:04 o'clock

Mitglied: 127944
127944 May 04, 2016 at 06:29:50 (UTC)
Goto Top
Moin,

hast du schon einmal versucht das Verzeichnis zu löschen?

C:\Users\Benutzer\AppData\Local\Microsoft\Windows\INetCache>

Vor dem Testen bitte sichern
Mitglied: 129148
129148 May 04, 2016 at 16:45:34 (UTC)
Goto Top
Powershell ginge z.B.:
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName Microsoft.VisualBasic
Start-Process "microsoft-edge:about:blank"  
sleep 2
[Microsoft.VisualBasic.Interaction]::AppActivate("Microsoft Edge")  
[System.Windows.Forms.SendKeys]::SendWait('^+{DEL}')  
[System.Windows.Forms.SendKeys]::SendWait('{TAB 9}{ENTER}')