5

I'm trying to write a script that iterates through a bunch of sharepoint URLs and verifies that they exist.

From what I can find, it looks like this should work:

$webclient = new-object System.Net.WebClient
$webclient.Credentials = new-object System.Net.NetworkCredential ("username", "password", "domain")
$webpage = $webclient.DownloadString("http://sharepointurl")

This is not working for me ... I keep getting:

Exception calling "DownloadString" with "1" argument(s): "The remote server returned an error: (401) Unauthorized."

What am I missing ?

Jon Seigel
  • 12,251
  • 8
  • 58
  • 92

2 Answers2

13

If your current credentials have perms on the Sharepoint site then skip the net credential and just use the default credentials e.g.:

$webClient.UseDefaultCredentials = $true
Keith Hill
  • 194,368
  • 42
  • 353
  • 369
0

You can use

(Invoke-webrequest -URI "https://www.yoururl.com").Content

Ref: Display all content with Invoke-WebRequest

Bob
  • 898
  • 8
  • 11