• The easiest scriptable way to check FS4SP certificates

    Put this in a weekly script to make sure you never forget about certificates expiring. $cert = @(dir cert:\LocalMachine\My -recurse | ? { $_.Subject -eq 'CN=FASTSearchCert' })[0] Write-Host "Self-signed certificate expires on:" ...read more
  • How to get authenticated/secure results through the QRServer in FAST Search for SharePoint

    I received an email from an ex-student today that forced me to remember how to send an authenticated query to the QRServer in FAST Search for SharePoint. The reason for doing this is that when you issue a query through the SharePoint UI, additional ...read more
  • SharePoint PowerShell Script Series Part 6 - Is Anonymous Access Enabled?

    SharePoint Administrator's that run this script usually want to answer one of the following questions:     1. Is Anonymous Access enabled anywhere in my Site Collection.  If so, where?     2. I want to confirm Anonymous ...read more