Windows 10: Standard user able to access Admin folders?

Discus and support Standard user able to access Admin folders? in User Accounts and Family Safety to solve the problem; Hello, Not sure if this is by default, but I've noticed it on 3 different computers. 2 running Windows 10 Home, 1 running Windows 10 Pro. When... Discussion in 'User Accounts and Family Safety' started by dirkd, Nov 22, 2017.

  1. dirkd Win User

    Standard user able to access Admin folders?


    Hello,

    Not sure if this is by default, but I've noticed it on 3 different computers. 2 running Windows 10 Home, 1 running Windows 10 Pro. When logged on as standard user, I'm able to access the folders of an Administrator. I may get prompted for password the first time, but after logging off, restarting, etc, I'm still able to access the folders forever after that. Not sure if there's something I'm doing to accidentally enable this.

    Any ideas??

    :)
     
    dirkd, Nov 22, 2017
    #1

  2. give standard user access to admin program Windows 10 Pro

    I'm Greg, an installation specialist and 8 year Windows MVP, here to help you.

    It seems you've done everything correctly. It could be system corruption or a bug.

    If you want to report this to Microsoft use the Feedback Hub app in Start Menu where developers are tasked to process consumer feedback. But Microsoft will not even see it here because this is a tech forums where we are mostly volunteers trying to help solve
    your problems.

    What I'd do at this point is wait a few days for Spring Creators Update to be released, install Media Creation Tool from this link and choose Upgrade This PC Now:

    http://windows.microsoft.com/en-us/windows-10/m...


    This is the most stable way to change to the newer version and because it reinstalls WIndows while keeping your files and programs in place, fixes most problems. It also brings all Windows Updates to date.

    I hope this helps. Feel free to ask back any questions and let us know how it goes. I will keep working with you until it's resolved.
     
    Greg Carmack - Windows MVP, Nov 22, 2017
    #2
  3. ThermoX Win User
    give standard user access to admin program Windows 10 Pro

    Ok. I've been getting really frustrated with this. I've searched tons of sites, tested tons of methods and none work.

    The task is a seemingly simple one, conceptually. I, as the administrator, want to give access to a specific user, with standard access, to a specific program. It should be easy, shouldn't it?

    Here's what I tried part 1:

    - I gave that user "full privileges" to the program's containing folder.

    - Turned OFF/ON/OFF the Compatibility/Change settings for all users/Run this program as an administrator

    - I even gave the user ownership of the entire folder.

    None of that work. Always getting the irritating admin popup.

    Here's what I tried, part 2;

    - I tried the trick with the Task Scheduler. Added a task, pointing to the target program. Added a Trigger to launch automatically when selected user logged in.

    - That didn't work. So tried another approach using New-EventLog and Triggering the Task from a custom Log entry. Failed as well.

    Here's what I tried, part 3;

    - Tried the : runas /user:MachineName\username /savecred Program.exe

    - Getting "740: The requested operation requires elevation. "

    - Tons of post on the web about this error.

    - Tried a few group policy changes and none worked.

    So, once again, I just spend an entire evening trying all sorts of different things to allow, as the administrator, 1 @#$%^ program to run on a basic account. Why is it ALWAYS so @#$%^#$^ complicated to do ANYTHING in Windows nowadays! This is a simple
    requirement, which should have a simple solution!!

    I run into these issues ALL THE TIME now. So frustrating!!

    So now, I might have to give that user full admin privileges to run 1 freakin program! How secure is THAT!
     
    ThermoX, Nov 22, 2017
    #3
  4. Try3 Win User

    Standard user able to access Admin folders?

    Dirk,

    The password you entered earlier was that of an Admin user account and it permanently authorised your access to the folder concerned.

    You will be able to see this by right-clicking on the folder, selecting Properties, Security tab - your standard user account name will be shown as having permission to access the folder. You can change that entry to undo what you have done if you want to [use either Edit or Advanced].

    *Arrow Change Permissions of Objects for Users and Groups in Windows 10 User Accounts Tutorials

    Denis
     
  5. dirkd Win User
    Thanks for the reply.

    Why would it be permanent, even after a reboot? That seems to defy the fundamental separation of Admins and users.
    If this is the default, how can I set it to prompt for a password each time?
     
    dirkd, Nov 22, 2017
    #5
  6. Default standard user has more rights than admin with full UAC.

    Set ConsentPromptBehaviorUser to 0 to block any admin tasks.

    Code: rem 0 - Elevate without prompting / 1 - Prompt for credentials on the secure desktop / 2 - Prompt for consent on the secure desktop / 3 - Prompt for credentials / 4 - Prompt for consent / 5 (Default) - Prompt for consent for non-Windows binaries reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d "1" /f rem 0 - Automatically deny elevation requests / 1 - Prompt for credentials on the secure desktop / 3 (Default) - Prompt for credentials reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorUser" /t REG_DWORD /d "0" /f rem 2 (Default) reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableFullTrustStartupTasks" /t REG_DWORD /d "0" /f rem Detect application installations and prompt for elevation / 1 - Enabled (default for home) / 0 - Disabled (default for enterprise) reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableInstallerDetection" /t REG_DWORD /d "1" /f rem Run all administrators in Admin Approval Mode / 0 - Disabled (UAC) / 1 - Enabled (UAC) reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t REG_DWORD /d "1" /f rem Only elevate UIAccess applications that are installed in secure locations / 0 - Disabled / 1 (Default) - Enabled reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableSecureUIAPaths" /t REG_DWORD /d "1" /f rem 0 (Default) = Disabled / 1 - Enabled reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableUwpStartupTasks" /t REG_DWORD /d "0" /f rem Allow UIAccess applications to prompt for elevation without using the secure desktop / 0 (Default) = Disabled / 1 - Enabled reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableUIADesktopToggle" /t REG_DWORD /d "0" /f rem 0 - Disabled / 1 - Enabled (Default) reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableVirtualization" /t REG_DWORD /d "0" /f rem Admin Approval Mode for the built-in Administrator account / 0 (Default) - Disabled / 1 - Enabled reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "FilterAdministratorToken" /t REG_DWORD /d "1" /f rem Allow UIAccess applications to prompt for elevation without using the secure desktop / 0 (Default) - Disabled / 1 - Enabled reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "PromptOnSecureDesktop" /t REG_DWORD /d "1" /f rem 1 - Enable command-line auditing reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\Audit" /v "ProcessCreationIncludeCmdLine_Enabled" /t REG_DWORD /d "1" /f[/quote]
     
    TairikuOkami, Nov 22, 2017
    #6
  7. dirkd Win User
    Thanks for the replies.

    I think ConsentPromptBehaviorUser is the only one I'm looking for, but it doesn't prompt each time. It grants access permanently.

    Setting it to 1 or 3 seems to do the same thing. 0 completely denies it.

    I want it to prompt for password each time, or at least after a reasonable period of time, or a reboot, etc.
     
    dirkd, Nov 24, 2017
    #7
  8. Bree New Member

    Standard user able to access Admin folders?

    You were explicitly told that this would happen. When you first tried to access the administrator's folder you saw...


    Standard user able to access Admin folders? [​IMG]


    ...and you were asked for the password after you clicked Continue.
     
  9. dirkd Win User
    Correct.

    I also asked "If this is the default, how can I set it to prompt for a password each time"?
     
    dirkd, Nov 24, 2017
    #9
  10. Bree New Member
    By granting yourself access to the administrator's folders you have added your account to the permissions for those folders. This is the way Windows has always worked, it was the same in Windows 7. You can't change the way Windows works on permissions.

    If you want to be asked for a password next time, you need to look at the Security Properties for that folder and remove your account from those granted access.
     
Thema:

Standard user able to access Admin folders?

Loading...
  1. Standard user able to access Admin folders? - Similar Threads - Standard user able

  2. Admin Rights switched to Standard User

    in User Accounts and Family Safety
    Admin Rights switched to Standard User: Win10 Pro Ver. 21H1 I recently changed my logon password and somehow (probably being careless) have disabled my Administrator Rights and switched the system to Standard User. Now of course the UAC is preventing me from opening apps, various sites, Power Shell (Admin) or...
  3. Admin Rights switched to Standard User

    in Windows 10 Support
    Admin Rights switched to Standard User: Win10 Pro Ver. 21H1 I recently changed my logon password and somehow (probably being careless) have disabled my Administrator Rights and switched the system to Standard User. Now of course the UAC is preventing me from opening apps, various sites, Power Shell (Admin) or...
  4. Standard users are able to change permissions in AppData folder

    in Windows 10 Customization
    Standard users are able to change permissions in AppData folder: Why is this possible, and how do I fix it?My goal was to block internet browsers from being accessible. I 'disabled inheritance' and removed the standard user, but within security settings they are able to still add their user name back and easily gain access...Can anyone...
  5. Standard User reset Admin user password!

    in AntiVirus, Firewalls and System Security
    Standard User reset Admin user password!: Hi, I have a Windows 10 machine with 2 local user accounts. One standard an one admin. The admin user has modified some settings about standard user like the login times using command line net user standardusername /times:M-S,09:00-17:00 But every time the standard user...
  6. Not able to change from standard user to Admin in windows 10

    in Windows 10 Customization
    Not able to change from standard user to Admin in windows 10: Hi All, I have changed the only user account from Administrator to Standard User from NETPLWIZ and now I am unable to change it back in Windows 10. I have checked the forum and tried the suggestions but nothing worked out for me. Request you to help me out. Regards,...
  7. About accounts: Admin/Standard user?

    in User Accounts and Family Safety
    About accounts: Admin/Standard user?: I just did a clean install of W10 for a friend. I havent set up a fresh install of 10 and am familar with the structure of accounts in W7> So. Clarify for me the "rights" of accounts(that i set up) in W10 Do they have adminstrator rights? Plan was to set up and Admin account...
  8. Admin Password with Standard User

    in Windows 10 Installation and Upgrade
    Admin Password with Standard User: I don't know the admin password and I have a standard account! Can someone please help me?????????????!!!!!!!! https://answers.microsoft.com/en-us/windows/forum/all/admin-password-with-standard-user/69ab0540-cab7-4199-b339-04cb7d920478
  9. ADMIN Permission to access USERS folder

    in Windows 10 Network and Sharing
    ADMIN Permission to access USERS folder: I am the Administrator of this computer but why won't windows 10 allow me to access users file folder? Getting confused. How do I get permission to open the USERS folder? By the way I'm using the NETWORK to access my other computers....
  10. How to restrict standard user access to folders

    in User Accounts and Family Safety
    How to restrict standard user access to folders: On my secondary hard drive, I have some folders that I don't want standard users to see or access. How can I go about doing this? Thanks! 17727

Users found this page by searching for:

  1. enablefulltruststartuptasks

    ,
  2. windows standard access to user folder

    ,
  3. enableuwpstartuptasks