Posts

Showing posts from February, 2014

Unlocking Microsoft SCCM 2012 R2 Objects

When you will edit a Task Sequenz or other entries in Microsoft System Center Configuration Manager 2012 R2 and the message "Cannot edit the object, which is in use by 'username' at Site 'configmgr site'." pop up, you can fix this with the following steps. Open Microsoft SQL Server with the SCCM  instance Make a SQL Query with the following statement select * from SEDO_LockState where LockStateID <> 0 Copy the LockID from the entrie you will unlock Make a second SQL query with the following statement DELETE from SEDO_LockState where LockID = '< copied  LockID from the previous query>' After this steps you can edit the locked entries again in the SCCM console.