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

Curious After Multicast

Scheduled Pinned Locked Moved
General
3
4
1.7k
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
    Dragnous
    last edited by Jul 9, 2014, 8:05 PM

    I was testing today because I finished my Win7 Image today and I ran sysprep and by itself it will finish and go through the Unattend no problem and auto log in and finish. However when I sysprep than upload the image to fog and after the multicast deployment it finish’s the unattend but does not log in and seems skip some of the steps

    1 Reply Last reply Reply Quote 0
    • R
      Robbie McHugh
      last edited by Jul 14, 2014, 10:56 AM

      In your unattend.xml do you have <autologon> set correctly and a logon count defined, also the <localaccounts> here you determine the user account that will log on and the number of times it automaticaly logs on, I have mine set for 2, first one for fog to rename host and the second to add to domain, the third boot cycle leaves the workstation at the logon screen prompting for the end users credentials, completely unattended with no user intervention required. Also what steps do you thin are being missed, sorry If I am misreading your problem here 🙂

      Should look something like this.

              <AutoLogon>
                  <Password>
                      <Value>[B]YOUR ENCRYPTED PASSWORD[/B]</Value>
                      <PlainText>false</PlainText>
                  </Password>
                  <Enabled>true</Enabled>
                  <LogonCount>2</LogonCount>
                  <Username>administrator</Username>
              </AutoLogon>
              <OOBE>
                  <HideEULAPage>true</HideEULAPage>
                  <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                  <NetworkLocation>Home</NetworkLocation>
                  <ProtectYourPC>1</ProtectYourPC>
              </OOBE>
              <UserAccounts>
                  <AdministratorPassword>
                      <Value>[B]YOUR ENCRYPTED PASSWORD[/B]</Value>
                      <PlainText>false</PlainText>
                  </AdministratorPassword>
                  <LocalAccounts>
                      <LocalAccount wcm:action="add">
                          <Password>
                              <Value>[B]YOUR ENCRYPTED PASSWORD[/B]</Value>
                              <PlainText>false</PlainText>
                          </Password>
                          <Description>Local Administrator</Description>
                          <DisplayName>Administrator</DisplayName>
                          <Group>Administrators</Group>
                          <Name>Administrator</Name>
                      </LocalAccount>
                  </LocalAccounts>
              </UserAccounts>
      

      Hope this helps

      Regards
      Robbie

      1 Reply Last reply Reply Quote 0
      • T
        Tom Elliott
        last edited by Jul 14, 2014, 11:01 AM

        If you don’t know how to get the Encoded password:

        Here’s how (useful if you wanted to script all of this):
        Autologin password is the password with a salt of “Password”

        So you can run:
        [code]base64 ‘mypasswordHerePassword’[/code] And the value that generates is what you would put in the <Value>YOUR ENCRYPTED PASSWORD</Value>

        For the AdministratorPassword stanza, the same is true but the salt is “AdministratorPassword” so:
        [code]base64 ‘mypasswordHereAdministratorPassword’[/code] And the value that generates is what you would put in the <Value>YOUR ENCRYPTED PASSWORD</Value>

        For the LocalAccount password is the same with salt as the AutoLogin with a salt of “Password”

        Hope this helps you all out.[/code]

        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! Get in contact with me (chat bubble in the top right corner) if you want to join in.

        Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

        Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

        1 Reply Last reply Reply Quote 0
        • R
          Robbie McHugh
          last edited by Jul 14, 2014, 11:14 AM

          [quote=“Tom Elliott, post: 32984, member: 7271”]If you don’t know how to get the Encoded password:

          Here’s how (useful if you wanted to script all of this):
          Autologin password is the password with a salt of “Password”

          So you can run:
          [code]base64 ‘mypasswordHerePassword’[/code] And the value that generates is what you would put in the <Value>YOUR ENCRYPTED PASSWORD</Value>

          For the AdministratorPassword stanza, the same is true but the salt is “AdministratorPassword” so:
          [code]base64 ‘mypasswordHereAdministratorPassword’[/code] And the value that generates is what you would put in the <Value>YOUR ENCRYPTED PASSWORD</Value>

          For the LocalAccount password is the same with salt as the AutoLogin with a salt of “Password”

          Hope this helps you all out.[/code][/quote]

          My bad orgot to mention something to that end, just bolded the <Value>YOUR ENCRYPTED PASSWORD</Value> to make it a little easier to read 🙂

          1 Reply Last reply Reply Quote 0
          • 1 / 1
          1 / 1
          • First post
            2/4
            Last post

          143

          Online

          12.0k

          Users

          17.3k

          Topics

          155.2k

          Posts
          Copyright © 2012-2024 FOG Project