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

    powershell snapin no output, non error

    Scheduled Pinned Locked Moved Unsolved
    Windows Problems
    4
    21
    1.4k
    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.
    • L
      lebrun78 @JJ Fullmer
      last edited by lebrun78

      @JJ-Fullmer
      I tried command line step by step with psexec, it works
      I tried command line step by step with your modified script, it works
      I tried snapin with

      Snapin Command read-only:
      
      C:\windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy bypass -NoProfile -File boot-uefi-pxe_win.ps1
      

      and with boot-uefi-pxe_win.ps1

      $bcdedit = "C:\windows\System32\bcdedit.exe"
      $firmware = & {start-process -filepath $bcdedit -args "/enum firmware" -Wait -RedirectStandardOutput output.txt ; get-content output.txt; remove-item output.txt}
      $fullLine = (($firmware | Select-String "IPV4" -Context 1 ).context.precontext)[0]
      $GUID = '{' + $FullLine.split('{')[1]
      $result = & {start-process $bcdedit -args "/set `"{fwbootmgr}`" displayorder $GUID /addfirst" -Wait -RedirectStandardOutput output.txt ; get-content output.txt; remove-item output.txt}
      
      # $firmware = $(bcdedit /enum firmware)
      # $fullLine = (($firmware | Select-String "IPV4" -Context 1 ).context.precontext)[0]
      # $GUID = '{' + $FullLine.split('{')[1]
      # $result = $(cmd /c bcdedit /set "{fwbootmgr}" displayorder $GUID /addfirst)
      $dateheure = (date).ToString() 
      if (!(Test-Path 'C:\temp')) { mkdir 'C:\temp' }
      #log everything in a new C:\temp\firmware.txt file
      New-Item -path C:\temp\firmware.txt -itemType File -value "Firmware: $($firmware | out-string)`n`nFullLine: $fullLine`nGUID: $GUID`nresult: $result`ndate: $dateheure`n" -force
      

      And the result is allways 😢

      Get-Content C:\temp\firmware.txt
      Firmware: 
      
      FullLine: 
      GUID: 
      result: 
      date: 03/04/2023 17:30:13
      

      My OS is Windows 11

      Fog Version: Fog 1.5.10
      Server OS: AlmaLinux release 8.8

      JJ FullmerJ 2 Replies Last reply Reply Quote 0
      • JJ FullmerJ
        JJ Fullmer Testers @lebrun78
        last edited by

        @lebrun78 I don’t have a windows 11 host to test with. Maybe there’s some new security feature in windows 11 related to bcdedit and background services even running as the system account. It doesn’t make a lot of sense.

        Here’s another idea, it’s a bit crazy and will only work as part of firstlogoncommands after imaging (assuming you’re using sysprep with a firstlogoconcommands and auto logon of the admin user). This is when attached snapins will start applying anyway.

        This script will essentially create a scheduled task that runs on demand as the built-in administrator named ‘administrator’ interactively. So it will open the powershell window in the logged in session in admin context, this only works with the built-in administrator in my experience and hopefully it still works in windows 11.

        $adminUsr = "$($ENV:ComputerName)\Administrator"
        # create the scheduled task
        $trigger = New-ScheduledTaskTrigger -AtLogOn -User $adminUsr;
        $settings = New-ScheduledTaskSettingsSet -WakeToRun -Priority 0;
        $principal = New-ScheduledTaskPrincipal -UserId $adminUsr -RunLevel Highest -LogonType Interactive;
        $sb = { 
        $firmware = (bcdedit /enum firmware);
        $fullLine = (($firmware | Select-String "IPV4" -Context 1 ).context.precontext)[0];
        $GUID = '{' + $FullLine.split('{')[1];
        $result = (bcdedit /set "{fwbootmgr}" displayorder $GUID /addfirst);
        #make c:\temp if it doesn't exist
        if (!(Test-Path 'C:\temp')) { mkdir 'C:\temp'; }
        #log everything in a new C:\temp\firmware.txt file
        New-Item -path C:\temp\firmware.txt -itemType File -value "Firmware: $($firmware | out-string)`n`nFullLine: $fullLine`nGUID: $GUID`nresult: $result`n" -force;
        }
        New-Item C:\netboot.ps1 -value $sb.tostring() -force;
        $action = New-ScheduledTaskAction -Execute powershell.exe -Argument "-File 'C:\netboot.ps1'"
        $task = New-ScheduledTask -Action $action -Description "update bcd" -Principal $principal -Trigger $trigger -Settings $settings;
        $taskName = "boot-to-net"
        Register-ScheduledTask -InputObject $task -TaskName $taskName;
        Start-ScheduledTask -TaskName $taskName;
        while ((Get-ScheduledTask $taskName).State -eq 'Running') {
            Start-Sleep -Seconds 1;
        }
        Unregister-ScheduledTask -TaskName $taskName -Confirm:$false -EA 0;
        Remove-Item 'C:\netboot.ps1' -force -ea 0
        

        Have you tried the FogApi powershell module? It's pretty cool IMHO
        https://github.com/darksidemilk/FogApi
        https://fogapi.readthedocs.io/en/latest/
        https://www.powershellgallery.com/packages/FogApi
        https://forums.fogproject.org/topic/12026/powershell-api-module

        1 Reply Last reply Reply Quote 0
        • JJ FullmerJ
          JJ Fullmer Testers @lebrun78
          last edited by

          @lebrun78 I just noticed that you’re running the command line step by step in the tests.
          The best thing to do would be put a copy of the file at C:\Program Files (x86)\FOG\tmp\boot-uefi.ps1 and run it from there as the system account for a test of the full context of how it will run. You may want to run get-service fogservice | stop-service first so that the fogservice doesn’t delete the tmp folder while you’re testing. To be fully ideal you should stop the service right after it downloads the script so that the permissions of the file created by the service are fully replicated, but that can be tricky

          Have you tried the FogApi powershell module? It's pretty cool IMHO
          https://github.com/darksidemilk/FogApi
          https://fogapi.readthedocs.io/en/latest/
          https://www.powershellgallery.com/packages/FogApi
          https://forums.fogproject.org/topic/12026/powershell-api-module

          L 1 Reply Last reply Reply Quote 0
          • L
            lebrun78 @JJ Fullmer
            last edited by lebrun78

            @JJ-Fullmer
            Thank you for your work, this script runs with snapin but does not do the expected job, the pxe is not ranked àat the good place :

            $adminUsr = "$($ENV:ComputerName)\Administrateur"
            $trigger = New-ScheduledTaskTrigger -AtLogOn -User $adminUsr;
            $settings = New-ScheduledTaskSettingsSet -WakeToRun -Priority 0;
            $principal = New-ScheduledTaskPrincipal -UserId $adminUsr -RunLevel Highest -LogonType Interactive;
            $sb = {
            $firmware = cmd /c "C:\windows\system32\bcdedit.exe" /enum firmware;
            $fullLine = (($firmware | Select-String "IPV4" -Context 1 ).context.precontext)[0];
            $GUID = '{' + $FullLine.split('{')[1];
            $result = cmd /c "C:\windows\system32\bcdedit.exe" /set "{fwbootmgr}" displayorder $GUID /addfirst;
            #make c:\temp if it doesn't exist
            if (!(Test-Path 'C:\temp')) { mkdir 'C:\temp'; }
            #log everything in a new C:\temp\firmware.log file
            New-Item -path C:\temp\firmware.log -itemType File -value "Firmware: $($firmware | out-string)`n`nFullLine: $fullLine`nGUID_ipV4: $GUID`nresult: $result`n" -force;
            }
            
            New-Item C:\netboot.ps1 -value $sb.tostring() -force;
            $action = New-ScheduledTaskAction -Execute "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -Argument "-File C:\netboot.ps1"
            $task = New-ScheduledTask -Action $action -Description "update bcd" -Principal $principal -Trigger $trigger -Settings $settings;
            $taskName = "boot-to-IPV4";
            Register-ScheduledTask -InputObject $task -TaskName $taskName;
            Start-ScheduledTask -TaskName $taskName;
            
            while ((Get-ScheduledTask $taskName).State -eq 'Running') {
                Start-Sleep -Seconds 1;
            }
            Unregister-ScheduledTask -TaskName $taskName -Confirm:$false -EA 0;
            move-Item 'C:\netboot.ps1' 'C:\netbootOLD.ps1' -force -ea 0;
            

            Fog Version: Fog 1.5.10
            Server OS: AlmaLinux release 8.8

            Tom ElliottT JJ FullmerJ 2 Replies Last reply Reply Quote 0
            • Tom ElliottT
              Tom Elliott @lebrun78
              last edited by

              @lebrun78 I could be mistaken here, but I wonder if setting UEFI boot orders and adjusting UEFI parameters aren’t allowed by the system user directly? Since the system user typically doesn’t have a password, I imagine it’d be a bit of an issue if a piece of software elevated itself to the system and injected into your UEFI loader things.

              Of course I’m just thinking overly much on the thought here, but it would seem maybe this is intentional?

              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

              L 1 Reply Last reply Reply Quote 1
              • L
                lebrun78 @Tom Elliott
                last edited by

                @Tom-Elliott
                Yes Tom, I agree,
                That’s why JJ-Fullmer create a task executed as user administrator to modify the boot order.
                I have a powershell problem, to how to create a task trigger at the creation of the task

                Fog Version: Fog 1.5.10
                Server OS: AlmaLinux release 8.8

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

                  @lebrun78 If the snapin is part of the host, on deploy it should automatically create the snapin task.

                  The issue, as I’m seeing it, is that the system user is what would run that snapin through the FOG Client. If there’s indeed security to prevent the system user from running the boot order/uefi update process as you’re intending, this is part of the problem.

                  Again, I’m not certain this is actually the case, just it seems like a potential reason for the issue.

                  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 1
                  • JJ FullmerJ
                    JJ Fullmer Testers @lebrun78
                    last edited by

                    @lebrun78 It should still be creating that log file of C:\temp\firmware.log
                    What does that log say after running this?

                    Have you tried the FogApi powershell module? It's pretty cool IMHO
                    https://github.com/darksidemilk/FogApi
                    https://fogapi.readthedocs.io/en/latest/
                    https://www.powershellgallery.com/packages/FogApi
                    https://forums.fogproject.org/topic/12026/powershell-api-module

                    L 1 Reply Last reply Reply Quote 0
                    • L
                      lebrun78 @JJ Fullmer
                      last edited by

                      @JJ-Fullmer
                      No log film created.
                      Task created as you proposed require administrator login to be executed. That is not the purpose of the snapin.
                      But I have no idea how to work around the problem 🤕

                      @Tom-Elliott
                      Do you have any idea how to keep pxe boot with eufi Windows ?

                      If I have to get up from my chair every time I have to deploy, that’s no big deal. 😌

                      Fog Version: Fog 1.5.10
                      Server OS: AlmaLinux release 8.8

                      JJ FullmerJ 2 Replies Last reply Reply Quote 0
                      • JJ FullmerJ
                        JJ Fullmer Testers @lebrun78
                        last edited by

                        @lebrun78 As I mentioned that method would only work if the admin is logged in. If you’re running this at deploy time and have other firstlogoncommands that run via an unattend.xml file then it would work when the computer is first imaged to change the boot order back to pxe boot first.

                        There is a feature request that’s being considered for making it so the fogclient can handle changing the boot order, but no idea when there will be the time for that to be implemented. You’re welcome to fork that repo and give it a go 🙂

                        Personally I made an internal powershell module that queues the image using the FogApi powershell module (see my signature) and runs a remote powershell command on the machine I’m imaging to download the latest ipxe.efi (or snponly.efi) and I set that as the bootfile (I find it hard to match the network boot option as it’s labeled different on different platforms in my environment, but booting directly to the efi boot file always works).

                        Have you tried the FogApi powershell module? It's pretty cool IMHO
                        https://github.com/darksidemilk/FogApi
                        https://fogapi.readthedocs.io/en/latest/
                        https://www.powershellgallery.com/packages/FogApi
                        https://forums.fogproject.org/topic/12026/powershell-api-module

                        1 Reply Last reply Reply Quote 0
                        • JJ FullmerJ
                          JJ Fullmer Testers @lebrun78
                          last edited by JJ Fullmer

                          @lebrun78 Had another idea.
                          Since it does work with the system account in the psexec shell you try the scheduled task method again and have it use the system account. It would look something like below

                          Also, matching just ‘IPV4’ from the firmware boot options may not yield the most reliable results as not every device will name their network boot option like that. Another option that may work would be finding what your various models do use for pxe identification and script finding that one within this script, that would take some effort to maintain but would always get you the options you want
                          Another possibility is finding all possible choices and putting them all above the windows boot manager. For example, I have a custom built pc that has 3 options related to network boot (excluding ipv6) options, I could find each of those guids and put them all at the top of the list so each one will be tried at boot. I altered the script below to use that method matching the things I found in a couple places (‘IPV4’, ‘Network’, ‘pxe’) and I switched the matching up using a method I found here https://stackoverflow.com/questions/16903460/bcdedit-bcdstore-and-powershell to parse the enum of firmware into a powershell object, it’s not a perfect conversion to an object but it’s workable.

                          Another other option would be to get the tftpboot pxe files locally and add them to the efi partition and have it try a couple known ones, this method would work nicely as well especially on devices that don’t have built-in ethernet as they won’t have to support pxe boot to get to the bootfile that will get you into fog. But to make that work in a way that would support multiple pxe boot file options is a bit out of scope of this post.

                          #start the task 10 seconds after its defined
                          $trigger = New-ScheduledTaskTrigger -Once -at ((Get-date).AddSeconds(10))
                          $settings = New-ScheduledTaskSettingsSet -WakeToRun -Priority 0;
                          #make sure temp path exists, and use temp path to avoid issues with permissions on root of C
                          if (!(Test-Path 'C:\temp')) { mkdir 'C:\temp'; }
                          #use system account
                          $principal = New-ScheduledTaskPrincipal -UserId 'NT AUTHORITY\SYSTEM' -RunLevel Highest -LogonType ServiceAccount;
                          $sb = {
                              $Configs   = New-Object -TypeName System.collections.generic.List['System.Object']
                              $NameArray = @()
                              $Pattern = '^(?<name>[a-z]*)?\s*(?<value>.*)?$'
                              $firmware = (bcdedit /enum firmware);
                              foreach ($item in $firmware ){
                                  if ( $item.trim() ){
                                      $res = [regex]::matches( $item, $pattern )
                                      if ( $res ){
                                          $Value = $res[0].Groups['value'].value
                                          $Name  = $res[0].Groups['name'].value
                                          if ( $Value ){
                                              if ( $Name ){
                                                  "$item creating pso" | out-host;
                                                  $PSO = [PSCustomObject]@{
                                                      Name  = $Name
                                                      Value = $Value
                                                  }
                                                  $NameArray += $PSO
                                              } else {
                                                  if ( $NameArray.count ){
                                                      ( $NameArray | Select-Object -last 1 ).Value += "; $Value"
                                                  }
                                              }
                                          }
                                      }
                                  } else {
                                      if ( $NameArray ){
                                          $Configs.add(($NameArray))
                                          $NameArray = @()
                                      } 
                                  }
                              }
                              #the above loop from the example I found doesn't add the final item, so run this bit one more time
                              if ( $NameArray ){
                                  $Configs.add(($NameArray))
                                  $NameArray = @()
                              } 
                              $netbootsipv4 = $configs | Where-Object { $_.Value[-1] -match "Network" -OR $_.Value[-1] -match "PXE" -OR $_.Value[-1] -match "IPV4" } | Where-Object { $_.Value[-1] -notmatch "IPV6" }
                              #loop through the found netboot options and put each one at the top so all of them are before windows boot
                              $result = New-Object -TypeName System.collections.generic.List['System.Object']
                              $netbootsipv4 | ForEach-Object {
                                  $GUID = $_.Value[0];
                                  $bootOption = "Adding Desc: $($_.Value[1]) GUID: $GUID to boot first";
                                  $addBootToTop = (bcdedit /set "{fwbootmgr}" displayorder $GUID /addfirst);
                                  $result.add($bootOption);
                                  $result.add($addBootToTop);
                              }
                              #now that for sure all pxe boot options are first boots, try to find the active connection that matches and make it for sure the first boot option
                              $upNets = (get-netadapter | Where-Object status -eq up).InterfaceDescription
                              $upNets | ForEach-Object {
                                  #set the current item to a variable
                                  $adapterName = $_;
                                  #see if the active adapter's description matches any of the found ipv4 boot options
                                  $adapterBootEntry = $netbootsipv4 | Where-Object { $_.Value[-1] | Select-String -pattern $adapterName -SimpleMatch}
                                  if ($adapterBootEntry) {
                                      $guid = $adapterBootEntry.Value[0]
                                      $bootOption = "This interface is active, put it towards the top - Adding Desc: $($_.Value[1]) GUID: $GUID to boot first";
                                      $addBootToTop = (bcdedit /set "{fwbootmgr}" displayorder $GUID /addfirst);
                                      $result.add($bootOption);
                                      $result.add($addBootToTop);
                                  }
                              }
                              
                              $newBootOrder = (bcdedit /enum "{fwbootmgr}");
                              #make c:\temp if it doesn't exist
                              if (!(Test-Path 'C:\temp')) { mkdir 'C:\temp'; }
                              #log everything in a new C:\temp\firmware.log file
                              $resultString = "Firmware: $($firmware | out-string)`n`nresult: $($result | out-string)`n`nNewBootOrder: $newBootOrder`n"
                              New-Item -path C:\temp\firmware.log -itemType File -value $resultString -force;
                          }
                          $netBootScript = "C:\temp\netboot.ps1";
                          New-Item $netBootScript -value $sb.tostring() -force;
                          $action = New-ScheduledTaskAction -Execute "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -Argument "-File 'C:\temp\netboot.ps1'"
                          $task = New-ScheduledTask -Action $action -Description "update bcd" -Principal $principal -Trigger $trigger -Settings $settings;
                          $taskName = "boot-to-IPV4";
                          #register the task
                          Register-ScheduledTask -InputObject $task -TaskName $taskName;
                          # force the task to start
                          Start-ScheduledTask -TaskName $taskName;
                          # wait for the task to finish
                          while ((Get-ScheduledTask $taskName).State -eq 'Running') {
                              Start-Sleep -Seconds 1;
                          }
                          #delete the task
                          Unregister-ScheduledTask -TaskName $taskName -Confirm:$false -EA 0;
                          #delete the created script file
                          remove-Item $netBootScript -force -ea 0;
                          

                          I saved the above as a .ps1 file and made it a snapin and it worked for me when I tested it on a vm. However, it did make it so when fog booted to the hard disk via refind it wasn’t able to boot into windows. This may be related to my own custom configs in refind, but something to test for on a few different platforms to be on the safe side.
                          Wait wait, I made a small change to the logging and updated the snapin and then it didn’t work the second time. That’s odd… I recreated and couldn’t get it to work a second time. There’s something weird going on for sure. I know I double checked that things were not already configured to boot to the network the time it did work.
                          Granted, since it’s happening via scheduled task, if you have an AD environment you could deploy this script in a scheduledTask via a gpo. Add the file (the one created from the $sb in the script) to computers with file preferences and create the scheduled task that runs as the system account using a scheduled task gpo.

                          Will have to dig more into this on why the script isn’t doing anything via snapin, maybe @Sebastian-Roth can help a bit on troubleshooting the client side. And maybe other @testers could test using this script as a snapin too to see what results are being had elsewhere.

                          Then just as an fyi to anyone reading this, you can revert back to the normal windows boot manager with (bcdedit /set "{fwbootmgr}" displayorder "{bootmgr}" /addfirst);

                          Have you tried the FogApi powershell module? It's pretty cool IMHO
                          https://github.com/darksidemilk/FogApi
                          https://fogapi.readthedocs.io/en/latest/
                          https://www.powershellgallery.com/packages/FogApi
                          https://forums.fogproject.org/topic/12026/powershell-api-module

                          1 Reply Last reply Reply Quote 0
                          • N
                            nathan67 @lebrun78
                            last edited by

                            @lebrun78
                            Have you found a solution to your problem?
                            I have the same problem with bcdedit via a snapin.

                            JJ FullmerJ 1 Reply Last reply Reply Quote 0
                            • N
                              nathan67 @lebrun78
                              last edited by

                              This post is deleted!
                              1 Reply Last reply Reply Quote 0
                              • JJ FullmerJ
                                JJ Fullmer Testers @nathan67
                                last edited by

                                @nathan67

                                I’m just going to put these right here

                                https://fogapi.readthedocs.io/en/latest/commands/Set-WinToBootToPxe/

                                https://github.com/darksidemilk/FogApi/blob/master/FogApi/Public/Set-WinToBootToPxe.ps1

                                Not an answer to the snapin issue with bcdedit, but I have published a powershell function within the FogApi module for managing the bcdedit commands and setting a host to boot ot pxe.

                                I did just test it as a snapin with a simple script like this:

                                #registery the psgallery repository and trust it
                                Register-PSRepository -Default -ea 0;
                                Set-PSRepository -Name PSGallery -InstallationPolicy Trusted;
                                #install the fogapi module from the gallery
                                install-module fogapi -Repository PSGallery -ea 0 -Confirm:$false -Force -Scope AllUsers;
                                #run command to set pxe boot
                                Set-WinToBootToPxe;
                                

                                But when run as a snapin it still isn’t working, run manually on a machine it does work.

                                I’m not sure yet why the command run in the context of a snapin doesn’t work.

                                Have you tried the FogApi powershell module? It's pretty cool IMHO
                                https://github.com/darksidemilk/FogApi
                                https://fogapi.readthedocs.io/en/latest/
                                https://www.powershellgallery.com/packages/FogApi
                                https://forums.fogproject.org/topic/12026/powershell-api-module

                                JJ FullmerJ 1 Reply Last reply Reply Quote 0
                                • JJ FullmerJ
                                  JJ Fullmer Testers @JJ Fullmer
                                  last edited by

                                  @nathan67 @lebrun78

                                  When I configured the snapin with my example script that installs the FogApi Module and runs the universal command with the snapin setup with “powershell x64” like this

                                  a1465243-07f4-4295-a707-7b295fd19e15-image.png

                                  The snapin worked as expected and the host boots to pxe. I only tested this snapin method on a VM so far but I imagine it will work beyond that.

                                  Have you tried the FogApi powershell module? It's pretty cool IMHO
                                  https://github.com/darksidemilk/FogApi
                                  https://fogapi.readthedocs.io/en/latest/
                                  https://www.powershellgallery.com/packages/FogApi
                                  https://forums.fogproject.org/topic/12026/powershell-api-module

                                  1 Reply Last reply Reply Quote 0
                                  • JJ FullmerJ JJ Fullmer referenced this topic on
                                  • 1
                                  • 2
                                  • 1 / 2
                                  • First post
                                    Last post

                                  189

                                  Online

                                  12.0k

                                  Users

                                  17.3k

                                  Topics

                                  155.2k

                                  Posts
                                  Copyright © 2012-2024 FOG Project