July 2009
M T W T F S S
« May   Dec »
 12345
6789101112
13141516171819
20212223242526
2728293031  

Archive for July, 2009

24
Jul

This product requires ASP.NET v2.0 to be set to ‘Allow’ in the list of IIS Web Server Extensions

I think there might be an issue with .NET 2.0 SP2 that causes my normal fix of “click the reinstall button on .NET 2.0″ to fix this issue. i recently ran into this issue again and it didnt work. What did work is the commands below. Bascially it is uninstalling and reinstalling via regiis.

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspnet_regiis -u   (uninstall)

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspnet_regiis -i   (reinstall)

08
Jul

the search service is currently offline. visit the services on server page in sharepoint central administration to verify whether the service is enabled. this might also be because an indexer move is in progress

Why did this happen? No idea. How did I fix it, read below.

  1. Open central admin
  2. Goto Operations
  3. Goto Services on server and located your index server
  4. On “Office SharePoint Server Search” click “Stop”. This deconfigures it.
  5. Now click “start”
  6. Then click “Shared Services Administration”, hover over the failing SSP and select edit.
  7. You will notice now the indexer is not selected. Select it from the drop down.
  8. HERE IS THE IMPORTANT PART. The server you have selected is probably the same server as you used before. If it is, go to that server and locate the indexer files. It is in the textbox right below the drop down you just used. For me it was “F:\Program Files\Microsoft Office Servers\12.0\Data\Office Server\Applications”. In there you will find a folder with Guid name. At the end of that folder add “_old”. Now go back to your SSP and click OK. Wait 1 minute and the index will recreate the guid folder.
  9. Tada, all fixed.
08
Jul

Remove hiberfil.sys on Server 2008

For what ever reason server 2008 creates a file on the OS drive for hybrinating the same size as the RAM that is in the server. Not sure how many servers hybrinate, but not mine.

To turn it off just run this from command line

powercfg -h off

Enjoy.