The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
177 views

Powershell Script to generate site collection administrators, site URL, Site Name,Members in the group named 'owners'

I have a requirement currently to generate all the Sharepoint site in a Web application with the following information: Site URL Site Name Site Collection Administors : ID or name Members in the group ...
0
votes
1answer
33 views

How to Log Users Who click Hyperlink

I have a SharePoint page with several hyperlinks pointing to different document downloads. I would like to log information everytime someone clicks a hyperlink. More specifically, I would like to keep ...
1
vote
1answer
151 views

Where to download trial of Sharepoint Standard 2013?

I need SharePoint to check some integration capabilities. At http://sharepoint.microsoft.com there is a big button labeled Download SharePoint trial. But clicking on it redirects me to ...
0
votes
0answers
188 views

Download File from client side by using Javascript api for sharepoint

I want to download a file by going through .aspx page and which returns a file like this Response.Clear(); string content = Request.QueryString["param1"]+Request.QueryString["param2"] ...
0
votes
1answer
212 views

Unable to use the ribbon “Download a Copy” when multiple documents are selected

Several users reported that the ribbon button gets grayed out as soon as they select multiple documents to download from a document library. The feature works fine if you select a single document and ...
0
votes
2answers
219 views

How to use standard Sharepoint 2010 download functions

I wish to download a file from a sharepoint2010 site as if you were downloading a normal document from a Document Library. What functions are available in C# to call these functions? I know you can ...
0
votes
1answer
130 views

Downloading Via SharePoint 2010

I am creating a Sharepoint2010 webpart page which downloads documents from a webservice (So the documents do not get saved in Sharepoint2010). I have a windows application which does exactly the ...
2
votes
4answers
652 views

How to download a sharepoint aspx page from server using powershell

I made some changes to sp aspx pages on a environment. I want to move these changes to my TFS. Usually one takes the pages using designer, save it to the desktop, and save that to TFS. But is there ...
1
vote
1answer
118 views

How to find which user last visited a site or recently downloaded a file available on SharePoint?

Is there a way to find who visited the site at last and who downloaded file recently in SharePoint? Also can we log who are the users that used/accessed the file? Can anyone provide some guidance on ...
1
vote
0answers
65 views

Rename Files on Download

Long story short, we have a document library that has two fields that we use to identify files. Our file names are built through SPList objects as well as what a user provides. Since users can choose ...
0
votes
1answer
1k views

Link to “Download a Copy” from a Document Library

I have a Document Library with some exported webparts (.dwp). When I embed a hyperlink somewhere to the document, it opens in the browser (IE8). I cannot change any settings on the site collection ...
3
votes
1answer
433 views

How to disable “Save As” button of Sharepoint 2010 document

We integrated Sharepoint 2010 with RMS, I don't want the users to be able to "Save As" a document to their local computers. How can I disable "Save As" button on documents?
0
votes
1answer
98 views

Copy files from Sharepoint 2007 to USB Hard drive

I've got this old Sharepoint 2007 sites which contains a lot of projects and files. And I'm looking for a way to copy the entire thing onto an external USB hard drive. Now, I know I can browse to ...
0
votes
1answer
653 views

How to download a sharepoint directory with wget?

I'm using wget 1.10.2 which doesn't have the auth problem, what I'm getting is when I run: wget --user=myname --password=pwd http://the.sharepoint.link it only downloads an aspx file which is the ...
3
votes
3answers
295 views

Open files in MS-Office client app on Mac rather than download to local drive

When I email/send URL links to documents to Mac users such as http://sharepointsitedomain.com/Projects/sitename/Shared%20Documents/data.xls and the user clicks on the link the file is downloaded to ...
1
vote
2answers
196 views

Try to download file from server

I'm trying to download a file from my local computer, which is in a library sharepoint. I'm using this function : try { siteURL += "?NoRedirect=true"; ...
2
votes
1answer
430 views

Get Error 401 when trying to download a document from a library programatically

I'm trying to download a document with this code : using (Impersonator impersonator = new Impersonator()) { siteURL += "?NoRedirect=true"; System.Net.WebClient _WebClient = new ...
2
votes
1answer
204 views

Monitor Document Downloads in SharePoint Foundation

Afternoon, Is there a way to monitor/audit who downloads files in SharePoint Foundation either using something out of the box or by creating a workflow? Thanks in advance Steve
0
votes
1answer
184 views

Download file from virtual directory (SharePoint 2010)

I need to download a file from a virtual directory when clicking on a button in sharepoint. I've tried this: page.Response.ContentType = "text/vcard"; ...