• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. lebrun78
    3. Posts
    L
    • Profile
    • Following 1
    • Followers 1
    • Topics 54
    • Posts 315
    • Best 11
    • Controversial 0
    • Groups 0

    Posts made by lebrun78

    • RE: Move partitions on GPT layouts - need people to test

      @sebastian-roth
      Yes Youare right.
      I focused on the "corrupted size vs. and did not see previous message.
      A scan disk on the master and it works.

      Thanks.

      posted in General
      L
      lebrun78
    • RE: Move partitions on GPT layouts - need people to test

      @sebastian-roth
      Hello Sebastian,
      Tried with your proposed modifications on a 1.5.9.63 testing server.
      I have got this error with an existing image on the server
      1616756682935.jpg

      Remove the image files on the server, it worked.

      Arnaud

      posted in General
      L
      lebrun78
    • RE: Is it possible to remove the FOG Quick image password?

      @sebastian-roth
      It’s still working for me.

      posted in FOG Problems
      L
      lebrun78
    • RE: snapin script running on a samba share

      @sebastian-roth

      Here is the content of the fog_snapin_inst.ps1 script which mounts the share and which launches either a batch script or a powershell script

      param (
          [String] $programme
      )
      $user = "fog"
      $pwd = "EncriptpasswordwBiADEAZA="
      
      $serveur = "\\wolala.univ-rennes1.fr\snapins$"
      [Byte[]] $key = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
      $password = ConvertTo-SecureString -key $key -string $pwd
      $credential = New-Object -TypeName system.management.Automation.PSCredential -ArgumentList $user, $password
      
      if (!(Test-Path -Path Q:)){
          $net = new-object -ComObject WScript.Network
          $net.MapNetworkDrive("p:", $serveur, $false, $credential.GetNetworkCredential().UserName,$credential.GetNetworkCredential().password)
         
      }
      
      #lorsque l'on lance un script powershell, si il y avait des espaces dans le nom, cela ne passait pas 
      #lorsque l'on faisait un start-process et ce nom en argument. Donc on utilise plutot le nom court
      $prog_court = (New-Object -ComObject Scripting.FileSystemObject).GetFile($programme).ShortPath
      
      					
          write-host "$(hostname):Dossier de l'installer $($dossier_installer)"
      	write-host ""
      	write-host "$(hostname):lancement de $($programme)"
          write-host "$(hostname):lancement de $($prog_court)"
      
      #start-process -FilePath $programme -wait -NoNewWindow
      $dossier_installer = $((get-item -path $programme).DirectoryName)
      
      if (!(Test-Path -Path "$dossier_installer\logs_fog_install")){New-Item -ItemType directory -Path "$dossier_installer\logs_fog_install"}
      $extension = (get-item -path $programme).Extension
      if ($extension -eq ".bat" -or $extension -eq ".cmd") {
      	write-host "$env:COMPUTERNAME:C'est un script bat"
      	start-process -FilePath $prog_court -wait -NoNewWindow -RedirectStandardOutput ${dossier_installer}\logs_fog_install\${env:COMPUTERNAME}_log.txt -RedirectStandardError ${dossier_installer}\logs_fog_install\${env:COMPUTERNAME}_error.txt
          
      }
      if ($extension -eq ".ps1") {
      	write-host "$env:COMPUTERNAME:C'est un script powershell"
      	$policy = Get-ExecutionPolicy
      	Set-ExecutionPolicy AllSigned
      	start-process -FilePath PowerShell -Arg $prog_court -wait -NoNewWindow -RedirectStandardOutput ${dossier_installer}\logs_fog_install\${env:COMPUTERNAME}_log.txt -RedirectStandardError ${dossier_installer}\logs_fog_install\${env:COMPUTERNAME}_error.txt
          Set-ExecutionPolicy $policy
      }
      
      
      $net.RemoveNetworkDrive("p:")
      Remove-SmbMapping -RemotePath $serveur -Force
      
      
      # SIG # Begin signature block
      # MIIECAYJKoZIhvcNAQcCoIID+TCCA/UCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
      

      So I get this Snapin Command read-only:

      powershell.exe -ExecutionPolicy Bypass -NoProfile -File fog_snapin_inst.ps1 -programme P:\officepro2010\inst_office2010.bat
      
      posted in Windows Problems
      L
      lebrun78
    • snapin script running on a samba share

      Hello
      Do you have any suggestions or examples of snapins running powershell scripts for installing programs hosted on an authenticated share?
      I am unable to do an authenticated samba mount with the system account used by the fog client.

      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      No actually, the share is only accessible to administrators.
      I use a powershell script which mount with a samba share account the share and launch the installer.
      but the script seems not working when run as system.
      I’m investigating

      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      Yes, I now unterdstand the problem, fog client is running with local\install account, not system.

      We use install account for a long time to access samba share with snapin scripts. Have you example to access samba share with client running under system account ?

      I have No error 2691 running fogservice with system account

      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      (currentIP.Intersect(targetIP).Any()) = true

      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      I 've just run the script as a domain-admin.
      domain as value ur.local (the ad domain name)
      targetIP and targetIP contain the same address (the AD controler addresses )

      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      Yes I ran this script as administrator. But administrator is not member of the AD domain.
      I tried disabling IPv6.

      [admin07]: PS C:\Users\Administrateur\Documents>  $o = [System.Net.Dns]::GetHostAddresses("admin07")
      [admin07]: PS C:\Users\Administrateur\Documents> $o
      
      
      Address            :
      AddressFamily      : InterNetworkV6
      ScopeId            : 0
      IsIPv6Multicast    : False
      IsIPv6LinkLocal    : False
      IsIPv6SiteLocal    : False
      IsIPv6Teredo       : False
      IsIPv4MappedToIPv6 : False
      IPAddressToString  : ::1
      
      Address            : xxxx724
      AddressFamily      : InterNetwork
      ScopeId            :
      IsIPv6Multicast    : False
      IsIPv6LinkLocal    : False
      IsIPv6SiteLocal    : False
      IsIPv6Teredo       : False
      IsIPv4MappedToIPv6 : False
      IPAddressToString  : *.*.6.250
      

      And with IPV6 disabled, I have error 2691

      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      Hello, thank you for your answer
      Here is the result of this C# script:

      // Main Method 
      using System;
      using System.Collections.Generic;
      using System.DirectoryServices.ActiveDirectory;
      using System.Linq;
      using System.Net;
      using System.Runtime.InteropServices;
      //using Zazzles;
      class test
      {
          static public void Main(String[] args)
          {
              string idealDomain = "ur.local";
              Console.WriteLine("Main Method");
              var domain = Domain.GetComputerDomain();
              Console.WriteLine(domain);
              var currentIP = Dns.GetHostAddresses(domain.Name);
              Console.WriteLine(currentIP);
              var targetIP = Dns.GetHostAddresses(idealDomain);
              Console.WriteLine(targetIP);
              var result = currentIP.Intersect(targetIP).Any();
              Console.WriteLine(result);
          }
      }
      

      Exception levée : ‘System.Security.Authentication.AuthenticationException’ dans System.DirectoryServices.dll
      Une exception non gérée du type ‘System.Security.Authentication.AuthenticationException’ s’est produite dans System.DirectoryServices.dll
      User or password incorrect

      Which user is used in the script ?

      [admin07]: PS C:\Users\Administrateur\Documents>  $o = [System.Net.Dns]::GetHostAddresses("admin07")
      [admin07]: PS C:\Users\Administrateur\Documents> $o
      
      
      Address            :
      AddressFamily      : InterNetworkV6
      ScopeId            : 5
      IsIPv6Multicast    : False
      IsIPv6LinkLocal    : True
      IsIPv6SiteLocal    : False
      IsIPv6Teredo       : False
      IsIPv4MappedToIPv6 : False
      IPAddressToString  : fe80::7164:xxxxxxxx:7d52%5
      
      Address            : xxxx724
      AddressFamily      : InterNetwork
      ScopeId            :
      IsIPv6Multicast    : False
      IsIPv6LinkLocal    : False
      IsIPv6SiteLocal    : False
      IsIPv6Teredo       : False
      IsIPv4MappedToIPv6 : False
      IPAddressToString  : xxx.xx.6.250
      
      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      How could I create a small script in C to test this function ?
      Have you a procedure ?
      i used to use powershell

      private bool IsJoinedToDomain(string idealDomain)
            {
                try
                {
                    using (var domain = Domain.GetComputerDomain())
                    {
                        var currentIP = Dns.GetHostAddresses(domain.Name);
                        var targetIP = Dns.GetHostAddresses(idealDomain);
      
                        return (currentIP.Intersect(targetIP).Any());
                    }
                }
                catch (Exception)
                {
                }
      
                return false;
            }
      
      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      (Get-WmiObject Win32_ComputerSystem).Name
      win10-3
      (Get-WmiObject Win32_ComputerSystem).Domain
      ur.local

      How the client check the host is registred in the AD ?
      What could I change to avert this DNS conflict ?

      posted in Windows Problems
      L
      lebrun78
    • RE: Error 2691 add to domain ok

      @sebastian-roth
      No, the native windows domain of the university, but the dns (runninx over linux) is local to the tic department.

      posted in Windows Problems
      L
      lebrun78
    • Error 2691 add to domain ok

      Hello

      I have a problem with machines integrated into the ad.
      The machine is well integrated into the AD. No connection hassles for users.
      But the fog client gives me error 2691.

      Same error in the eventslogs

      Here are the sids for two machines deployed from the same image, they have a different sid.

      ad2735ef-eace-4a8f-ba31-ccfa0a8ed581-image.png

      Here are the fog client logs on the host:

      23/11/2020 08:53:27 Main Overriding exception handling
       23/11/2020 08:53:27 Main Bootstrapping Zazzles
       23/11/2020 08:53:27 Controller Initialize
       23/11/2020 08:53:27 Controller Start
      
       23/11/2020 08:53:27 Service Starting service
       23/11/2020 08:53:30 Bus Became bus server
       23/11/2020 08:53:30 Bus Emmiting message on channel: Status
       23/11/2020 08:53:30 Service Invoking early JIT compilation on needed binaries
      
      ------------------------------------------------------------------------------
      --------------------------------Authentication--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:30 Client-Info Version: 0.11.19
       23/11/2020 08:53:30 Client-Info OS:      Windows
       23/11/2020 08:53:30 Middleware::Authentication Waiting for authentication timeout to pass
       23/11/2020 08:53:30 Middleware::Communication Download: https://fogus/fog/management/other/ssl/srvpublic.crt
       23/11/2020 08:53:31 Data::RSA FOG Server CA cert found
       23/11/2020 08:53:31 Middleware::Authentication Cert OK
       23/11/2020 08:53:31 Middleware::Authentication No token found at C:\Program Files (x86)\FOG\token.dat, this is expected if the client has not authenticated before
       23/11/2020 08:53:31 Middleware::Authentication ERROR: Could not get security token
       23/11/2020 08:53:31 Middleware::Authentication ERROR: Le fichier 'C:\Program Files (x86)\FOG\token.dat' est introuvable.
       23/11/2020 08:53:31 Middleware::Communication POST URL: https://fogus/fog/management/index.php?sub=requestClientInfo&authorize&newService
       23/11/2020 08:53:31 Middleware::Response Success
       23/11/2020 08:53:31 Middleware::Authentication Authenticated
      
      
       23/11/2020 08:53:31 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&configure&newService&json
       23/11/2020 08:53:31 Middleware::Response Success
       23/11/2020 08:53:31 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&mac=52:54:00:CE:A1:DD&newService&json
       23/11/2020 08:53:31 Middleware::Response Success
       23/11/2020 08:53:31 Middleware::Communication URL: https://fogus/fog/service/getversion.php?clientver&newService&json
       23/11/2020 08:53:31 Middleware::Communication URL: https://fogus/fog/service/getversion.php?newService&json
      
       23/11/2020 08:53:31 Service Creating user agent cache
       23/11/2020 08:53:32 Middleware::Response Success
       23/11/2020 08:53:32 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 08:53:32 Middleware::Response Success
       23/11/2020 08:53:32 Service Initializing modules
      
      ------------------------------------------------------------------------------
      ---------------------------------ClientUpdater--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:34 Client-Info Client Version: 0.11.19
       23/11/2020 08:53:34 Client-Info Client OS:      Windows
       23/11/2020 08:53:34 Client-Info Server Version: 1.5.8
       23/11/2020 08:53:34 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------TaskReboot----------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:34 Client-Info Client Version: 0.11.19
       23/11/2020 08:53:34 Client-Info Client OS:      Windows
       23/11/2020 08:53:34 Client-Info Server Version: 1.5.8
       23/11/2020 08:53:34 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------HostnameChanger-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:34 Client-Info Client Version: 0.11.19
       23/11/2020 08:53:34 Client-Info Client OS:      Windows
       23/11/2020 08:53:34 Client-Info Server Version: 1.5.8
       23/11/2020 08:53:34 Middleware::Response Success
       23/11/2020 08:53:34 HostnameChanger Checking Hostname
       23/11/2020 08:53:34 HostnameChanger Renaming host to Win10-3-ad
       23/11/2020 08:53:34 HostnameChanger Joining domain
       23/11/2020 08:53:38 HostnameChanger Unknown Return Code:  1722
       23/11/2020 08:53:39 Power Creating shutdown command in 60 seconds
       23/11/2020 08:53:39 Bus Emmiting message on channel: Power
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ---------------------------------SnapinClient---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:39 Client-Info Client Version: 0.11.19
       23/11/2020 08:53:39 Client-Info Client OS:      Windows
       23/11/2020 08:53:39 Client-Info Server Version: 1.5.8
       23/11/2020 08:53:39 Middleware::Response Module is disabled on the host
       23/11/2020 08:53:39 SnapinClient A power operation is pending, aborting module
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PrinterManager--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:39 Client-Info Client Version: 0.11.19
       23/11/2020 08:53:39 Client-Info Client OS:      Windows
       23/11/2020 08:53:39 Client-Info Server Version: 1.5.8
       23/11/2020 08:53:39 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 08:53:39 PrinterManager A power operation is pending, aborting module
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PowerManagement-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:39 Client-Info Client Version: 0.11.19
       23/11/2020 08:53:39 Client-Info Client OS:      Windows
       23/11/2020 08:53:39 Client-Info Server Version: 1.5.8
       23/11/2020 08:53:39 Middleware::Response Success
       23/11/2020 08:53:39 PowerManagement Calculating tasks to unschedule
       23/11/2020 08:53:39 PowerManagement Calculating tasks to schedule
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------UserTracker---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:53:39 Client-Info Client Version: 0.11.19
       23/11/2020 08:53:39 Client-Info Client OS:      Windows
       23/11/2020 08:53:39 Client-Info Server Version: 1.5.8
       23/11/2020 08:53:39 Middleware::Response Success
       23/11/2020 08:53:39 Middleware::Communication URL: https://fogus/fog/service/usertracking.report.php?action=login&user=DESKTOP-IFL3FDT\defaultuser0&mac=52:54:00:CE:A1:DD&newService&json
      ------------------------------------------------------------------------------
      
       23/11/2020 08:53:39 Service Sleeping for 68 seconds
       23/11/2020 08:54:39 Power Creating shutdown request
       23/11/2020 08:54:39 Power Parameters: /r /c "Universite Rennes 1 needs to rename your computer" /t 0
       23/11/2020 08:54:39 Bus Emmiting message on channel: Power
       23/11/2020 08:54:39 Power Attempt 1/6 to shutdown computer
       23/11/2020 08:54:39 Power --> API call returned 1, will re-attempt in 5 minutes
       23/11/2020 08:54:47 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&configure&newService&json
       23/11/2020 08:54:47 Middleware::Response Success
       23/11/2020 08:54:47 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&mac=52:54:00:CE:A1:DD&newService&json
       23/11/2020 08:54:47 Middleware::Response Success
       23/11/2020 08:54:47 Middleware::Communication URL: https://fogus/fog/service/getversion.php?clientver&newService&json
       23/11/2020 08:54:47 Middleware::Communication URL: https://fogus/fog/service/getversion.php?newService&json
      
       23/11/2020 08:54:47 Service Creating user agent cache
       23/11/2020 08:54:47 Middleware::Response Success
       23/11/2020 08:54:47 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 08:54:47 Middleware::Response Success
      
      ------------------------------------------------------------------------------
      ---------------------------------ClientUpdater--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:54:47 Client-Info Client Version: 0.11.19
       23/11/2020 08:54:47 Client-Info Client OS:      Windows
       23/11/2020 08:54:47 Client-Info Server Version: 1.5.8
       23/11/2020 08:54:47 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------TaskReboot----------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:54:47 Client-Info Client Version: 0.11.19
       23/11/2020 08:54:47 Client-Info Client OS:      Windows
       23/11/2020 08:54:47 Client-Info Server Version: 1.5.8
       23/11/2020 08:54:47 Middleware::Response Success
       23/11/2020 08:54:47 TaskReboot A power operation is pending, aborting module
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------HostnameChanger-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:54:47 Client-Info Client Version: 0.11.19
       23/11/2020 08:54:47 Client-Info Client OS:      Windows
       23/11/2020 08:54:47 Client-Info Server Version: 1.5.8
       23/11/2020 08:54:47 Middleware::Response Success
       23/11/2020 08:54:47 HostnameChanger A power operation is pending, aborting module
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ---------------------------------SnapinClient---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:54:47 Client-Info Client Version: 0.11.19
       23/11/2020 08:54:47 Client-Info Client OS:      Windows
       23/11/2020 08:54:47 Client-Info Server Version: 1.5.8
       23/11/2020 08:54:47 Middleware::Response Module is disabled on the host
       23/11/2020 08:54:47 SnapinClient A power operation is pending, aborting module
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PrinterManager--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:54:47 Client-Info Client Version: 0.11.19
       23/11/2020 08:54:47 Client-Info Client OS:      Windows
       23/11/2020 08:54:47 Client-Info Server Version: 1.5.8
       23/11/2020 08:54:47 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 08:54:47 PrinterManager A power operation is pending, aborting module
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PowerManagement-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:54:47 Client-Info Client Version: 0.11.19
       23/11/2020 08:54:47 Client-Info Client OS:      Windows
       23/11/2020 08:54:47 Client-Info Server Version: 1.5.8
       23/11/2020 08:54:47 Middleware::Response Success
       23/11/2020 08:54:47 PowerManagement Calculating tasks to unschedule
       23/11/2020 08:54:47 PowerManagement Calculating tasks to schedule
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------UserTracker---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:54:47 Client-Info Client Version: 0.11.19
       23/11/2020 08:54:47 Client-Info Client OS:      Windows
       23/11/2020 08:54:47 Client-Info Server Version: 1.5.8
       23/11/2020 08:54:47 Middleware::Response Success
       23/11/2020 08:54:47 Middleware::Communication URL: https://fogus/fog/service/usertracking.report.php?action=logout&user=DESKTOP-IFL3FDT\defaultuser0&mac=52:54:00:CE:A1:DD&newService&json
      ------------------------------------------------------------------------------
      
       23/11/2020 08:54:48 Service Sleeping for 73 seconds
       23/11/2020 08:55:30 Main Overriding exception handling
       23/11/2020 08:55:31 Main Bootstrapping Zazzles
       23/11/2020 08:55:31 Controller Initialize
       23/11/2020 08:55:31 Controller Start
      
       23/11/2020 08:55:31 Service Starting service
       23/11/2020 08:55:40 Bus Became bus server
       23/11/2020 08:55:40 Bus Emmiting message on channel: Status
       23/11/2020 08:55:40 Service Invoking early JIT compilation on needed binaries
      
      ------------------------------------------------------------------------------
      --------------------------------Authentication--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:40 Client-Info Version: 0.11.19
       23/11/2020 08:55:40 Client-Info OS:      Windows
       23/11/2020 08:55:40 Middleware::Authentication Waiting for authentication timeout to pass
       23/11/2020 08:55:40 Middleware::Communication Download: https://fogus/fog/management/other/ssl/srvpublic.crt
       23/11/2020 08:55:41 Data::RSA FOG Server CA cert found
       23/11/2020 08:55:41 Middleware::Authentication Cert OK
       23/11/2020 08:55:41 Middleware::Communication POST URL: https://fogus/fog/management/index.php?sub=requestClientInfo&authorize&newService
       23/11/2020 08:55:41 Middleware::Response Success
       23/11/2020 08:55:41 Middleware::Authentication Authenticated
      
      
       23/11/2020 08:55:41 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&configure&newService&json
       23/11/2020 08:55:41 Middleware::Response Success
       23/11/2020 08:55:41 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&mac=52:54:00:CE:A1:DD&newService&json
       23/11/2020 08:55:41 Middleware::Response Success
       23/11/2020 08:55:41 Middleware::Communication URL: https://fogus/fog/service/getversion.php?clientver&newService&json
       23/11/2020 08:55:41 Middleware::Communication URL: https://fogus/fog/service/getversion.php?newService&json
      
       23/11/2020 08:55:41 Service Creating user agent cache
       23/11/2020 08:55:41 Middleware::Response Success
       23/11/2020 08:55:41 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 08:55:41 Middleware::Response Success
       23/11/2020 08:55:41 Service Initializing modules
      
      ------------------------------------------------------------------------------
      ---------------------------------ClientUpdater--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:42 Client-Info Client Version: 0.11.19
       23/11/2020 08:55:42 Client-Info Client OS:      Windows
       23/11/2020 08:55:42 Client-Info Server Version: 1.5.8
       23/11/2020 08:55:42 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------TaskReboot----------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:42 Client-Info Client Version: 0.11.19
       23/11/2020 08:55:42 Client-Info Client OS:      Windows
       23/11/2020 08:55:42 Client-Info Server Version: 1.5.8
       23/11/2020 08:55:42 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------HostnameChanger-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:42 Client-Info Client Version: 0.11.19
       23/11/2020 08:55:42 Client-Info Client OS:      Windows
       23/11/2020 08:55:42 Client-Info Server Version: 1.5.8
       23/11/2020 08:55:42 Middleware::Response Success
       23/11/2020 08:55:42 HostnameChanger Checking Hostname
       23/11/2020 08:55:42 HostnameChanger Hostname is correct
       23/11/2020 08:55:42 HostnameChanger Attempting to join domain
       23/11/2020 08:55:46 HostnameChanger Unknown Return Code:  1722
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ---------------------------------SnapinClient---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:46 Client-Info Client Version: 0.11.19
       23/11/2020 08:55:46 Client-Info Client OS:      Windows
       23/11/2020 08:55:46 Client-Info Server Version: 1.5.8
       23/11/2020 08:55:46 Middleware::Response Module is disabled on the host
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PrinterManager--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:46 Client-Info Client Version: 0.11.19
       23/11/2020 08:55:46 Client-Info Client OS:      Windows
       23/11/2020 08:55:46 Client-Info Server Version: 1.5.8
       23/11/2020 08:55:46 Middleware::Response Module is disabled globally on the FOG server
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PowerManagement-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:46 Client-Info Client Version: 0.11.19
       23/11/2020 08:55:46 Client-Info Client OS:      Windows
       23/11/2020 08:55:46 Client-Info Server Version: 1.5.8
       23/11/2020 08:55:46 Middleware::Response Success
       23/11/2020 08:55:46 PowerManagement Calculating tasks to unschedule
       23/11/2020 08:55:46 PowerManagement Calculating tasks to schedule
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------UserTracker---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:55:46 Client-Info Client Version: 0.11.19
       23/11/2020 08:55:46 Client-Info Client OS:      Windows
       23/11/2020 08:55:46 Client-Info Server Version: 1.5.8
       23/11/2020 08:55:46 Middleware::Response Success
      ------------------------------------------------------------------------------
      
       23/11/2020 08:55:46 Service Sleeping for 114 seconds
       23/11/2020 08:57:40 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&configure&newService&json
       23/11/2020 08:57:40 Middleware::Response Success
       23/11/2020 08:57:40 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&mac=52:54:00:CE:A1:DD&newService&json
       23/11/2020 08:57:40 Middleware::Response Success
       23/11/2020 08:57:40 Middleware::Communication URL: https://fogus/fog/service/getversion.php?clientver&newService&json
       23/11/2020 08:57:40 Middleware::Communication URL: https://fogus/fog/service/getversion.php?newService&json
      
       23/11/2020 08:57:40 Service Creating user agent cache
       23/11/2020 08:57:40 Middleware::Response Success
       23/11/2020 08:57:40 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 08:57:40 Middleware::Response Success
      
      ------------------------------------------------------------------------------
      ---------------------------------ClientUpdater--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:57:40 Client-Info Client Version: 0.11.19
       23/11/2020 08:57:40 Client-Info Client OS:      Windows
       23/11/2020 08:57:40 Client-Info Server Version: 1.5.8
       23/11/2020 08:57:40 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------TaskReboot----------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:57:40 Client-Info Client Version: 0.11.19
       23/11/2020 08:57:40 Client-Info Client OS:      Windows
       23/11/2020 08:57:40 Client-Info Server Version: 1.5.8
       23/11/2020 08:57:40 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------HostnameChanger-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:57:40 Client-Info Client Version: 0.11.19
       23/11/2020 08:57:40 Client-Info Client OS:      Windows
       23/11/2020 08:57:40 Client-Info Server Version: 1.5.8
       23/11/2020 08:57:40 Middleware::Response Success
       23/11/2020 08:57:40 HostnameChanger Checking Hostname
       23/11/2020 08:57:40 HostnameChanger Hostname is correct
       23/11/2020 08:57:40 HostnameChanger Attempting to join domain
       23/11/2020 08:57:44 HostnameChanger Success, code =  0
       23/11/2020 08:57:44 Power Creating shutdown request
       23/11/2020 08:57:44 Power Parameters: /r /c "Host joined to Active Directory, restart required" /t 0
       23/11/2020 08:57:44 Bus Emmiting message on channel: Power
       23/11/2020 08:57:44 Power Attempt 1/6 to shutdown computer
       23/11/2020 08:57:44 Power --> API call returned 1, will re-attempt in 5 minutes
       23/11/2020 08:58:41 Main Overriding exception handling
       23/11/2020 08:58:42 Main Bootstrapping Zazzles
       23/11/2020 08:58:42 Controller Initialize
       23/11/2020 08:58:42 Controller Start
      
       23/11/2020 08:58:42 Service Starting service
       23/11/2020 08:58:49 Bus Became bus server
       23/11/2020 08:58:49 Bus Emmiting message on channel: Status
       23/11/2020 08:58:49 Service Invoking early JIT compilation on needed binaries
      
      ------------------------------------------------------------------------------
      --------------------------------Authentication--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:49 Client-Info Version: 0.11.19
       23/11/2020 08:58:49 Client-Info OS:      Windows
       23/11/2020 08:58:49 Middleware::Authentication Waiting for authentication timeout to pass
       23/11/2020 08:58:49 Middleware::Communication Download: https://fogus/fog/management/other/ssl/srvpublic.crt
       23/11/2020 08:58:50 Data::RSA FOG Server CA cert found
       23/11/2020 08:58:50 Middleware::Authentication Cert OK
       23/11/2020 08:58:50 Middleware::Communication POST URL: https://fogus/fog/management/index.php?sub=requestClientInfo&authorize&newService
       23/11/2020 08:58:50 Middleware::Response Success
       23/11/2020 08:58:50 Middleware::Authentication Authenticated
      
      
       23/11/2020 08:58:50 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&configure&newService&json
       23/11/2020 08:58:50 Middleware::Response Success
       23/11/2020 08:58:50 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&mac=52:54:00:CE:A1:DD&newService&json
       23/11/2020 08:58:50 Middleware::Response Success
       23/11/2020 08:58:50 Middleware::Communication URL: https://fogus/fog/service/getversion.php?clientver&newService&json
       23/11/2020 08:58:50 Middleware::Communication URL: https://fogus/fog/service/getversion.php?newService&json
      
       23/11/2020 08:58:50 Service Creating user agent cache
       23/11/2020 08:58:50 Middleware::Response Success
       23/11/2020 08:58:50 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 08:58:50 Middleware::Response Success
       23/11/2020 08:58:50 Service Initializing modules
      
      ------------------------------------------------------------------------------
      ---------------------------------ClientUpdater--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:51 Client-Info Client Version: 0.11.19
       23/11/2020 08:58:51 Client-Info Client OS:      Windows
       23/11/2020 08:58:51 Client-Info Server Version: 1.5.8
       23/11/2020 08:58:51 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------TaskReboot----------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:51 Client-Info Client Version: 0.11.19
       23/11/2020 08:58:51 Client-Info Client OS:      Windows
       23/11/2020 08:58:51 Client-Info Server Version: 1.5.8
       23/11/2020 08:58:51 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------HostnameChanger-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:51 Client-Info Client Version: 0.11.19
       23/11/2020 08:58:51 Client-Info Client OS:      Windows
       23/11/2020 08:58:51 Client-Info Server Version: 1.5.8
       23/11/2020 08:58:51 Middleware::Response Success
       23/11/2020 08:58:51 HostnameChanger Checking Hostname
       23/11/2020 08:58:51 HostnameChanger Hostname is correct
       23/11/2020 08:58:51 HostnameChanger Attempting to join domain
       23/11/2020 08:58:51 HostnameChanger The machine is already joined to the domain, code =  2691
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ---------------------------------SnapinClient---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:51 Client-Info Client Version: 0.11.19
       23/11/2020 08:58:51 Client-Info Client OS:      Windows
       23/11/2020 08:58:51 Client-Info Server Version: 1.5.8
       23/11/2020 08:58:51 Middleware::Response Module is disabled on the host
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PrinterManager--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:51 Client-Info Client Version: 0.11.19
       23/11/2020 08:58:51 Client-Info Client OS:      Windows
       23/11/2020 08:58:51 Client-Info Server Version: 1.5.8
       23/11/2020 08:58:51 Middleware::Response Module is disabled globally on the FOG server
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------PowerManagement-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:51 Client-Info Client Version: 0.11.19
       23/11/2020 08:58:51 Client-Info Client OS:      Windows
       23/11/2020 08:58:51 Client-Info Server Version: 1.5.8
       23/11/2020 08:58:51 Middleware::Response Success
       23/11/2020 08:58:51 PowerManagement Calculating tasks to unschedule
       23/11/2020 08:58:51 PowerManagement Calculating tasks to schedule
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------UserTracker---------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 08:58:51 Client-Info Client Version: 0.11.19
       23/11/2020 08:58:51 Client-Info Client OS:      Windows
       23/11/2020 08:58:51 Client-Info Server Version: 1.5.8
       23/11/2020 08:58:51 Middleware::Response Success
      ------------------------------------------------------------------------------
      
       23/11/2020 08:58:51 Service Sleeping for 118 seconds
       23/11/2020 09:00:49 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&configure&newService&json
       23/11/2020 09:00:49 Middleware::Response Success
       23/11/2020 09:00:49 Middleware::Communication URL: https://fogus/fog/management/index.php?sub=requestClientInfo&mac=52:54:00:CE:A1:DD&newService&json
       23/11/2020 09:00:49 Middleware::Response Success
       23/11/2020 09:00:49 Middleware::Communication URL: https://fogus/fog/service/getversion.php?clientver&newService&json
       23/11/2020 09:00:49 Middleware::Communication URL: https://fogus/fog/service/getversion.php?newService&json
      
       23/11/2020 09:00:49 Service Creating user agent cache
       23/11/2020 09:00:49 Middleware::Response Success
       23/11/2020 09:00:49 Middleware::Response Module is disabled globally on the FOG server
       23/11/2020 09:00:49 Middleware::Response Success
      
      ------------------------------------------------------------------------------
      ---------------------------------ClientUpdater--------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 09:00:49 Client-Info Client Version: 0.11.19
       23/11/2020 09:00:49 Client-Info Client OS:      Windows
       23/11/2020 09:00:49 Client-Info Server Version: 1.5.8
       23/11/2020 09:00:49 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      ----------------------------------TaskReboot----------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 09:00:49 Client-Info Client Version: 0.11.19
       23/11/2020 09:00:49 Client-Info Client OS:      Windows
       23/11/2020 09:00:49 Client-Info Server Version: 1.5.8
       23/11/2020 09:00:49 Middleware::Response Success
      ------------------------------------------------------------------------------
      
      
      ------------------------------------------------------------------------------
      --------------------------------HostnameChanger-------------------------------
      ------------------------------------------------------------------------------
       23/11/2020 09:00:49 Client-Info Client Version: 0.11.19
       23/11/2020 09:00:49 Client-Info Client OS:      Windows
       23/11/2020 09:00:49 Client-Info Server Version: 1.5.8
       23/11/2020 09:00:49 Middleware::Response Success
       23/11/2020 09:00:49 HostnameChanger Checking Hostname
       23/11/2020 09:00:49 HostnameChanger Hostname is correct
       23/11/2020 09:00:49 HostnameChanger Attempting to join domain
       23/11/2020 09:00:50 HostnameChanger The machine is already joined to the domain, code =  2691
      ------------------------------------------------------------------------------
      
      posted in Windows Problems
      L
      lebrun78
    • RE: sysprep, add to domain, and fog client

      @tom-elliott
      Merci

      posted in Windows Problems
      L
      lebrun78
    • sysprep, add to domain, and fog client

      Hello
      I manage public works rooms, until now my Windows machines were not in the domain.
      With containment, I want to enable remote access to my machines, for this I have to put them in the domain.
      The fog client does the job very well, so I’d like to keep this functionality.
      The problem comes from sysprep, apparently incompatible with the client installed and activated.
      I saw in the “Windows 10 Pro OEM Sysprep & Imaging” tutorial that you had to deactivate the client before launching sysprep.

      How to activate the client once the oobe has been executed ?

      Arnaud

      posted in Windows Problems
      L
      lebrun78
    • RE: Windows 10 Pro OEM Sysprep & Imaging

      @george1421 said in Windows 10 Pro OEM Sysprep & Imaging:

      Hello
      I don’t understand the articulation between sysprep and the activation / deactivation of the fog client.
      I have a deployment procedure via MDT which installs Windows, creates my users with their password and installs the applications. And ends up installing the fog client.
      I would like to do a sysprep. Do I just have to enable sysprep in MDT? Or do it by hand?
      How do I get the fog client to activate automatically when or after the image is deployed?

      posted in Tutorials
      L
      lebrun78
    • RE: Mysql groups table corrupted, other table problems ?

      @Tom-Elliott
      Ok, thank you for you answer.

      posted in FOG Problems
      L
      lebrun78
    • RE: Mysql groups table corrupted, other table problems ?

      I drop the database and restore it from dump file, I get the same error.

      posted in FOG Problems
      L
      lebrun78
    • 1 / 1