Disjoin computer from domain without being domain admin

Windows Server 2008 R2 AD
I have created a group to enable non-domain admin user/s to join computers to domain. we're trying to have the same set of users join computers to domain but we are unable to unless a domain admin deletes the old computername from the domain.
is what we're trying to achieve possible? to allow non-domain admin users disjoin computers from domain?

Any local administrator can remove the computer from the domain but if the user has no appropriate permissions on AD, it will leave the computerobject orphaned in AD.
If you need a user to be able to remove a computer object from AD you can delegate permissions for that. By default the Account Operators Group has the appropriate permissions.
note that both permissions to create, change or delete (computer) objects in AD should not be granted lightly.
http://support.microsoft.com/kb/818
MCP/MCSA/MCTS/MCITP

Similar Messages

  • HT202724 How i can send multiple sms from mac without being a group message ?

    How i can send multiple sms from mac without being a group message ?

    Start new conversations, one for each recipient.

  • Change service accounts from Domain Admin to local Admin SQL Cluster

    Hi
    We have some SQL Clusters in our enviroment, the previous administrator made user accounts for the sql cluster services, but he put these accounts in the Domain admins group, the security staff ask me to remove them from this group, but I don't know if this
    would raise issues for the SQL cluster.
    I thought would be better to put this accounts in the local Administrators group in every server's cluster and remove these accounts from the Domain Admins group, but we can not restart the server....
    Is this possible? or is it neccesary to do another extra procedure?
    Thanks in advance.
    Doc MX

    Hi
    We have some SQL Clusters in our enviroment, the previous administrator made user accounts for the sql cluster services, but he put these accounts in the Domain admins group, the security staff ask me to remove them from this group, but I don't know if this
    would raise issues for the SQL cluster.
    I thought would be better to put this accounts in the local Administrators group in every server's cluster and remove these accounts from the Domain Admins group, but we can not restart the server....
    Is this possible? or is it neccesary to do another extra procedure?
    Thanks in advance.
    Doc MX
    Hello,
    It is always recommended to run Cluster service with domain account having lest privileges.Running with local account can have issues like when SQL server restarts the account looses logon rights due to AD policy (have seen this issue many times) now suppose
    by any cause SQL server stops at midnight it wont start as local account will loose privileges.So get a domain service account created below link will surely be helpful
    http://technet.microsoft.com/en-us/library/ms345578.aspx
    http://technet.microsoft.com/en-us/library/cc784325(v=ws.10).aspx
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Can I use iTunes in cloud computing from public library computers or admin. protected computers that don't allow downloading applications or saving user files?

    can I use iTunes in cloud computing from public library computers?
    Can I subscribe to a external database that will let me us apple software from public compute?r--more often than not a PC.

    Are you signed in?
    Image of where this is in iTunes 11: https://discussions.apple.com/message/20585561

  • TS1702 How do I stop unwelcome Huffington Post news article videos from playing without being prompted??

    When I open a news story on the Huffington Post App on my iPhone, the video associated with the story starts playing without being prompted.  Anyone know how to turn off this feature?  I've used this App for years and this problem has just started within the last week.  Thanks!

    Don't use the app. That's about the only way to avoid it that I know of.

  • User being removed from Domain Admins...how to find all servers his account is being used.

    We have a user that is being removed from IT (more like being forcefully demoted) and our owner still finds him valuable in other departments. My challenge is to find all servers that he may be using his account locally on (as a service or added to a local
    admin group). It hasn't happened yet, but we need to be prepared to say we know all the servers his account is on when the owner demotes him.
    I'm hoping someone has an approach to this that doesn't include going through tons of Event Viewer Security logs. We do have System Center Configuration Manager and Operations Manager 2012 w/ SP1, but the guy that is responsible for those is the guy we are removing
    and none of us are aware on how to use the possible tools that those have. If you feel that those would do the trick then please point me to a "how to" and I'll try to learn on the fly. Otherwise I'll take any other suggestions.
    ~Rick

    Hi Rick,
    Based on my research, you can filter events logs based on user name and event ID:
    Advanced XML filtering in the Windows Event Viewer
    http://blogs.technet.com/b/askds/archive/2011/09/26/advanced-xml-filtering-in-the-windows-event-viewer.aspx
    Best Regards,
    Amy

  • Vb scripts to remove the user from the member of perticular group (say from domain admin) from windows servers 2003 and 2008

    Hi,
    I need VB script which to checks the perticular user in AD and if it exists;that user needs to be removed from the member of perticular group
    Ex:- Lets say
    I have a user 783562 , I need to search this user in AD to verify user exists or not. If not then I no need to remove the mebership from perticular group
    Second scenario:-
    If user exists then I need to remove the user membership from the perticular group.I want to do it in automation
    Manual Path:-
    1.Type dsa.msc in run command of IT session(we using it to connect remote desktop).
    2. Select the domain & right click (EX:-corp.ds.xxyyzz.com) and select "Find" to find the user form the domain.
    3. Type the user name in the Name field and click on "Find Now" button user name will be displayed in search result.
    4. Double click on this user ID and select "Member Of" tab.
    5. Select any member of group from the Name section then click on "Remove" button.
    6. Finally click on "Apply" and "OK" button.
    Kindly help me out to do this by using vb script.
    Thanks
    Raja

    Usage: CScript NameOfVBS.vbs //NOLOGO /User:Jane.Doe /GroupDN:CN=Group1,DC=Contoso,DC=com
    Option Explicit
    On Error Resume Next
    Dim str_User
    Dim str_GroupDN
    Dim obj_Connection
    Dim obj_Command
    Dim obj_RootDSE
    Dim str_DNSDomain
    Dim str_Base
    Dim str_Filter
    Dim str_Attributes
    Dim str_Query
    Dim obj_RecordSet
    Dim obj_Group
    Dim str_ADsPath
    Dim obj_User
    str_User = WScript.Arguments.Named("User")
    str_GroupDN = WScript.Arguments.Named("GroupDN")
    If Len(Trim(str_User)) > 0 And Len(Trim(str_GroupDN)) > 0 Then
    Set obj_Connection = CreateObject("ADODB.Connection")
    Set obj_Command = CreateObject("ADODB.Command")
    obj_Connection.Provider = "ADsDSOOBject"
    obj_Connection.Open "Active Directory Provider"
    Set obj_Command.ActiveConnection = obj_Connection
    Set obj_RootDSE = GetObject("LDAP://RootDSE")
    str_DNSDomain = obj_RootDSE.Get("defaultNamingContext")
    str_Base = "<LDAP://" & str_DNSDomain & ">"
    str_Filter = "(&(objectCategory=person)(sAMAccountName=" & str_User & "))"
    str_Attributes = "cn,ADsPath"
    str_Query = str_Base & ";" & str_Filter & ";" & str_Attributes & ";subtree"
    obj_Command.CommandText = str_Query
    obj_Command.Properties("Page Size") = 1000
    obj_Command.Properties("Timeout") = 1
    obj_Command.Properties("Cache Results") = False
    Set obj_RecordSet = obj_Command.Execute
    obj_RecordSet.MoveFirst
    If obj_RecordSet.RecordCount = 0 Then
    WScript.Echo str_User & " was not found"
    Else
    Set obj_Group = GetObject("LDAP://" & str_GroupDN)
    str_ADsPath = obj_RecordSet.Fields("ADsPath")
    Set obj_User = GetObject(str_ADsPath)
    obj_Group.Remove(obj_User.AdsPath)
    If Err.Number = 0 Then
    WScript.Echo str_User & " was removed from group " & str_GroupDN
    ElseIf Err.Number = -2147016651 Then
    WScript.Echo str_User & " not a member of group " & str_GroupDN
    Else
    WScript.Echo str_User & " error removing from group " & str_GroupDN
    End If
    End If
    End If

  • Is there any way to use zen touch without being an admin on the comput

    I looked for weeks and weeks with no solution. All I want is the simple
    interaction between my 20GB zen touch and a pc with which I have
    no admin priviliges. If I managed to get the files (nomad explorer/driver)
    somewhere else would simply copying them over be enough to get it to work.
    Or is it hopeless and you HAVE to be an admin? :smileysurprised:
    Please helpMessage Edited by myname on 05-24-2005 03:8 PM

    It works fine on my laptop but you know the way it is at work.
    I thought I'd be able to download files and bring them home
    to my laptop on the zen touch. ?260, 20GB and I can't even use
    it to transfer files. Feck that :smileyvery-happy:

  • How do I stop audio play button in embedded plugins from starting without being clicked?

    I am trying to used embedded audio plugins in my podcasts which are posted weekly. But when I add a new plugin each week it starts playing as soon as one clicks on the site. I can have six programs playing at once. How do I set the parameters so that one must first click on the play button for them to start playing?

    That's bad. Really bad. And I can understand how you might get complaints about that.
    For HTML5, the way you insert audio is this way:
    <audio autoplay="autoplay" controls="controls"> 
       <source src="podcast.ogg" /> 
       <source src="podcast.mp3" /> 
    </audio>
    You also have to make sure that your .htaccess file does know about ogg files and I assume you have done that.
    In the case of my example above, take out the autoplay="autoplay" that will cause the audio to not play when you load the web page.
    Now, you didn't say if you're using Flash or some older means of putting your podcasts on your website, so I've just given you the HTML5 information, which is what I am currently using for audio on the web.

  • Scrabble app that allows you to play against a computer from your iPad without being online

    Scrabble app that can be downloaded and then allow play against a
    computer from theiPad without being online

    Reflection App
    reflectionapp.com will allow you to do this.

  • Recover From Domain Restarts Computer

    Ok, so our CIO has wanted us to start fielding tablet hybrids, and got us a couple test units to play with. Our production environment runs MDT 2012 on Server 2008 R2 and our standard deployment is Windows 7 SP1. These tablet hybrids will receive Windows
    8.1 Pro, so naturally we needed Server 2012 / MDT 2013. I have the testing environment all set up, captured a Windows 8.1 WIM, created the task sequence to match our Win7 TS. Here's the only issue I have: In our MDT 2012 environment, the computer does not
    restart after domain recovery. In MDT 2013, deploying Win8.1, it does restart. The domain join is applying the GPO policy, which includes a corporate login notice. On restart, this haults my task sequence and doesn't proceed until I press ok on the machine.
    It then proceeds to autologin and process the rest of the State Restore portion of the task sequence. On individual computers, this is no issue, but between the 4 of us (my team mates and myself), we process about 30 computers a day.
    So, the question is: how can I stop the computer from restarting after the domain recover step; OR how can I disable the login notice after domain recovery but before shutdown? Keep in mind, this doesn't happen in the MDT 2012 / Win7 deployment scenario.

    As I don't have AD permissions to create OU's and manipulate GPO, and the process of requesting the altering our existing staging OU would have taken more time than would be beneficial, I attempted the link in your fix and found it almost flawless.
    The only thing I find it lacking is the necessity of manually rebooting upon TS completion, as this was not necessary in an MDT 2012 / Win7 environment, but I always manually reboot anyway, so this isn't so much a gripe as much as an observation.
    Whatever you FinishAction is set to do is what will happen at the end.  The valid values in customsettings.ini are:
    action
    Where action is one of the   following:
    SHUTDOWN. Shuts   down the target computer.
    REBOOT. Restarts   the target computer.
    RESTART.   Same as REBOOT.
    LOGOFF. Log   off the current user. If the target computer is currently running Windows PE,   then the target computer will be restarted.
    blank. Exit   the Deployment Wizard without performing any additional actions. This is the default   setting.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Is it possible to set up ADFS without domain admin rights in Windows 2012 R2?

    I've set up Windows 2012 R2 on my development box and want to enable the ADFS feature to test claims based authN. In ADFS 2.0, you could opt to install standalone and local admin privileges would be enough to install ADFS and authenticate against the domain
    AD.
    However, with the new ADFS, after installing the feature it asks to enter the credentials for an account that is a domain admin. Is it still possible to configure ADFS without domain admin privileges?

    Hi,
    According to my research, if you want to set up AD FS in Windows server 2012 R2, each computer
    that functions as a federation server must be joined to an Active Directory domain.
    Besides, AD FS requires a certificate for SSL server authentication on each federation server in your federation server farm. Furthermore, you need a membership in
    Administrators on the local computer to install the AD FS role service.
    For more detailed information, please refer to the links below:
    How to deploy AD FS in Windows Server 2012 R2
    http://technet.microsoft.com/en-us/library/dn303423.aspx
    Best regards,
    Susie

  • Premiere and Photoshop CC Crashes at launch on a Domain Non-Domain Admin Computer

    On Windows 7 Domain computer lab as a non domain admin but local admin, program launches and then closes with the error codes below. As domain admin account, it works fine. This is a K12 education institution, so giving student's domain admin status is unacceptable. Please advise, any help is greatly appreciated.
    FYI, things i have tried:
    Integrated graphics cards, I have uninstalled and re-installed drivers. No luck. I have also made the pslog.txt file and given appropriate permissions to all users.
    Error Codes:
    Windows Error Code - Application error
    Faulting application name: Adobe Premiere Pro.exe, version: 8.0.1.21, time stamp: 0x53c7b17f
    Faulting module name: dvaui.dll, version: 8.0.1.21, time stamp: 0x53c76970
    Exception code: 0xc0000005
    Fault offset: 0x00000000002f4e39
    Faulting process id: 0xf28
    Faulting application start time: 0x01d01a2c32635355
    Faulting application path: C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\Adobe Premiere Pro.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\dvaui.dll
    Report Id: 924f6336-861f-11e4-821e-0024811149b1
    Fault bucket 45383478, type 20
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Windows Information - Windows Error
    Problem signature:
    P1: Adobe Premiere Pro.exe
    P2: 8.0.1.21
    P3: 53c7b17f
    P4: dvaui.dll
    P5: 8.0.1.21
    P6: 53c76970
    P7: c0000005
    P8: 00000000002f4e39
    P9:
    P10:
    Attached files:
    C:\Users\esdstudent\AppData\Local\Temp\WER9443.tmp.WERInternalMetadata.xml
    These files may be available here:
    C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_Adobe Premiere P_ad637fa2c8bd70d3e74771b4be53569c25a980_00c3bab6
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 924f6336-861f-11e4-821e-0024811149b1
    Report Status: 0

    I think you have answered your own question... you must have BOTH types of user accounts set to Administrator
    This is an open forum with a mix of program users and Adobe staff, not Adobe support... you need Adobe support
    Adobe contact information - http://helpx.adobe.com/contact.html may help
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Prevent Active Directory Parent Domain Admins from accessing Child Domain

    We want to prevent Parent domain administrators (or a similar profile?) from accessing and/or administering child domains. Is this possible, or do parent domain admins have irrevocable administrative access to any child domain?
    Asked another way, can a restricted profile be configured for administration of the parent domain that does not cross domain boundaries effectively isolating each domain's administrative needs?
    Thanks in advance for input and advice!
    Best regards.

    Sorry, I was replying again after I read your second paragraph. The parent domain is the Forest root. we have parentdomain.com
    parent.parentdomain.com
    child1.parentdomain.com
    child2.parentdomain.com
    child3.parentdomain.com
    We do not want the Domain Administrator for parentdomain.com to be able to administer, or preferably, even access the Child Domains.
    1.) Can we remove that user from "Enterprise Admin" role and assign a different role so that they can only administer parentdomain.com (effectively demoting that user)?
    2.) Promote a Child.parentdomain.com user to Enterprise Admin?
    Thanks sorry for the confusion.
    Ah ok.
    Yes, you can. the answer is the same basically. The group membership is what counts. So in the child domain, remove the enterprise admins group from the child domain admins groups. OR make sure the domain admins of the forest root are not members of the
    enterprise admins group. that way they are still only admins in the parent domain.
    It is really only depending on group members ship and including those groups in the child domain. by default the enterprise group is included for example, but nothing stops you from removing those groups.
    based on the group membership you can also deny them the ability to log on.
    the only thing you cannot prevent is the forest administrator account from doing something.
    One thing I would like to add though: any admin in the forest domain likely has the ability to still get access if he wants to force his way in.

  • Powershell script to get the domain admin list from non domian member server

    hello Script guys!
    I am new of the powershell scripting.
    currently I am working on autometion project , we would like generate a privilege report for our existing servers.
    in our environment, there are many seprated domain , we would like generate the report from one server instead to login each server to check , could you provide some guide on how can we get the specific domain admin list for each domain from a non domain
    membership server by using the powershell script? many thanks for your help.

    You could remote to the domain controller or use ADSI to query the domain.
    Look inth eGallery as ther eare many scripts there tha will return group membership using ADSI.
    ¯\_(ツ)_/¯

Maybe you are looking for

  • Performance optimization related.

    Hi. I am doing Performance optimization on code. Actually, I am doing performance optimization for old code where it is of JDK1.4 related. I met up with a doubt when I optimize code for JDK1.5. Problem statement: Collection errors = new ArrayList();

  • Oracle Database 10g or Oracle 10g Express Edition

    Hi Friends, I have worked on Oracle 9i but now I would like to work on Oracle 10g but confuse because there are more option for download.Which one should I go for? Oracle Database 10g or Oracle 10g Express Edition ? Or Any other option. Any Suggestio

  • Errors running JCORBA demos in OAS 4.0.7

    Hello!! I am having problem trying to run the JCORBA demo provided with OAS 4.0.7 as well as the example laid out in the tutorial that is provided in the documentation that comes with it. This is the error I'm getting when trying to execute any of th

  • HELP !! Computer wont start after i change from 133 to 166 on my FSB

    Hi... I have a K7N2G. I changed the my fsb from 133 to 166. Afterward, I have not been able to start or boot my computer (my fans are on, but monitor is not geting any output). Thank you and greatly appreciated to anyone that can help me. Yoge

  • Mask is not moving with the set key frames

    Hi Everyone, Though I have been using this forum a couple of years now, I never felt the need to ask a question, up until now that is. First of all, I would like to take the opportunity to thank so many of you for giving me the answers hence solving