Last week I was trying my hands on SharePoint Admin Tool Kit Ver 4.0 (freely available for download from the microsoft site), this tool has some useful features for Administrators as well as users. Particularly I liked the Permission Reporting tool. Installation on a 64 bit environment went through fine and I could also see the Batch Site Manager (helps with Move, Lock and Delete Site Collections ) in Central Admin Page and Permission reporting links coming up individual site collections, however when I tried to install the same on a 32 bit environment although there were no errors I could not see the Batch Site Manager link coming up in Central Admin Page nor the permission reporting tool links on the Site Collections. This was really strange, no errors!, but at the same time tool is not installed!!
After a lot of digging around, I found the installation is not complete after the exe is run for 32bit environment , thanks to nitman's comment there are couple of steps that need to be run manually, which ideally should have been taken care by the exe itself
To deploy and activate the Batch Site Manager feature
1. At the command prompt, run stsadm.exe -o addsolution -filename "C:\ProgramFiles\Microsoft\SPAdministrationToolkit\BatchSiteManagerSolution\BatchSiteManager.wsp" to add the solution file to the farm solution store.
2. Run stsadm.exe -o deploysolution -name BatchSiteManager.wsp -immediate -allowgacdeployment to deploy the solution to the farm.
3. Go to Central Admin -> Operations -> Solution Management, confirm batchsitemanager.wsp status is deployed.
4. Run stsadm -o activatefeature -name BatchSiteManagerLinks to activate the feature.
To deploy and activate the Permission Reporting Tool feature
1. At the command prompt, run stsadm.exe -o addsolution -filename "C:\Program Files\Microsoft\SPAdministrationToolkit\PermissionReportingSolution\PermissionReporting.wsp" to add the solution file to the farm solution store.
2. Run stsadm.exe -o deploysolution -name PermissionReporting.wsp -immediate -allowgacdeployment to deploy the solution to the farm.
3. Go to Central Admin -> Operations -> Solution Management, confirm permissionreporting.wsp status is deployed.
4. Run stsadm -o activatefeature -name PermissionReporting to activate the feature.