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 Sharepoint Document Library. Show all posts
Showing posts with label Sharepoint Document Library. Show all posts
Friday, December 2, 2016
Monday, March 7, 2016
07
Mar
Maximum file size limit is 2 GB
Default values are:
For SharePoint 2013: default max file size is 250 MB
For SharePoint 2007/2010: default max file size is 50 MB
https://technet.microsoft.com/en-us/library/cc262787(v=office.14).aspx#ListLibra...
Thursday, February 18, 2016
18
Feb
Please follow the below url step
In that article ,Have script file we have to add content editor webpart.
Some restriction will be restrictions.
http://dandd.codeplex.com/
...
Wednesday, May 13, 2015
13
May
Best way o use client side rendering ,below code will implement the script
<script type="text/javascript">
$(function () {
$("a[href$='.pdf']").removeAttr("onclick");
$("a[href$='.pdf']").removeAttr("onmousedown");
$("a[href$='.pdf']").attr("target", "_blank");
});...