• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Tanguy
    3. Posts
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 17
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by Tanguy

    • RE: Unable to join domain after deployement

      Hello again,

      After some tests its appears that le pc join the domain if somebody was logged before ( and the dot red became a green windows logo). Is there a solution to do the same thing without a first loging ?

      posted in FOG Problems
      T
      Tanguy
    • Unable to join domain after deployement

      Hello everyone,

      First, all apologizes for my english, I’m french.
      I have a problem, the client doesn’t joined domain after deployement.
      I don’t know if it is connected but I’ve got red dot on the left of the name client. I’ve tried to update le fog client on the image but i’ve got a error message : Unable to install CA certificate.
      If someone have an idea to fix the problem,

      Thank you in advance and have a great day

      posted in FOG Problems
      T
      Tanguy
    • RE: Red dot in Fog

      @george1421 Thanks a lot, it works !
      Have a nice day and thank you again !

      posted in FOG Problems
      T
      Tanguy
    • RE: Red dot in Fog

      @george1421 How to set correctly the search parameter, ?
      I’ve put this line :
      search 10.10.1.27

      posted in FOG Problems
      T
      Tanguy
    • RE: Red dot in Fog

      @george1421 Hello and thanks for your answer ! After activate another resolv.conf, the nslookup command works on the fog server. Could the problem come that the fog server and the clients are in the differents domains ?

      posted in FOG Problems
      T
      Tanguy
    • RE: Red dot in Fog

      @george1421 Hello and thanks for your response.

      The problem is i configured /etc/systemd/resolve.conf with the correct DNS but it doesn’t work, I can’t find the computer, except if i precise the dns adress in the nslookup command…

      posted in FOG Problems
      T
      Tanguy
    • Red dot in Fog

      Hello everyone !

      I have a fog server on fedora, and after deployment , Everything is ok in the column status, but after the domain is joined, there are red dots in the column status.
      The nslookup command can’t find the PCs, except if I precise the dns address.
      If someone have an idea…

      Thank you in advance and have a great day

      posted in FOG Problems
      T
      Tanguy
    • RE: CPU 100%

      @george1421 Thank you for your reply. Il will follow your tutorial and see if it’s better.

      posted in Linux Problems
      T
      Tanguy
    • RE: CPU 100%

      @george1421 We’ve got approximately 600 pc but we are on holiday this week…

      posted in Linux Problems
      T
      Tanguy
    • CPU 100%

      Hello everybody,

      We have a fog server on Debian 10 (it’s a Virtual Machine) and the CPU usage is always 100%. After a top command, we see that the php is a the guilty guy.
      How can we fix this problem ?

      Thanks a lot and have a nice day

      posted in Linux Problems
      T
      Tanguy
    • RE: Windows 10 changed the boot order !!

      @florent Bien sûr !
      Voici le code du reseal.cmd

      @echo off
      set curdir=%~dp0
      %~d0
      cd %curdir%
      set unattendfile=unattend.xml
      if NOT %1!==! set unattendfile=%1
      
      echo sysprep with %unattendfile%
      echo pres Ctrl+C to cancel, or any key to continue
      pause
      
      :: Step #12
      rem mkdir %windir%\Setup\Scripts
      rem echo del /Q /F %windir%\system32\sysprep\unattend.xml > %windir%\Setup\Scripts\SetupComplete.cmd
      rem echo del /Q /F %windir%\panther\unattend.xml >> %windir%\Setup\Scripts\SetupComplete.cmd
      
      :: Step #13
      sc stop "FOGservice"
      sc config "FOGService" start= disabled
      
      
      echo on
      copy "%unattendfile%" %windir%\system32\sysprep\unattend.xml
      cd %windir%\system32\sysprep
      %systemdrive%
      
      sysprep /generalize /oobe /quit /unattend:unattend.xml
      

      J’ai mis en commentaires tout le “Step #12” au cas où…

      Et j’ai mis dans C:\Windows\Setup\Scripts le script "SetupComplete.cmd suivant :

      powercfg -h off
      sc config FOGService start= auto
      sc start "FOGservice"
      
      
      
      
      del /Q /F c:\windows\system32\sysprep\unattend.xml
      del /Q /F c:\windows\panther\unattend.xml
      
      
      bcdedit /set {fwbootmgr} displayorder {bootmgr} /addlast
      
      shutdown -r -t 0
      
      

      Parfois le reseal.com lancé en tant qu’admin bloque, alors le lance un script powershell en tant qu’admin suivant :

      # List of Applications to Remove
      $AppPackages  = @()
      $AppPackages += 'microsoft.windowscommunicationsapps'
      $AppPackages += 'Microsoft.BingWeather'
      $AppPackages += 'Microsoft.DesktopAppInstaller'
      $AppPackages += 'Microsoft.Getstarted'
      $AppPackages += 'Microsoft.Windows.Photos'
      $AppPackages += 'Microsoft.WindowsCamera'
      $AppPackages += 'Microsoft.WindowsFeedbackHub'
      $AppPackages += 'Microsoft.WindowsStore'
      $AppPackages += 'Microsoft.XboxApp'
      $AppPackages += 'Microsoft.XboxIdentityProvider'
      $AppPackages += 'Microsoft.ZuneMusic'
      $AppPackages += 'Microsoft.StorePurchaseApp'
      $AppPackages += 'Microsoft.XboxOneSmartGlass'
      $AppPackages += 'Microsoft.GetHelp'
      $AppPackages += 'Microsoft.Microsoft3DViewer'
      $AppPackages += 'Microsoft.MicrosoftOfficeHub'
      $AppPackages += 'Microsoft.LanguageExperiencePackfr-fr'
      $AppPackages += 'Microsoft.ZuneVideo'
      
      foreach ($App In $AppPackages) {
          Write-Host "Removing Package : $App"
      	
          $Package = Get-AppxPackage | Where-Object {$_.Name -eq $App}
          If ($Package -ne $null) {Remove-AppxPackage -Package $Package.PackageFullName -ErrorAction SilentlyContinue}
      
          $Package = Get-AppxPackage -Allusers| Where-Object {$_.Name -eq $App}
          If ($Package -ne $null) {Remove-AppxPackage -Package $Package.PackageFullName -ErrorAction SilentlyContinue}
      	
          $ProvisionedPackage = Get-AppxProvisionedPackage -Online | Where-Object {$_.DisplayName -eq $App}
          If ($ProvisionedPackage -ne $null) {Remove-AppxProvisionedPackage -Online -PackageName $ProvisionedPackage.PackageName -ErrorAction SilentlyContinue}
      
      }
      

      Je n’ai pas poussé loin les tests, mais cela à l’air de fonctionner. N’hésite pas si tu as des questions !

      posted in Windows Problems
      T
      Tanguy
    • RE: Windows 10 changed the boot order !!

      @florent Bonjour,

      J’ai enfin réussi à changer l’ordre de boot en passant par bcdedit dans le SetupComplete. Cela me semble une méthode de “bourrin” mais après quelques test, cela à l’air de fonctionner.
      Merci encore pour votre aide et bonne journée

      posted in Windows Problems
      T
      Tanguy
    • RE: Windows 10 changed the boot order !!

      @florent Merci beaucoup, je vais creuser du côté du snapin. Comme je débute sur FOG, je tâtonne un peu…
      Bonne journée

      posted in Windows Problems
      T
      Tanguy
    • RE: Windows 10 changed the boot order !!

      @florent Bonjour Florent ! Merci pour votre réponse. Il se trouve que nous n’avons pas que des DELL, et que le CCTK ne fonctionne pas sur tous les DELL ( nous avons aussi des Vostro). J’ai essayé un snapin powerShell mais celui-ci ne semble pas fonctionner non plus. Au vu du nombre de postes, passer sur chacun pour remettre à la main l’ordre de boot ne m’emballe pas beaucoup !
      Il y a-t-il une procédure particulière pour que mon snapin s’execute ?

      Merci d’avance !

      posted in Windows Problems
      T
      Tanguy
    • RE: Windows 10 changed the boot order !!

      @george1421 Thanks for your reply ! I work in a school with a lot of computers, and change the boot order for each is time consuming !
      If I can’t prevent this, maybe I can automate after deploying with a script ?

      posted in Windows Problems
      T
      Tanguy
    • Windows 10 changed the boot order !!

      Hello everyone !

      I searched in the forum but I don’t find a solution… Well, after the deployement, Windows 10 changed the boot order (UEFI) to put windows manager at the top.
      How can I prevent this ?

      Thanks !

      posted in Windows Problems
      T
      Tanguy
    • 1 / 1