TimeCreated LevelDisplayName Id ProviderName Message
----------- ---------------- -- ------------ -------
04.08.2020 13:03:42 Warning 10016 Microsoft-Windows-DistributedCOM The Anwendungsspezifisch permission settings do...
04.08.2020 13:03:20 Error 1 MTConfig An attempt to configure the input mode of a mul...
04.08.2020 13:03:19 Error 1 MTConfig An attempt to configure the input mode of a mul...
04.08.2020 12:58:18 Error 1 MTConfig An attempt to configure the input mode of a mul...
04.08.2020 11:53:38 Error 10010 Microsoft-Windows-DistributedCOM The server Microsoft.SkypeApp_15.61.100.0_x86__...
04.08.2020 11:23:48 Error 10010 Microsoft-Windows-DistributedCOM The server microsoft.windowscommunicationsapps_...
04.08.2020 11:23:41 Error 10010 Microsoft-Windows-DistributedCOM The server Microsoft.SkypeApp_15.61.100.0_x86__...
04.08.2020 11:23:37 Warning 701 Win32k Power Manager has not requested suppression of ...
04.08.2020 11:23:37 Warning 701 Win32k Power Manager has not requested suppression of ...
04.08.2020 11:23:37 Error 10317 Microsoft-Windows-NDIS Miniport Microsoft Wi-Fi Direct Virtual Adapter...
如果您使用 Microsoft Teams 进行视频会议,则有时可能需要清理缓存文件并删除驻留在许多子文件夹中的残留数据。
您可以调整上一个示例中的代码来进行清理:
1 2 3 4 5 6 7 8 9
# the folder that contains the Microsoft Teams data $parentFolder = "$env:userprofile\AppData\Roaming\Microsoft\Teams\*" # list of subfolders that cache data $list = 'application cache','blob storage','databases','GPUcache','IndexedDB','Local Storage','tmp'
# delete the folders found in the list Get-ChildItem$parentFolder-Directory | Where-Object name -in$list | Remove-Item-Recurse-Verbose
如果您具有管理员权限,并想为所有用户删除缓存的 Microsoft Teams 数据,请按如下所示更改 $parentFolder:
# the folder that contains the subfolders to remove $parentFolder = $env:userprofile # list of folder names to remove $list = 'scratch', 'temp', 'cache'
# delete the folders found in the list Get-ChildItem$parentFolder-Directory-Recurse | Where-Object name -in$list | Remove-Item-Recurse-Verbose-WhatIf