diff --git a/Server-Diagnostics---Troubleshooting.md b/Server-Diagnostics---Troubleshooting.md
index 51a3163..347fade 100644
--- a/Server-Diagnostics---Troubleshooting.md
+++ b/Server-Diagnostics---Troubleshooting.md
@@ -99,26 +99,18 @@ Access to the requested resource forbidden.
#### Depth: 0
```
-curl -s --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/ | xmllint --format -
-
-
-
-...
-
-
-
+curl -s --header 'Depth: 0' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/ | xmllint --format - | grep ""
+ /
+ /
+ /USER1/
```
#### Depth: 1
```
-curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/ | xmllint --format -
-
-
-
-...
-
-
+curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/ | xmllint --format - | grep ""
+ /
+ /USER1/
```
#### Depth: 1 / extending URI by user
@@ -126,9 +118,15 @@ curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localho
(example)
```
-curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/USER1/ | xmllint --format - | grep displayname
+curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/USER1/ | xmllint --format - | grep -E "(^ |displayname|C:calendar-description)"
+ /USER1/
+ /USER1/mycalendar1/
MyCalendar1
- Feiertage Bayern
- MyCalendar2
+ MyCalendar1
+ /USER1/mysharedcalendar1/
MySharedCalendar1
+ MySharedCalendar1
+ /USER1/feiertagebayern/
+ Feiertage Bayern
+ Feiertage Bayern
```