• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. jmeyer
    3. Posts
    J
    • Profile
    • Following 0
    • Followers 1
    • Topics 56
    • Posts 286
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Working Tree

      As I work under VMWare, i’ll make a snapshot of my server and run the update.
      I missed bothering Thomas for bugs. 😉

      posted in Announcements
      J
      jmeyer
    • RE: FOG 1.4.0 Officially Released

      Great work !! :clap_tone1:

      posted in Announcements
      J
      jmeyer
    • RE: Reg Query with 0.11.11 client

      Tested using VBS.
      Result is the same and even

      objShell.ExpandEnvironmentStrings( "%COMPUTERNAME%" )
      

      return nothing.

      posted in FOG Problems
      J
      jmeyer
    • RE: Reg Query with 0.11.11 client

      I kind of make errors using “if defined ValueName ()” command.
      To confirm that “reg query” is the problem and that i don’t have problem of rights to create a directory, I have tested again with these two lines in my script.
      ( because I just realised that topic was a bit focusing on the wrong thing)

      if defined ValueName (echo %COMPUTERNAME%;%ValueValue% >> \\console\wsusclients$\logs.csv)
      echo %COMPUTERNAME%;%ValueValue% >> \\console\wsusclients$\logs.csv
      

      I have only one line in the logs.csv that is

      console;
      

      It means ValueName has no value.

      posted in FOG Problems
      J
      jmeyer
    • RE: Reg Query with 0.11.11 client

      @Joe-Schmitt That’s what I did. Hidden share with full rights for everybody.
      0_1490100750932_upload-8e7a1ce9-c6c8-4ae7-a79d-814c2cc89026

      0_1490100594460_upload-e0a2ee84-7e11-4ed0-9d89-9ad6bac85ecb

      posted in FOG Problems
      J
      jmeyer
    • RE: Max task for single snapin

      @Tom-Elliott

      Your command has changed something.
      Now, it runs “single snapin” only on the host that have it added (it means only 1).
      Is this normal ? lol

      edit : Found out, with Thomas, that I have to associate this snapin to each host to create a working task for every host using group single snapin task.

      posted in FOG Problems
      J
      jmeyer
    • RE: Reg Query with 0.11.11 client

      Yes it is. Here is the orginal code :

      @echo OFF
      
      setlocal ENABLEEXTENSIONS
      set KEY_NAME=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate
      set VALUE_NAME=SusClientId
      
      FOR /F "tokens=1-3" %%A IN ('REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul') DO (
          set ValueName=%%A
          set ValueType=%%B
          set ValueValue=%%C
      )
      
      if defined ValueName (
      	echo %COMPUTERNAME%;%ValueValue% >> \\console\wsusclients$\logs.csv
      )
      
      posted in FOG Problems
      J
      jmeyer
    • RE: Reg Query with 0.11.11 client
      ------------------------------------------------------------------------------
      ---------------------------------SnapinClient---------------------------------
      ------------------------------------------------------------------------------
       20/03/2017 16:38 Client-Info Client Version: 0.11.11
       20/03/2017 16:38 Client-Info Client OS:      Windows
       20/03/2017 16:38 Client-Info Server Version: 1.3.5
       20/03/2017 16:38 Middleware::Response Success
       20/03/2017 16:38 SnapinClient Snapin Found:
       20/03/2017 16:38 SnapinClient     ID: 272
       20/03/2017 16:38 SnapinClient     Name: WSUS ID
       20/03/2017 16:38 SnapinClient     Created: 2017-03-20 15:38:00
       20/03/2017 16:38 SnapinClient     Action: 
       20/03/2017 16:38 SnapinClient     Pack: False
       20/03/2017 16:38 SnapinClient     Hide: False
       20/03/2017 16:38 SnapinClient     Server: 
       20/03/2017 16:38 SnapinClient     TimeOut: 0
       20/03/2017 16:38 SnapinClient     RunWith: cmd.exe
       20/03/2017 16:38 SnapinClient     RunWithArgs: /c
       20/03/2017 16:38 SnapinClient     Args: 
       20/03/2017 16:38 SnapinClient     File: SusClientId.cmd
       20/03/2017 16:38 Middleware::Communication Download: http://fogserver/fog/service/snapins.file.php?mac=4C:CC:6A:32:E5:4B||00:00:00:00:00:00:00:E0&taskid=272
       20/03/2017 16:38 SnapinClient C:\Program Files (x86)\FOG\tmp\SusClientId.cmd
       20/03/2017 16:38 Bus {
        "self": true,
        "channel": "Notification",
        "data": "{\r\n  \"title\": \"Installation de WSUS ID\",\r\n  \"message\": \"Ne pas éteindre l'ordinateur tant que la tâche n'est pas terminée\"\r\n}"
      }
       20/03/2017 16:38 Bus Emmiting message on channel: Notification
       20/03/2017 16:38 SnapinClient Starting snapin...
       20/03/2017 16:38 SnapinClient Snapin finished
       20/03/2017 16:38 SnapinClient Return Code: 0
       20/03/2017 16:38 Bus {
        "self": true,
        "channel": "Notification",
        "data": "{\r\n  \"title\": \"WSUS ID installé\",\r\n  \"message\": \"L’installation est terminée, prêt pour l'utilisation\"\r\n}"
      }
       20/03/2017 16:38 Bus Emmiting message on channel: Notification
       20/03/2017 16:38 Middleware::Communication URL: http://fogserver/fog/service/snapins.checkin.php?taskid=272&exitcode=0&mac=4C:CC:6A:32:E5:4B||00:00:00:00:00:00:00:E0&newService&json
      ------------------------------------------------------------------------------
      
      posted in FOG Problems
      J
      jmeyer
    • Reg Query with 0.11.11 client
      Server
      • FOG Version: 1.3.5
      • OS: Ubuntu
      Client
      • Service Version: 0.11.11
      • OS: Windows 10 pro 64 bits
      Description

      I run a script that write on a network share and use reg query.
      It was working fine on 1.3.4 but since i have updated to 1.3.5, some commands doesn’t look to work.
      I can write in local (such as c:) but not using \aComputerName\Myshare even using a “net use”.
      Reg query doesn’t return anything neither.

      These are the test I have done writing localy

      echo 1. blablabla >> C:\logs.txt
      REG QUERY %KEY_NAME% /v %VALUE_NAME% >> C:\logs.txt
      echo 3. %KEY_NAME% >> C:\logs.txt
      echo 4. %VALUE_NAME% >> C:\logs.txt
      echo 5. titi;toto;tata >> C:\logs.txt
      echo 6. %COMPUTERNAME%;%ValueValue% >> C:\logs.txt
      

      Here are the results :

      1. blablabla 
      3. HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate 
      4. SusClientId 
      5. titi;toto;tata 
      6. console; 
      
      posted in FOG Problems
      J
      jmeyer
    • RE: Max task for single snapin

      Problem remain the same with version 1.3.5.

      posted in FOG Problems
      J
      jmeyer
    • RE: Max task for single snapin

      I have also run as Thomas asked :

      truncate table snapinJobs;
      truncate table snapinTasks;
      delete from tasks where taskTypeID IN (12,13);
      

      but without success

      posted in FOG Problems
      J
      jmeyer
    • Max task for single snapin
      Server
      • FOG Version: 1.3.4
      • OS: Ubuntu 14.04.5 LTS
      Description

      I have a group of 260 hosts, I try to deploy a “Single Snapin” task.
      More than 250 host had image associated.
      None has snapins associated (it’s my first snapin).
      Only 64 hosts hast task created at the end.

      Cancel from GUI all task or run :

      DELETE FROM `tasks` WHERE `taskStateID` IN ("1","2","3");
      DELETE FROM `snapinTasks` WHERE `stState` in ("1","2","3");
      

      only end to create the same amount of task each time.

      Thank you

      posted in FOG Problems
      J
      jmeyer
    • RE: Send message to Slack

      @sourceminer Hello, I never tested using a channel but using a private message works fine with test token.
      You can also create your bot : https://my.slack.com/services/new/bot

      0_1485790486968_Sans titre.jpg

      Here is my conf :
      0_1485790863612_Sans titre3.jpg
      0_1485790596846_Sans titre2.jpg

      posted in Feature Request
      J
      jmeyer
    • Acer N4640G

      Hello,

      I have speak of this with Thomas but I don’t want to make him spend too much time on my problems.

      We have received 3 type of Acer computer this year X2640g, X4640G and N4640G.
      Both X are working fine with undionly.kkpxe but N isn’t.
      N is only working with ipxe.pxe.
      Thomas asked us to use the 10s delay pxe boot file since he thinks it’s because RSTP that is disabled on switches but problem remain the same.

      Here are the 2 screenshot using undionly.kkpxe.
      First is normal one, second is 10s delay one.

      0_1479889352346_2016-11-22.jpg

      0_1479889366793_2016-11-22 (1).jpg

      posted in Hardware Compatibility
      J
      jmeyer
    • RE: Private key not found

      @Tom-Elliott Sorry Thomas. I am running 7001.

      posted in FOG Problems
      J
      jmeyer
    • RE: Private key not found

      I have the same problem on my side (under Win 10 too).

      posted in FOG Problems
      J
      jmeyer
    • RE: Send message to Slack

      @Tom-Elliott you are wonderful. lol

      posted in Feature Request
      J
      jmeyer
    • Send message to Slack

      Hello,
      could it be possible to send, as the Pushbullet plugin, messages to Slack account ?
      Here is the site of Slack if someone want details : https://slack.com/

      https://api.slack.com/methods/chat.postMessage

      Thank you.

      posted in Feature Request
      J
      jmeyer
    • RE: Reboot made by wmiprvse.exe during first boot after sysprep

      @FlowLive
      I think you are right about the start /wait of the cmd.
      But I have this on the .bat of SDI :

       start /wait "Snappy Driver Installer" /d"%~dp0" "%~dp0%SDIEXE%" %1 %2 %3 %4 %5 %6 %7 %8 %9
      

      The web access of SDI is to check driver packages update.
      Fog service name depend of the version you use on the OS of the image you are going to make.

      posted in Windows Problems
      J
      jmeyer
    • RE: Client Updater Loop

      @Jbob Thank you for your help too. 🙂

      posted in Bug Reports
      J
      jmeyer
    • 1 / 1