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

    Printer management Windows 7

    Scheduled Pinned Locked Moved Solved
    General
    6
    13
    5.1k
    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 @danilopinotti
      last edited by

      @danilopinotti try this to help you build the printer information you need. To work make sure the printer you want to client to work with is successfully installed on the machine you run the program on.

      https://github.com/FOGProject/fog-client/releases/download/0.9.5/PrinterManagerHelper.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

      1 Reply Last reply Reply Quote 0
      • D
        danilopinotti
        last edited by danilopinotti

        This way worked.
        All computers need to have the printer driver to work?

        Att, Danilo Pinotti

        Fog 1.3.0-RC-7
        Ubuntu Server 14.04 LTS

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

          Correct, the drivers MUST exist on the system trying to receive the printer. This is because FOG is not supplying the drivers, it’s supplying the location where the Client will get its driver from.

          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

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

            @Tom-Elliott said:

            it’s supplying the location where the Client will get its driver from.

            I would like to put drivers in a share folder.

            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/

            Wayne WorkmanW 1 Reply Last reply Reply Quote 0
            • Raymond BellR
              Raymond Bell Testers
              last edited by

              I add all my printer drivers to a hidden folder on the C drive of the host image and works great!!!

              then set printer up in fog as IP Local

              C:\Printers\hpuniversal\hpcu155c.inf

              Raymond Bell
              WiKi: https://wiki.fogproject.org/wiki/index.php/Main_Page

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

                @Raymond-Bell said:

                I add all my printer drivers to a hidden folder on the C drive of the host image and works great!!!

                then set printer up in fog as IP Local

                C:\Printers\hpuniversal\hpcu155c.inf

                and then… your organization gets a new model of printer and your hidden folder does not have drivers for it.

                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
                • Raymond BellR
                  Raymond Bell Testers
                  last edited by Raymond Bell

                  @Wayne-Workman Thats why i have all bases covered and drivers hint hintUntitled.png

                  But yes a shared folder would be better

                  Raymond Bell
                  WiKi: https://wiki.fogproject.org/wiki/index.php/Main_Page

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

                    @Wayne-Workman said in Printer management Windows 7:

                    @Tom-Elliott said:

                    it’s supplying the location where the Client will get its driver from.

                    I would like to put drivers in a share folder.

                    Coming back to this old thread because I’m now trying to deploy a very difficult to deploy printer via FOG, and I’ve made a basic startup script to keep a local drivers folder updated.

                    Basically, whenever you want the folder updated on all the systems, you just put in a new text file with a current date for the name (file is empty), and then update the script to look for the new file.

                    IF NOT EXIST "%SystemDrive%\print_drivers\4-13-2016.txt" (
                    rmdir %SystemDrive%\print_drivers /s /q
                    xcopy "\\x.x.x.x\YourShare\print_drivers\*.*" "%SystemDrive%\print_drivers" /y /d /e /c /i /f /h /k /v /s
                    )
                    

                    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/

                    Scott BS 1 Reply Last reply Reply Quote 0
                    • Scott BS
                      Scott B @Wayne Workman
                      last edited by

                      @Wayne-Workman said in Printer management Windows 7:

                      @Wayne-Workman said in Printer management Windows 7:

                      @Tom-Elliott said:

                      it’s supplying the location where the Client will get its driver from.

                      I would like to put drivers in a share folder.

                      Coming back to this old thread because I’m now trying to deploy a very difficult to deploy printer via FOG, and I’ve made a basic startup script to keep a local drivers folder updated.

                      Basically, whenever you want the folder updated on all the systems, you just put in a new text file with a current date for the name (file is empty), and then update the script to look for the new file.

                      IF NOT EXIST "%SystemDrive%\print_drivers\4-13-2016.txt" (
                      rmdir %SystemDrive%\print_drivers /s /q
                      xcopy "\\x.x.x.x\YourShare\print_drivers\*.*" "%SystemDrive%\print_drivers" /y /d /e /c /i /f /h /k /v /s
                      )
                      

                      How varied are your makes and models of printers? I wrote a batch file that will determine if you are Win7 or 10, x32 or x64 and copy all the drivers local. FOG then looks to that local path. It looks similar to the one you posted.

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

                        @Scott-B just about every printer in the building is a different model. of which we have about 100. Some are USB, some network.

                        I manage the network ones with Active Directory without issue - it’s just this one printer being stupid. It needs replaced. It doesn’t even have drivers for Windows 7, I finagled Windows Vista drivers onto Windows 7 as a local TCP/IP installation before. It’s just impossible to deploy with Active Directory - everything I’ve tried has failed - and I’ve tried a lot.

                        Fog was my last resort.

                        But, here in the future, if it proves to be reliable and I think it will be, I want to use FOG for printer management because it’ll lighten the load on our DCs.

                        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
                        • 1 / 1
                        • First post
                          Last post

                        220

                        Online

                        12.0k

                        Users

                        17.3k

                        Topics

                        155.2k

                        Posts
                        Copyright © 2012-2024 FOG Project