Add-PSSnapin Microsoft.SharePoint.PowerShell
# Replace siteurl with actual web url
$web = Get-SPWeb -Identity "siteurl"
# Replace docurl with document library url
$list = $web.GetList("docurl")
function DeleteFiles {
param($folderUrl)
$folder = $web.GetFolder($folderUrl)
foreach...
Showing posts with label Docuement library. Show all posts
Showing posts with label Docuement library. Show all posts
Friday, December 2, 2016
Monday, October 24, 2016
Like the documents in a document library, attachments are stored in Blob form in the content database
You can use Sharepoint Designer to access your Sharepoint Site, there are the Document Librarys and the documents you uploa...
Thursday, June 9, 2016
09
Jun
Tools:
Lars Fastrup has created a tool that does just what you want: CopyMove for SharePoint
It also has a web service API.
2 document libraries
Both contain multiple documents
The documents have multiple versions
using objects like SPExport and SPImport
the copy, move actions of the content site...
Hhigh enough permission level you can select the document, go over the ribbon to files and click "Discard Check Out"
...
Saturday, April 9, 2016
In this below script, Freeze header in SharePoint List 2013
The stickyHeaders widget as part of the Sharepoint List .
_spBodyOnLoadFunctionNames.push("stickyHeaders");
function stickyHeaders() {//-----------------------------------------------------------------------------------------------------------------------------------------------...