No Administrator Account (Windows 8)

I was helping my mom with her laptop because she kept complaining that she had to put a password in every time she logged on. There is only one user on her laptop. I looked online how to remove the log in password and it said to open Run and type netplwiz.
I unchecked the box that said users must enter a password on the top, and it removed the administrator property somehow. Now, whenever a program needs administrative permissions, It doesn't let me click yes to allow. On the bottom it says enter an administrator
password, but no accounts are available because theres only one account on the laptop. I tried to make a guest account instead so she didn't have to enter the password and you need to be an administrator to add users. Is there any way of
getting admin back?
 p.s. I apologize if this is in the wrong category of forums, they're quite unclear to me.

If you're still having a problem with this:
To enable root.
Boot from the Snow Leopard disc. After the menubar appears select the Utilities menu, choose Reset Password. Select the account to reset password and choose System Administrator (root). Enter in the new password and verify it. Save the password, then exit the installer and restart.
At the login window, or if you have it set to auto-login, log out to return to the login window, choose Other... and enter 'root' (all lowercase) as the name, and then the password that you set. In root you will have full access to the system including granting admin rights to the accounts which are standard at the moment. You also will see some additional folders in Macintosh HD you couldn't see before. Do not touch these in any way or you could hurt the OS. Access System Preferences->Accounts, click on the non-admin account and click the checkmark next to "Allow user to administer this computer," then log out and into the account you just gave admin access to again.
To disable root go into Accounts preferences from an admin account, click Login Options at the bottom of the list of accounts, and to the right, click the Join button next to the words Network Account Server..., click Open Directory Utility, click the lock to make changes, and under the Edit menu, choose Disable Root user.
Consult this Apple support article if you get lost.

Similar Messages

  • IE 11, built-in Administrator account, window.open method, JA KB 2909974 exists.. not EN-US ?

    As per title....
    The JA KB (when translated) states,
    If you use the built-in Administrator in Internet Explorer 11, when you open a new window named, such as window.open method, window name is not recognized.
    Therefore, the following phenomenon will occur.
    If you specify in the window.open method of the window named, rather than a window that is already open, URL is displayed in a new tab or new window
    If you specify in the target attribute of the link or form window named, not the window that is already open, URL is displayed in a new tab or new window
    What's Microsoft's comments on tracking to a resolution of this ?

    luca wrote:
    Hi krazyshane,
    try to add this directive in Section "Device":
    Option "DRI" "true"
    This got it!  Thanks! 
    Shane

  • How to launch an application with elevated administrator account privilege from windows service even if the account has not yet logon

    Here is the case:
    OS environment: Windows 7
    There are two user accounts in my system, standard user "S" and administrator account "A", and there is a windows service running with "Local System" privilege.
    Now i logged-in with account "S", and i want to launch an application with elevated administrator account "A" from that service program, so here is the code snippet:
    int LaunchAppWithElevatedPrivilege (
    LPTSTR lpszUsername, // client to log on
    LPTSTR lpszDomain, // domain of client's account
    LPTSTR lpszPassword, // client's password
    LPTSTR lpCommandLine // command line to execute e.g. L"C:\\windows\\regedit.exe"
    DWORD dwExitCode = 0;
    HANDLE hToken = NULL;
    HANDLE hFullToken = NULL;
    HANDLE hPrimaryFullToken = NULL;
    HANDLE lsa = NULL;
    BOOL bResult = FALSE;
    LUID luid;
    MSV1_0_INTERACTIVE_PROFILE* profile = NULL;
    DWORD err;
    PTOKEN_GROUPS LocalGroups = NULL;
    DWORD dwLength = 0;
    DWORD dwSessionId = 0;
    LPVOID pEnv = NULL;
    DWORD dwCreationFlags = 0;
    PROCESS_INFORMATION pi = {0};
    STARTUPINFO si = {0};
    __try
    if (!LogonUser( lpszUsername,
    lpszDomain,
    lpszPassword,
    LOGON32_LOGON_INTERACTIVE,
    LOGON32_PROVIDER_DEFAULT,
    &hToken))
    LOG_FAILED(L"GetTokenInformation failed!");
    __leave;
    if( !GetTokenInformation(hToken, (TOKEN_INFORMATION_CLASS)19, (VOID*)&hFullToken,
    sizeof(HANDLE), &dwLength))
    LOG_FAILED(L"GetTokenInformation failed!");
    __leave;
    if(!DuplicateTokenEx(hFullToken, MAXIMUM_ALLOWED, NULL,
    SecurityIdentification, TokenPrimary, &hPrimaryFullToken))
    LOG_FAILED(L"DuplicateTokenEx failed!");
    __leave;
    DWORD dwSessionId = 0;
    WTS_SESSION_INFO* sessionInfo = NULL;
    DWORD ndSessionInfoCount;
    bResult = WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1, &sessionInfo, &ndSessionInfoCount);
    if (!bResult)
    dwSessionId = WTSGetActiveConsoleSessionId();
    else
    for(unsigned int i=0; i<ndSessionInfoCount; i++)
    if( sessionInfo[i].State == WTSActive )
    dwSessionId = sessionInfo[i].SessionId;
    if(0 == dwSessionId)
    LOG_FAILED(L"Get active session id failed!");
    __leave;
    if(!SetTokenInformation(hPrimaryFullToken, TokenSessionId, &dwSessionId, sizeof(DWORD)))
    LOG_FAILED(L"SetTokenInformation failed!");
    __leave;
    if(CreateEnvironmentBlock(&pEnv, hPrimaryFullToken, FALSE))
    dwCreationFlags |= CREATE_UNICODE_ENVIRONMENT;
    else
    pEnv=NULL;
    if (! ImpersonateLoggedOnUser(hPrimaryFullToken) )
    LOG_FAILED(L"ImpersonateLoggedOnUser failed!");
    __leave;
    si.cb= sizeof(STARTUPINFO);
    si.lpDesktop = L"winsta0\\default";
    bResult = CreateProcessAsUser(
    hPrimaryFullToken, // client's access token
    NULL, // file to execute
    lpCommandLine, // command line
    NULL, // pointer to process SECURITY_ATTRIBUTES
    NULL, // pointer to thread SECURITY_ATTRIBUTES
    FALSE, // handles are not inheritable
    dwCreationFlags, // creation flags
    pEnv, // pointer to new environment block
    NULL, // name of current directory
    &si, // pointer to STARTUPINFO structure
    &pi // receives information about new process
    RevertToSelf();
    if (bResult && pi.hProcess != INVALID_HANDLE_VALUE)
    WaitForSingleObject(pi.hProcess, INFINITE);
    GetExitCodeProcess(pi.hProcess, &dwExitCode);
    else
    LOG_FAILED(L"CreateProcessAsUser failed!");
    __finally
    if (pi.hProcess != INVALID_HANDLE_VALUE)
    CloseHandle(pi.hProcess);
    if (pi.hThread != INVALID_HANDLE_VALUE)
    CloseHandle(pi.hThread);
    if(LocalGroups)
    LocalFree(LocalGroups);
    if(pEnv)
    DestroyEnvironmentBlock(pEnv);
    if(hToken)
    CloseHandle(hToken);
    if(hFullToken)
    CloseHandle(hFullToken);
    if(hPrimaryFullToken)
    CloseHandle(hPrimaryFullToken);
    return dwExitCode;
    I passed in username and password of account "A" to method "LaunchAppWithElevatedPrivilege", and also the application i want to launch, e.g. "C:\windows\regedit.exe", but when i run the service program, i found it do launch
    "regedit.exe" with elevated account "A", but the content of regedit.exe is pure back. screenshot as below:
    Can anyone help me on this?

    You code is not dealing with the DACL access to Winsta0\Default.  Only the LocalSystem account will have full access and the interactively logged on user which is why regedit is not displaying properly.  You'll need to grant access to your user. 
    You also need to deal with UAC since that code is going to give you a non-elevated token via LogonUser().  You need to get the full token via a call to GetTokenInformation() + TokenLinkedToken.
    thanks
    Frank K [MSFT]
    Follow us on Twitter, www.twitter.com/WindowsSDK.

  • How to enable administrator account in windows 8

    I need Administrator Account access to install SQL server 2005 in Windows 8  and I tried all Possible or given solution in PC but I'm not succeed to enable this account.. I tried lusrmgr.msc also but there is nothing option.
    Mainly I couldn't find the option Local User and group management option in Windows 8..
    and also i tried from cmd by net user administrator /active:Yes
    but command displays access denied
     

    Hi,
    Please try this to enable CMD on logon screen:
    http://www.askvg.com/how-to-launch-command-prompt-or-other-programs-using-ease-of-access-button-at-login-screen-in-windows-vista-and-7/
    Then, try to enable built-in admin account.
    net user administrator /active:Yes

  • Administrator account is disable when deploying windows 7 x64 captured image

    I’m using MDT 2012 update 1. I create one deployment share with two task sequence.
    The task sequences are: one for windows 7 x86 and the other one is windows 7 x64.
    Both are working fine until I try to sysprep and capture with all the windows updates.
    Sysprep and capture windows 7 x86 with all windows update work fine. I’m able to deploy the captured image without an error.
    My problem is with the windows 7 x64 captured image. I’m able to sysprep and capture the windows7 x64 with all the windows update. Once the capture is completed, I change the .win file in my windows 7 x64 task sequence to point to the new .win file (capture
    image with all the windows update). When I deploy windows 7 x64 on a pc, the OS get install but boot up to the sign on screen. The Task sequence does not complete. No error message. Cannot log in as local or domain administrator, account is disable.
    Why does it work with my windows 7 x86 image and not with my windows 7 x64 image?
    With my windows 7 x86 image the task sequence completed successfully with no error and it logon automatically in windows but not with my windows 7 x64 image.
    Both task sequences are the same.
    Let me know if any info for this please.
    thanks

    They should both work, perhaps you missed a step when creating the x64 image.
    1. Verify that the Windows 7 x64 image was created cleanly, with no errors. Sysprep ran with no errors.
    2. Verify that you created the windows 7 deployment task sequence cleanly. I would do a windiff of the TS.xml and unattend.xml file from both folders in the deployment share.
    3. Try running without a domain. Some domain's have a GP set to disable the local administrator account.
    Keith Garner - keithga.wordpress.com

  • MDT 2012 - Litetouch deploy windows 8 with different administrator account

    I have created and captured a custom image of Windows 8 using MDT2012 update 1 and Windows ADK (without SCCM). In the image, I have set an account called DeployUser, with password XXX, adding it to the Administrators group, and I have disabled the User
    Account Control.
    I did this because the Administrator account is renamed from GPO and the password is changed every 30 days (for security reasons, the password is not disclosed to any IT support).
    Next, I created a TS to deploy this image, adding the installation of some software.
    In the Unattend.xml, I also added DeployUser to perform the autologon.
    After the first logon with DeployUser, the TS stops and does not return any error message.
    If I manually run C: \ ProgramData \ Microsoft \ Windows \ Start Menu \ Programs \ Start-up \ LiteTouch.lnk nothing happens, however, if I run it with "Run as Administrator", the TS continues normally.
    Somebody who knows a solution for this?

    I believe MDT LiteTouch deployments only recognize the Administrator account name for processing task sequences.
    Are you joining the domain during an MDT Litetouch deployment? If so, you may want to delay joining to a domain or GPO processing. Take a look at these recommendations:
    Domain Policies that break MDT 2010
    It may also be possible to disable GPO processing until the end of the taks sequence via a reghack or disabling a service. Take a look at this:
    How to Disable/Enable Group Policy
    BTW, the task sequence engine in ConfigMgr prevents GPO processing during an OSD.
    V/R, Darrick West - Senior Systems Engineer, ConfigMgr: OSD

  • Enabling Windows Server 2008 R2 Built-In Administrator Account

    The properties box for my Windows Server 2008 R2 built-in administrator program says the account is disabled.  Even the primary user account has virtually no priveliges.  How can I, with a mere primary user account available at logon, enable
    the built-in administrator account, or otherwise grant my primary user account administrator priveliges?  Windows Server 2008 R2 denies my primary user account access/permission for nearly all changes to accounts, programs and OS features. 
    Stephen W Plunkett

    The properties box for my Windows Server 2008 R2 built-in administrator program says the account is disabled.  Even the primary user account has virtually no priveliges.  How can I, with a mere primary user account available at logon,
    enable the built-in administrator account, or otherwise grant my primary user account administrator priveliges?  Windows Server 2008 R2 denies my primary user account access/permission for nearly all changes to accounts, programs and OS features. 
    Stephen W Plunkett
    In some of the organisations, default admin accounts on member servers are purposefully locked/disabled through group policy for security reasons.
    If you know the password for locked out/disabled admin account then there is a possibility of unlocking/re-enabling the account without using any third party tools.
    To do that,
    Restart the server
    Press F8 and select Safe Mode Without
    Networking
    Log on to the server with locked out/disabled admin account with its password.
    If you could successfully log on to the server then you will have option to unlock and enable the built-in admin account !
    Most of the downtime's are caused because of SysAdmin's curiosity ! - Santosh

  • Failure of ACL setting for CIFS share resource on Windows client logined with administrator account

    Hi,
      We accounter a puzzle of ACL setting for a CIFS share resource. In our application, we use the
    administrator account to login a Windows 7 OS which is used as the CIFS client. We can access the share resource by "\\server_ip" on  this CIFS client,  but we can't add
    a new ACE to the ACL of a CIFS share resource provided by a CIFS server.
    Why dose this hanppen? Note that the CIFS server maybe a Windows OS or a self-developed CIFS server. 
      The operation details as followed:
    1.Access the share resource by "\\server_ip", login the CIFS server by a valid account on the CIFS server.
    2.On the Windows client, select the "Security" panel in the mouse-right-button properties dialog of a cifs share resource.
    3.To add a new ACE for someone eg. user0, we input "user0" in the "Select Users ans Groups" dialog popped up.
    4.Click OK, but the Windows client will not get the user information for user0 from the CIFS server.
    WHY?
    5.By wireshare network trace, we find the Windows client didn't send any SAMR requests to the CIFS server.
    6.Restart the Windows client OS and login again with another account except administrator, carry out the above operations. We find that the Windows client can get the user information, opposite with the step 4 above.
    WHY?
    7.By wireshare network trace, we find that the Windows client has sent SAMR requests to the CIFS server to get user informations. But that is different from step 5,  WHY?
    If the Windows client OS is login with administrator account, is there any configuration on Windows client to decide whether request user information on CIFS server when setting ACL for CIFS share resource?
    Expect your help.Thanks.
    Best wishes.

    The purpose of this forum is to support the Open Specifications documentation. You can read about the Microsoft Open Specifications program here,
    http://www.microsoft.com/openspecifications/en/us/default.aspx
    The library of Open Specification documents is located here,
    http://msdn.microsoft.com/en-us/library/dd208104.aspx
    It doesn’t appear that you are implementing one of the protocols cited.  Your question may be more applicable to Technet's Windows Server Platform Networking forum at
    https://social.technet.microsoft.com/Forums/en-US/home?forum=winserverPN or the File Services and Storage forum at
    https://social.technet.microsoft.com/Forums/en-US/home?forum=winserverfiles.
    If you are working on implementing a protocol using the specifications cidet above, please provide more detail.
    Bryan S. Burgin Senior Escalation Engineer Microsoft Protocol Open Specifications Team

  • Adobe Air Application only works using Super Administrator account on Windows XP

    Good day
    i really need some help. I developed air application that uses remote service, sql lite etc. It is working on my computer WIndows XP sp2. To test, i even created a guest account and it works fine. But when i deployed it to our client, the application doest work. Only the login page appears. I ask the it personnel there and ask if there are any restriction on the account of the user and said there is none because they are using Domain account. But when the super administrator is logged in, it works
    Your help will greatly apprciated

    Your help me, I iwill greatly apprciated
    HELP MALAYSIA
    Date: Thu, 21 Oct 2010 20:54:19 -0600
    From: [email protected]
    To: [email protected]
    Subject: Adobe Air Application only works using Super Administrator account on Windows XP
    Good day
    i really need some help. I developed air application that uses remote service, sql lite etc. It is working on my computer WIndows XP sp2. To test, i even created a guest account and it works fine. But when i deployed it to our client, the application doest work. Only the login page appears. I ask the it personnel there and ask if there are any restriction on the account of the user and said there is none because they are using Domain account. But when the super administrator is logged in, it works
    Your help will greatly apprciated
    >

  • Can't get a downloaded menu bar to show up in a Window's user account instance of Firefox other than the administrator account

    In Windowx XP, one can create seperate user accounts or "profiles" so that different people can use a computer and have their files and profiles kept seperate or secured from others. The main account is the Administrator account.
    My problem is I have non-Firefox toolbars that I have downloaded and installed on the Administrators account Firefox toolbar, but I can not get these to show up in any of the seperate user accounts that I have created.
    Is there a way to make these show up? If so, what do I need to do?
    Thank you,
    Blaine Thompson

    Toolbar extensions are installed to the user account / Profile, they're not installed globally. You need to install them separately to each user account / Profile.
    If you know your way around in the Windows Explorer file system, you can drop an extension into the program files Firefox\extensions\ folder and the extension will be installed globally - as each Profile is launched. Right-click the installation button for extensions an use Save Link As... to save the extension to local disk.

  • Disable Windows 7 Administrator Accounts using Novell Script

    Hello, is there a command line I can place in my log in script that will disable the windows 7 administrator account. Or auto log into the administrator account so that I can update the Zimbra connector for 600 users who are using Outlook 2007 and Outlook 2010. The script worked to update the Zimbra connector on 50 of the machines on the network that the users are administrators
    Here are my scripts.
    Zimbra Script
    MAP DISPLAY OFF
    MAP ERRORS OFF
    #msiexec /quiet /i \\ARTEMIS\sys\zimbra32\ZimbraConnectorOLK_7.1.3.63 47_x86.msi
    MAP DISPLAY ON
    END
    User Container_Script
    WRITE "This is container login script"
    WRITE "Good %GREETING_TIME: %CN"
    WRITE "The Time is %HOUR24: %MINUTE"
    DOS SET MAPROOTOFF="1"
    ;MAP F:=ARTEMIS\SYS:
    MAP G:=ARTEMIS\COMMON:
    MAP H:=ARTEMIS\USERS:%CN
    MAP I:=ARTEMIS\APPS:
    IF MEMBER OF "adminReset" THEN
    #NET USE R: \\141.217.157.17\software\vmview5\client T3chsRc00l /user:lrctech
    END
    #G:\LoginScriptInstalls\Admin\changeAP.bat
    IF MEMBER OF "Faculty_OSA_DB" THEN
    #NET USE O: \\selene.nursing.wayne.edu\osa faculty /user:faculty
    @O:\ePOW\k1ePOW.bat
    ;#command /c copy O:\ePOW\k1ePOW.mdb C:\ePOW\k1ePOW.mdb
    ;#command /c copy O:\ePOW\k1ePOW-L.mdb C:\ePOW\k1ePOW-L.mdb
    END
    IF MEMBER OF "osa" THEN
    MAP ROOT J:= ARTEMIS\COMMON:\OSA_COMMON
    #NET USE O: \\selene.nursing.wayne.edu\osa nursing06 /user:osa
    @md C:\OSA2k8
    @O:\OSA2k8\OSA2k8.bat
    ;#command /c copy O:\OSA2k8\osa2k8-L.mdb C:\OSA2k8\osa2k8-L.mdb
    ;#command /c copy O:\OSA2k8\osa2k8.mdb C:\OSA2k8\osa2k8.mdb
    END
    IF MEMBER OF "CoN_Calendar" THEN
    #NET USE X: \\selene.nursing.wayne.edu\web_datashare faculty /user:faculty
    @\\artemis\common\CLASSLISTS\Room_Sch\Calendars.ba t
    END
    REM Novell SP5 Upgrade
    regread "HKLM,SOFTWARE\Microsoft\Windows NT\CurrentVersion,ProductName"
    if "%99" = "Microsoft Windows XP" then
    write "Checking for latest version of Novell Client..."
    IF PLATFORM = "WNT" THEN
    @\\artemis\sys\NwCLIENT\WINNT\i386\acu.exe
    IF "@ERROR_LEVEL" = "1" THEN
    EXIT
    END
    END
    END
    REM TimeSync
    regread "HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Da teTime\Servers,0"
    if "%99" = "time.wayne.edu" then
    regread "HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Da teTime\Servers,"
    if "%99" = "0" then
    write "Time is synced with Wayne Time!"
    else
    @\\artemis\common\LoginScriptInstalls\TimeSync\Tim eSync.bat
    endif
    else
    @\\artemis\common\LoginScriptInstalls\TimeSync\Tim eSync.bat
    endif
    REM WSUS
    regread "HKLM,SOFTWARE\Microsoft\Windows NT\CurrentVersion,ProductName"
    IF "%99" = "Microsoft Windows XP" then
    regread "HKLM,SOFTWARE\Policies\Microsoft\Windows\WindowsU pdate,WUServer"
    IF "%99" = "http://141.217.157.19:8530" then
    write "WSUS is up-to-date!"
    else
    @\\artemis\common\LoginScriptInstalls\WSUS\zoewsus XP.bat
    write "WSUS was just connected to the new and IMPROVED update server!"
    END
    END
    regread "HKLM,SOFTWARE\Policies\Microsoft\Windows\WindowsU pdate,WUServer"
    if "%99" = "http://141.217.157.19:8530" then
    write "WSUS is up-to-date!"
    else
    @\\artemis\common\LoginScriptInstalls\WSUS\zoewsus NEW.bat
    write "WSUS was just connected to the new and IMPROVED update server!"
    endif
    REM SAV temp
    @\\artemis\common\LoginScriptInstalls\Symantec\sav-parent.bat
    REM Novell Server - Artemis default; LDAP Athena
    @\\artemis\common\LoginScriptInstalls\NovellServer \artemis.bat
    REM SAV
    regread "HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Un install\{50E125D1-88E5-48CE-80AE-98EC9698E639},DisplayVersion"
    if "%99" = "10.1.6000.6" then
    regread "HKLM,SOFTWARE\Intel\LANDesk\VirusProtect6\Current Version,Parent"
    if "%99" = "SOPHIA" then
    write "Symantec Antivirus is connected to SOPHIA!"
    else
    @\\artemis\common\LoginScriptInstalls\Symantec\sav-parent.bat
    write "Symantec Antivirus was updated to connect to SOPHIA!"
    endif
    else
    regread "HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Un install\{2085C617-589C-40F8-BE40-EDBC9E2CA2EB},DisplayVersion"
    if "%99" = "10.1.7000.7" then
    regread "HKLM,SOFTWARE\Intel\LANDesk\VirusProtect6\Current Version,Parent"
    if "%99" = "SOPHIA" then
    write "Symantec Antivirus is connected to SOPHIA!"
    else
    @\\artemis\common\LoginScriptInstalls\Symantec\sav-parent.bat
    write "Symantec Antivirus was updated to connect to SOPHIA!"
    endif
    else
    regread "HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Un install\{AD8A1013-4E46-4E02-85C2-3168C3328432},DisplayVersion"
    if "%99" = "10.1.8000.8" then
    regread "HKLM,SOFTWARE\Intel\LANDesk\VirusProtect6\Current Version,Parent"
    if "%99" = "SOPHIA" then
    write "Symantec Antivirus is connected to SOPHIA!"
    else
    @\\artemis\common\LoginScriptInstalls\Symantec\sav-parent.bat
    write "Symantec Antivirus was updated to connect to SOPHIA!"
    endif
    else
    regread "HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Un install\{2EFCC193-D915-4CCB-9201-31773A27BC06},DisplayVersion"
    if "%99" = "11.0.5002.333" then
    write "Symantec EndPoint Antivirus is installed!"
    else
    write "YOUR ANTIVIRUS IS OUT OF DATE!!!"
    write "CONTACT 577-8604 TO HAVE THIS RESOLVED!"
    @\\artemis\common\LoginScriptInstalls\Symantec\sen dmail.bat
    endif
    END

    Ad1082,
    > MAP DISPLAY OFF
    > MAP ERRORS OFF
    > net user administrator /active:yes
    > #msiexec /quiet /i \\ARTEMIS\sys\zimbra32\ZimbraConnectorOLK_7.1.3.63
    > 47_x86.msi
    > MAP DISPLAY ON
    > END
    That should activate the administrator account, yes and then run ine
    installer.
    > Also can you elaborate more on your statement here? "so if you have
    > (another) service login you can try runas or psexec it" I'm confused as
    > to what you mean sorry my expertise is limited when it comes to
    > scripting.
    A command run from the login script, unlike something that is fired off
    by ZCM, has no special rights, ie the net use command above will fail,
    unless the user is a local administrator equivalent.
    One way to get around that is if you have a predefined, local, account
    for service and stuff, in that case you could create a batchfile that
    pushes down psexec
    (http://technet.microsoft.com/en-us/s.../bb897553.aspx)
    Then runs it to run the command, ie:
    #psexec -u user -p password net user administrator /active:yes
    I have done stuff like that in the past, but it is generally a royal pain
    to set up.
    Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Have an idea for a product enhancement? Please visit:
    http://www.novell.com/rms

  • Windows Server 2012 R2 cannot rename Administrator account via GPO

    Have created the normal Rename Administrator GPO: Comp config -> Policies -> Windows settings -> Security settings -> local policies -> Security options Accounts: Rename Administrator Account
    But GPO does not get applied for some reason, RSOP indicated the policy engine did not attempt to configure the setting.
    Any suggestions?

    Hi,
    Any update?
    Just checking in to see if the suggestions were helpful. Please let us know if you would like further assistance. If the issue persists, please provide the following information for further
    research.
    GPMC.log
    ==================
    a. On domain controller, click Start -> Run, type GPMC.MSC, it will load the GPMC console.
    b. Right click on "Group Policy Result" and choose wizard to generate a report for the problematic computer and user account (please place appropriately). (Choose computer and select the proper
    user in the wizard)
    c. Right click the resulting group policy result and click the "Save Report…" => save report to save the report to a HTML file.
    Best Regards,
    Andy Qi
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Andy Qi
    TechNet Community Support

  • I have a new PC and I am getting the message "The iTunes Library File cannot be saved.  You do not have enough access privileges for this operation."  I am the only one using this PC and I have Windows 7 Pro and have an administrator account.  Help

    Can anyone help me with this problem.  ITunes message," The iTunes library file cannot be saved.  You do not have enough access privileges for this operation."   I have administrator account and transferred files from old PC.  I downloaded new iTunes program on new PC.  I synced my iPhone to new PC, no problem.  I deleted old account after indicating shared files to new admin account.  Can anyone help?

    A belated reply, as the problems itunes has have discouraged me from using it much. If you uncheck the "read only" box, it doesn't stay that way! Next time you use it, the box comes up checked.
    I'm still having that problem, even when I open iTunes as administrator.
    I've yet to see the answer to this problem. I use itunes mostly to download audiobooks, and I'm ready to download more, and want to save them!

  • Factory set password for Windows Vista built-in administrator account?

    I am attempting access the Vista built-in administrator account, which normally is not passworded unless the user does so. Mine, however, has a password that was set 11/20/2010 at 9:57:24 PM.
    Was this p/w set by Toshiba? I assume so, as it was purchased directly from Toshiba. If so, any idea what that p/w would be?  I need to use this account to recover my own admin account due to this error: The User Profile Service failed the logon. User profile cannot be loaded.
    Machine is a Satellite P300 S/N 29020124W, Part # PSPC8U-01G00Q.
    Thanks.

    Satellite P300-ST3712
       You receive a "The User Profile Service failed the logon” error message
        How to Fix the Error "Your user profile was not loaded correctly! You have been logged on with a tem...
    Was this p/w set by Toshiba?
    No. But some programs like the Google Updater (if you added the Google Toolbar, Chrome or Google Earth) have been known to cause this problem. 
    -Jerry

  • Old domain was removed and Unable to login as domain administrator account in windows 7 laptop

    I have a problem with a laptop which is in old domain, due to some issue I need to uninstall some of the programs on that machine for
    that it is asking administrator password, so when I was entering old domain’s administrator account password it is not logging in, and there is no other local administrator account configured on that machine, how to log in into that machine and join that to
    the new domain.
    I am trying to log in as <domain-name>\administrator 

    Hi,
    Logon to a domain with domain account is an interactive process, which needs cooperation of both DC and DNS. Since the old domain is delete, then, log in as <domain-name>\administrator to the old domain will failed.
    Open CMD, type “net user”, and press Enter to display user account of this computer. Check to see if any account which has administrator permission you can remember.
    Besides, type “net user administrator”, if the Account Active is YES, try to use this built-in administrator account to logon:
    Press Alt + Ctrl + Delete, select Switch User -> Other User, type <computer name>\administrator. (there may be no password if you haven’t set this)
    If there is no administrator permission account which you can use to logon, reinstall the system should be needed.
    Best Regards,           
    Eve Wang                                                                                                                                                  

Maybe you are looking for