• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Windows 10 - 1703 autologon issue..

    Scheduled Pinned Locked Moved Solved
    Windows Problems
    3
    3
    2.8k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      dustindizzle11
      last edited by

      Server
      • FOG Version:
      • OS:
      Client
      • Service Version:
      • OS:
      Description

      This isn’t really related to FOG specifically, but I have seen that others have posted Windows 10 issues that have to do with imaging in here (so I thought I would try). I have made many Windows 10 images, and have never ran into the issue that I am currently experiencing with any of the past builds (1511, 1607). Basically the issue I am having is after deploying my image (Windows 10 - Version 1703), the administrator auto-logins indefinitely when it should only auto-login once. The auto-login option is in the unattend.xml file that is ran with sysprep. I have my auto-login count set to “1” currently, but it will re-login to the administrator profile multiple times which is causing issues. I haven’t changed anything in the way I do things, and it has always worked before (which leads me to believe this is a 1703 issue)… Let me know if you have any suggestions or if you too have been experiencing this. I haven’t been able to find a fix or even anyone experiencing the same issue. Thanks!

      Dustin Olson

      1 Reply Last reply Reply Quote 0
      • Wayne WorkmanW
        Wayne Workman
        last edited by

        This sounds like a windows issue to me, if I were in your shoes I’d post on technet or get in contact with Microsoft support.

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
        Daily Clean Installation Results:
        https://fogtesting.fogproject.us/
        FOG Reporting:
        https://fog-external-reporting-results.fogproject.us/

        1 Reply Last reply Reply Quote 0
        • AvaryanA
          Avaryan
          last edited by Avaryan

          Auto logon values are stored in the registry. Run the following PowerShell script to determine your current AutoLogon settings.

          $path = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon'
          
          $AutoAdminLogon = (Get-ItemProperty -Path $path).AutoAdminLogon
          $DefaultUserName = (Get-ItemProperty -Path $path).DefaultUserName
          $DefaultPassword = (Get-ItemProperty -Path $path).DefaultPassword
          $AutoLogonCount = (Get-ItemProperty -Path $path).AutoLogonCount
          
          Write-Host "Current AutoLogon Settings:" -ForegroundColor Yellow
          Write-Host "AutoAdminLogon: $AutoAdminLogon"
          Write-Host "DefaultUserName: $DefaultUserName"
          Write-Host "DefaultPassword: $DefaultPassword"
          Write-Host "AutoLogonCount: $AutoLogonCount"
          

          Output from my Windows 10 1607 laptop:

          Current AutoLogon Settings:
          AutoAdminLogon: 0
          DefaultUserName: Administrator
          DefaultPassword: 
          AutoLogonCount: 
          

          AutoAdminLogon has two states. If it’s 0, then it’s disabled. If it’s 1, then it’s turned on.
          AutoLogonCount indicates the remaining number of automatic logons. This number decreases by one every time the computer restarts, until it reaches 0. When it reaches 0, it changes AutoAdminLogon to 0 and clears the DefaultPassword. Setting this to any number below 0 will effectively set your computer to automatically logon forever.

          1 Reply Last reply Reply Quote 1
          • 1 / 1
          • First post
            Last post

          248

          Online

          12.0k

          Users

          17.3k

          Topics

          155.2k

          Posts
          Copyright © 2012-2024 FOG Project