I had this problem a few days back and I had all the options in the stsadm command to deploy it immediately, like -immediate and stsadm -o execadmsvcjobs Apparently it was the problem with one of the servers in the server farm was down. Since the faulty server is there in the server farm, STSADM […]
Archive | January, 2009
Creating RoleDefinitions, UserGroups and RoleDefinitionBindings
Create a RoleDefinition as per the permissions you would like that role to have. I would create "Reader " with below roledefinition 1: SPRoleDefinition readersRoleDefinition = new SPRoleDefinition() 2:{ 3: Name = "Readers", 4: Description = "My site collection Readers", 5: BasePermissions = 6: SPBasePermissions.ViewListItems | 7: SPBasePermissions.OpenItems | 8: SPBasePermissions.ViewVersions | 9: SPBasePermissions.CreateAlerts | […]