Category Windows

Howto: Install Eroom Server 2008

By default the e-room plugin won’t install on server 2008.  Here’s howto install eroom on server 2008. 1. Run the eroom plugin setup .exe. 2. Locate the temp.msi that was created on your machine (should be under your %username%/Local/Appdata/temp somewhere,…

reinstall asp.net script

Here’s a reinstall asp.net script: This example is for asp.net 4.0 on a 64 bit system, it stops IIS, uninstalls all versions of asp.net, reinstalls asp.net, then starts IIS: NET STOP IISADMIN /Y “C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe” -ua “C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe” -i NET START IISADMIN…

SpiraTeam query all users and roles

I needed a script for an audit of SpiraTeam to query all users and roles. And here it is: /****** Script for SelectTopRows command from SpiraTeam ******/ SELECT TOP 1000000 [FULL_NAME] ,[PROJECT_ROLE_NAME] ,[PROJECT_NAME] ,[ACTIVE_YN] FROM [SpiraTeam].[dbo].[VW_PROJECT_USER] where ACTIVE_YN like ‘Y’…