spjeff / spbestwarmup

Tired of waiting for SharePoint pages to load? Want something easy to support? That works on all versions? This warmup script is for you!
2 stars 0 forks source link

Update SPBestWarmUp.ps1 #8

Closed aschulz01 closed 8 years ago

aschulz01 commented 8 years ago
  1. Supporting Extended SharePoint WebApplications
  2. warmup ADFS environments (calling the trusted identity provider url) (the adfs server itself should warmed up in the custum url section)
spjeff commented 8 years ago

Hey Andreas!

Excellent suggestion. I updated the code and committed to master. Would you please download v2.2.5 and run a few tests?

https://github.com/spjeff/spbestwarmup/blob/master/SPBestWarmUp.ps1

aschulz01 commented 8 years ago

Hi Jeff,

$wa is no longer defined while iterating through the sitecollections.

Best regards, Andreas

[cid:image001.png@01D23464.C7404E60]

From: Jeff Jones [mailto:notifications@github.com] Sent: Dienstag, 1. November 2016 17:08 To: spjeff/spbestwarmup spbestwarmup@noreply.github.com Cc: Andreas Schulz aschulz@symbioware.de; Author author@noreply.github.com Subject: Re: [spjeff/spbestwarmup] Update SPBestWarmUp.ps1 (#8)

Hey Andreas!

Excellent suggestion. I updated the code and committed to master. Would you please download v2.2.5 and run a few tests?

https://github.com/spjeff/spbestwarmup/blob/master/SPBestWarmUp.ps1

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/spjeff/spbestwarmup/pull/8#issuecomment-257608688, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AByqi6GxXqhxTqe5iyV17aRp1i-2KSvsks5q52PRgaJpZM4Kl6G2.

spjeff commented 8 years ago

Please try now. Made a fresh new commit using $wa.AlternateUrls to loop web apps outside and loop the various AAM inside for that parent web app.

aschulz01 commented 8 years ago

Hi Jeff,

yes, this works ☺ thank you.

I have a other hint: On x64 Systems the Get-Process return column “PM(K)” overflows on large working sets. See: [cid:image001.png@01D2346D.8A086010] So wrong sum values are shown. [cid:image004.jpg@01D2346E.50504350]

Solution working on x64: $mb = [Math]::Round((Get-Process W3WP -ErrorAction SilentlyContinue | Select-Object workingset64 | Measure-Object workingset64 -Sum).Sum/1MB)

Best regards Andreas

From: Jeff Jones [mailto:notifications@github.com] Sent: Dienstag, 1. November 2016 17:37 To: spjeff/spbestwarmup spbestwarmup@noreply.github.com Cc: Andreas Schulz aschulz@symbioware.de; Author author@noreply.github.com Subject: Re: [spjeff/spbestwarmup] Update SPBestWarmUp.ps1 (#8)

Please try now. Made a fresh new commit using $wa.AlternateUrls to loop web apps outside and loop the various AAM inside for that parent web app.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/spjeff/spbestwarmup/pull/8#issuecomment-257617218, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AByqi9Ox0qyxHk6EkTELEU_OawVxhZxcks5q52q9gaJpZM4Kl6G2.

spjeff commented 8 years ago

Awesome! =)

Yeah, everybody has X64 for SharePoint so that's a given.

Just updated that line, committed to master, and updated download ZIP too.

spjeff commented 8 years ago

ZIP download pages are now updated.

https://github.com/spjeff/spbestwarmup/releases

https://spbestwarmup.codeplex.com/releases/view/106685