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

    snapin and batch script

    Scheduled Pinned Locked Moved Unsolved
    FOG Problems
    6
    54
    20.6k
    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.
    • Tom ElliottT
      Tom Elliott @plegrand
      last edited by

      @plegrand I am pretty sure, no amount of tries (with or without) snapin pack, snapin plain, psexec, powershell, batch, vbscript, or any thing else will get this working for you.

      The first step would be to find out if the command is actually needing user input. Snapins cannot operate with the user environment.

      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

      P 1 Reply Last reply Reply Quote 0
      • Wayne WorkmanW
        Wayne Workman @Tom Elliott
        last edited by

        @Tom-Elliott said in snapin and batch script:

        Essentially, the reason why the “red x” happens is because System user is who mounted the point, and the permissions are not available to the user you’re actually logged in under. If you need a “global” mount of a drive, this would be more readily handled using GPO’s, not fog snapins. While I’m sure it “could” be handled via a snapin, i think such a thing is out of scope for the FOG Client.

        This is correct, use Group Policy to do this. Either in a startup script or a login script. That’s how I’ve always accomplished it.
        Additionally, you don’t even need to script it because Group Policy has native functionality for mapping & mounting remote volumes.

        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
        • P
          plegrand @Tom Elliott
          last edited by plegrand

          @Tom-Elliott as i said before the command i will use will not need user input :

          I will use a command line with arguments like that :

          "call W:\cmd\DoUpdate.cmd /verify /updatecpp /updatetsc /instdotnet4 /autoreboot"
          

          once share mounted in w:

          I would like to update my computer once image deployed, for that i use “WsusOffline”
          WsusOffline is located on a samba share, then i have to mount the samba share, in “w:” for example, and then launch this command :

          W:\cmd\DoUpdate.cmd /verify /updatecpp /updatetsc /instdotnet4 /autoreboot"
          

          from the samba share

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

            Based on a couple minutes of research, I don’t think you can run UpdateInstaller.exe silently. So this is likely just not going to work.
            http://www.wsusoffline.net/docs/

            P 1 Reply Last reply Reply Quote 0
            • P
              plegrand @Avaryan
              last edited by

              @Avaryan said in snapin and batch script:

              UpdateInstaller.exe

              is only for testing, the command i want to launch is :

              "call W:\cmd\DoUpdate.cmd /verify /updatecpp /updatetsc /instdotnet4 /autoreboot"
              

              from the samba share

              Tom ElliottT 1 Reply Last reply Reply Quote 0
              • Tom ElliottT
                Tom Elliott @plegrand
                last edited by

                @plegrand Does the “DoUpdate.cmd” script call UpdateInstaller.exe?

                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

                P 2 Replies Last reply Reply Quote 0
                • P
                  plegrand @Tom Elliott
                  last edited by

                  @Tom-Elliott no
                  It works alone without waiting something from the user

                  Tom ElliottT P 2 Replies Last reply Reply Quote 0
                  • Tom ElliottT
                    Tom Elliott @plegrand
                    last edited by

                    @plegrand So have you tried with using the DoUpdate.cmd instead of trying with UpdateInstaller.exe?

                    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

                    P 1 Reply Last reply Reply Quote 0
                    • P
                      plegrand @Tom Elliott
                      last edited by plegrand

                      @Tom-Elliott @Avaryan
                      It works !!! with psexec
                      for the moment from command line, then i need to package my script and psexec ?

                      here is the command :

                      psexec \\%computername% -u %computername%\Administrateur -p password -e cmd /c "net use y: \\samba\wsus$ "my'password" /User:samba\Administrateur & y:\wsusoffline\client\UpdateInstaller.exe"
                      

                      UpdateInstaller.exe open a windows and wait for user input.
                      For the moment i dont if it will works with snapin

                      1 Reply Last reply Reply Quote 0
                      • P
                        plegrand @plegrand
                        last edited by plegrand

                        @plegrand yes
                        but for the moment nothing happen 😉
                        I’m trying snapin pack
                        with this command :

                        psexec \\%computername% -u %computername%\Administrateur -p password -e cmd /c "net use y: \\samba\wsus$ "my'password" /User:samba\Administrateur & y:\wsusoffline\client\cmd\DoUpdate.cmd /verify /updatecpp /updatetsc /instdotnet4 /autoreboot"
                        

                        i made a zip with my batch script (test.bat) and psexec

                        Snapin Type Snapin Pack
                        Snapin Pack Template Batch Script
                        Snapin Pack File cmd.exe
                        Snapin Pack Arguments /c “[FOG_SNAPIN_PATH]\MyScript.bat”
                        Snapin File Max Size:1900M test.zip
                        Snapin Command cmd.exe /c “[FOG_SNAPIN_PATH]\MyScript.bat”

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

                          @plegrand You know, most people just keep their images updated so they don’t have to worry about this so much. I know some of the community do quarterly images while others do annual images.

                          You’d probably have better luck just opening an Amazon Web Services account and installing Systems Manager into your image so you can control patching through AWS. This tool is specifically built for this, among a few other things.

                          Or, just a WSUS server and some group policy to control how updates work.

                          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
                          • P
                            plegrand @Tom Elliott
                            last edited by

                            @Tom-Elliott
                            I cant make it works for the moment with snapinpack, I’ve got an error that i don’t understand :

                            17/05/2017 08:42 Client-Info Client Version: 0.11.11
                            17/05/2017 08:42 Client-Info Client OS:      Windows
                            17/05/2017 08:42 Client-Info Server Version: 1.3.5
                            17/05/2017 08:42 Middleware::Response Success
                            17/05/2017 08:42 SnapinClient Snapin Found:
                            17/05/2017 08:42 SnapinClient     ID: 103
                            17/05/2017 08:42 SnapinClient     Name: Update Windows 7
                            17/05/2017 08:42 SnapinClient     Created: 2017-05-17 08:41:24
                            17/05/2017 08:42 SnapinClient     Action: 
                            17/05/2017 08:42 SnapinClient     Pack: True
                            17/05/2017 08:42 SnapinClient     Hide: False
                            17/05/2017 08:42 SnapinClient     Server: 
                            17/05/2017 08:42 SnapinClient     TimeOut: 0
                            17/05/2017 08:42 SnapinClient     SnapinPack File: cmd.exe
                            17/05/2017 08:42 SnapinClient     SnapinPack Args: /c "[FOG_SNAPIN_PATH]\test.bat" >> %tmp%\test.log 2>&1
                            17/05/2017 08:42 SnapinClient     File: test.zip
                            17/05/2017 08:42 Middleware::Communication Download: http://192.168.39.243/fog/service/snapins.file.php?mac=D0:67:E5:0C:6A:1A||00:00:00:00:00:00:00:E0|00:00:00:00:00:00:00:E0&taskid=103
                            17/05/2017 08:42 SnapinClient C:\Program Files\FOG\tmp\test.zip
                            17/05/2017 08:42 SnapinClient Processing SnapinPack test.zip
                            17/05/2017 08:42 SnapinClient Extracting SnapinPack
                            17/05/2017 08:42 SnapinClient ERROR: Compressed size mismatch between central header(161385) and local header(0)
                            17/05/2017 08:42 Middleware::Communication URL: http://192.168.39.243/fog/service/snapins.checkin.php?taskid=103&exitcode=-1&mac=D0:67:E5:0C:6A:1A||00:00:00:00:00:00:00:E0|00:00:00:00:00:00:00:E0&newService&json
                            

                            An idea ?

                            P 1 Reply Last reply Reply Quote 0
                            • P
                              plegrand @plegrand
                              last edited by

                              @plegrand
                              It seams that i have to create the zip file on windows , on linux i have this error.
                              After that the snapin pack is launched but i think it’s waiting interaction with user and even i use psexec the script is launch by system. Then it doesn’t works.
                              I have to find an other solution

                              1 Reply Last reply Reply Quote 0
                              • Q
                                Quazz Moderator
                                last edited by Quazz

                                Psexec needs the EULA to be accepted on first use (I’m guessing per user basis even)

                                So add -accepteula maybe.

                                edit: But given you only to execute commands on the local system as a different user, runas is likely the easier/better tool for the job.

                                edit2: Just remembered you can’t pipe passwords to it, nvm

                                P 1 Reply Last reply Reply Quote 0
                                • P
                                  plegrand @Quazz
                                  last edited by

                                  @Quazz
                                  I think the problem is that snapin is launched as SYSTEM user, then even i use psexec or runas to run command as local user, snapin is launched as SYSTEM and then it does not works. I try with -accepteula but …

                                  P Wayne WorkmanW 2 Replies Last reply Reply Quote 0
                                  • P
                                    plegrand @plegrand
                                    last edited by plegrand

                                    @Avaryan @Tom-Elliott @Quazz @Wayne-Workman
                                    May be someone know a solution to launch remote command on mulitple computers without GPO’s ?

                                    george1421G Wayne WorkmanW 2 Replies Last reply Reply Quote 0
                                    • george1421G
                                      george1421 Moderator @plegrand
                                      last edited by

                                      @plegrand PDQ Deploy?? https://www.pdq.com/pdq-deploy/

                                      We use this tool instead of FOG Snapins to deploy applications in our offices. They have a free version that should do what you need, but the paid for version is reasonable in cost and well worth the price because of the additional functionality.

                                      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!

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

                                        So, the overall objective here, is it just to get Windows updated? Does it have it be offline using wsusoffline?

                                        There are PowerShell modules for Windows Update that may be able to trigger updates.

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

                                          @plegrand said in snapin and batch script:

                                          I think the problem is that snapin is launched as SYSTEM user

                                          This is not a problem, this is by design. Not only is it by design in the FOG Client, it is by design from Microsoft. This is how deployments are made safe, anything less is a breach of security.

                                          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/

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

                                            @plegrand said in snapin and batch script:

                                            @Avaryan @Tom-Elliott @Quazz @Wayne-Workman
                                            May be someone know a solution to launch remote command on mulitple computers without GPO’s ?

                                            I already said it, Systems Manager from Amazon Web Services.

                                            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/

                                            P 1 Reply Last reply Reply Quote 1
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 3
                                            • First post
                                              Last post

                                            215

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project