You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Powershell script that loops through all files and items deleted from a single site and present in the recycle bin of that site. All files are restored.
2
2
3
-
4
-
5
-
Works with group sites!
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
3
+
**Works with group sites!**
14
4
15
-
The script requires SharePoint Online SDK. After installing the SDK verify if the path to 2 libraries: Client.dll and Client.Runtime.dll are in the same location as below:
5
+
The script requires [SharePoint Online SDK](https://www.microsoft.com/en-us/download/details.aspx?id=42038). After installing the SDK verify if the path to 2 libraries: Client.dll and Client.Runtime.dll are in the same location as below:
16
6
17
-
(usually if not, they will be under 16\ISAPI\)
7
+
(usually if not, they will be under **16**\ISAPI\)
18
8
19
9
20
10
21
11
22
12
23
-
PowerShell
13
+
```PowerShell
24
14
# Paths to SDK. Please verify location on your computer.
25
15
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"
26
16
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"
0 commit comments