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

    Which table to check in db to see if there are pending wakeup entrys

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    6
    31
    11.2k
    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.
    • george1421G
      george1421 Moderator @Sebastian Roth
      last edited by

      @Sebastian-Roth While I’ve been loosely following this, but setting nic properties has been problematic in the past since the nics are added based on a guid. The trick is that you have to find the right guid for the network adapter in question. You can typically do that by finding the network type (loopback, wireless, ethernet). Once you know the device guid then you can update the registry keys associated with that network adapter.

      While I haven’t had to do this I think M$ extended netsh so that you can manage network adapters easier.

      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!

      george1421G 1 Reply Last reply Reply Quote 0
      • george1421G
        george1421 Moderator @george1421
        last edited by

        @george1421 Again be aware I did not read the entire post so there is a high possibility that this post is off point, but I did find a vbscript on Spiceworks that will set the wol function on the network adapters.

        https://community.spiceworks.com/scripts/show/240-script-to-enable-wake-on-lan-windows

        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 0
        • x23piracyX
          x23piracy
          last edited by x23piracy

          Hi,

          i found out that intel offers a powershell module to manage their cards, but i have integrated the intel driver by rightclicking the inf and installed it into my base system but it seems that this will not install the ps module for it.

          alt text

          Lets say that module is installed we are able to set the card:

          Get-IntelNetAdapter
          Get-IntelNetAdapterSetting
          Set-IntelNetAdapterSetting –Name "Intel(R) Ethernet Connection (2) I218-V" –RegistryKeyword "*WakeOnPattern"  –RegistryValue "0"
          

          Sources:

          https://atsoftware.de/2014/08/configure-adapter-settings-for-intel-nic-using-powershell/
          http://www.potentengineer.com/intel-proset-powershell-module/

          EDIT:

          Damnit i downloaded the current Driver package from Intel but the module is missing!

          alt text

          Regards X23

          ║▌║█║▌│║▌║▌█

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

            @x23piracy A for effort.

            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/

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

              @Wayne-Workman said in Which table to check in db to see if there are pending wakeup entrys:

              @x23piracy A for effort.

              Thank you Wayne but i cannot find that powershell module. Anyone who has it installed?
              The Intel Cards we have are I219-LM ones.

              Regards X23

              ║▌║█║▌│║▌║▌█

              1 Reply Last reply Reply Quote 0
              • x23piracyX
                x23piracy
                last edited by x23piracy

                Hi,

                what should i say? ok lol, they removed the extra option for powershell module in current proset setups, but if i choose to use more time reading everything i can find this:

                alt text alt text

                Ok more googling until here:

                ftp://ftp.supermicro.com/CDR-X9_1.23_for_Intel_X9_platform/Intel/LAN/v18.8/PRO1000/DOCS/SERVER/prosetdm.htm

                PS c:\> Import-Module -Name "C:\Program Files\Intel\IntelNetCmdlets\IntelNetCmdlets"
                

                Ok lets try:

                alt text

                Wooo that sh** works 🙂

                The corresponding registry values seems to be this @Sebastian-Roth :

                [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}\0001]
                "*WakeOnPattern"="0"
                
                [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}\0001\Ndi\Params\*WakeOnPattern]
                "ParamDesc"="Akt. bei Musterübereinstimmung"
                "type"="enum"
                "default"="1"
                
                [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}\0001\Ndi\Params\*WakeOnPattern\Enum]
                "0"="Deaktiviert"
                "1"="Aktiviert"
                

                @Tom-Elliott said in Which table to check in db to see if there are pending wakeup entrys:

                @Quazz Sure, I suppose, but not quite easily. You have to know exactly where the file is. I’m not 100% sure the file actually exposes the firmware configuration in that manner though.

                i think you are absolutely right here because changing the pattern option via rdp interrupts the connection for ~5-6 seconds, seems to be a sign that the card reinitalizes (driver reload).

                Regards X23

                ║▌║█║▌│║▌║▌█

                1 Reply Last reply Reply Quote 1
                • x23piracyX
                  x23piracy
                  last edited by x23piracy

                  Since i don’t know how the nic adapter name may be wildcard can be used to say set it to every intel nic.

                  Set-IntelNetAdapterSetting -Name "*"–RegistryKeyword "*WakeOnPattern"  –RegistryValue "0"
                  

                  In the end… Who the hell want to have machine’s waking up by ping?

                  Regards X23

                  ║▌║█║▌│║▌║▌█

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

                    @x23piracy said in Which table to check in db to see if there are pending wakeup entrys:

                    In the end… Who the hell want to have machine’s waking up by ping?

                    Me, if our network team can’t manage to get all our switches to work with WOL.

                    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/

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

                      @Wayne-Workman said in Which table to check in db to see if there are pending wakeup entrys:

                      @x23piracy said in Which table to check in db to see if there are pending wakeup entrys:

                      In the end… Who the hell want to have machine’s waking up by ping?

                      Me, if our network team can’t manage to get all our switches to work with WOL.

                      Tell your boss that they should fire special people 😜

                      ║▌║█║▌│║▌║▌█

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

                        @x23piracy said in Which table to check in db to see if there are pending wakeup entrys:

                        Tell your boss that they should fire special people 😜

                        Only if I can quote you.

                        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/

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

                          @Wayne-Workman said in Which table to check in db to see if there are pending wakeup entrys:

                          quote

                          How is the payment and which country is it? I have attachment with me 😄

                          ║▌║█║▌│║▌║▌█

                          1 Reply Last reply Reply Quote 0
                          • 1
                          • 2
                          • 2 / 2
                          • First post
                            Last post

                          139

                          Online

                          12.0k

                          Users

                          17.3k

                          Topics

                          155.2k

                          Posts
                          Copyright © 2012-2024 FOG Project