• RetiredGeek

    RetiredGeek

    @retiredgeek

    Viewing 15 replies - 1 through 15 (of 10,058 total)
    Author
    Replies
    • in reply to: Convert PowerPoint presentation to Impress #2775201

      Paul,

      Thanks for the reply. One question though…You did all this testing on Windows correct? My problem is with opening the files on Linux Mint.

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: How much I spent on the Mac mini #2774551

      Who was that guy in the video? It must have been the FLASH!
      TheFlash

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: May 2025 updates are out #2774336

      I just updated another “unsupported: computer to the latest Win 11 Pro 24H2.

      This is a mini-pc with a Gibabyte MB (GB-BXi3-5010)
      CPU: i3-5010U

      Notes: Can’t turn on Core Isolation due to incompatible Intel video/audio drivers for the CPU (integrated graphics). If I delete the drivers and turn on Core Isolation and restart the computer boots but with the “Basic Windows Drivers”. The video works OK, but the settings you can change are limited and the Audio doesn’t work at all. The Intel Driver assistant offers no updates.

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

      1 user thanked author for this post.
    • in reply to: May 2025 updates are out #2774316

      Imarci,

      You are correct 24H2 Win 11 Pro. Sorry for the omission!

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

      1 user thanked author for this post.
    • in reply to: May 2025 updates are out #2774307

      May updates installed on my “Canary” machine w/o issue. Note: this is an “UNSUPPORTED” computer:
      Processor: i7-7700
      TPM: 1.2
      May25Updates
      So for now at least MS is still allowing updated on unsupported hardware.

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

      1 user thanked author for this post.
    • in reply to: PowerShell to detect NPU – Testers Needed #2774162

      Susan,

      Thanks for testing! n0ads thanks for the correction.

      Looks like I’ll have to find a way to get my hands on some of these machines for a day or so to sus out what the Classes report on them.

      Thanks Again Y’all!

      RG

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: PowerShell to detect NPU – Testers Needed #2773714

      Susan,

      Let’s try this?
      Change:

      ($_.FriendlyName -match 'SnapDragon(R) X Elite'
      

      To:

      ($_.FriendlyName -Like "*SnapDragon(R) X Elite*"
      

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: PowerShell to detect NPU – Testers Needed #2773663

      Susan,

      If you wouldn’t mind try this code to see if it just shows the last item on your previous output?

      Clear-Host
      
      # Query Device Manager for known NPU device names or categories
      $npus = Get-PnpDevice | Where-Object {
          ($_.Class -eq 'NeuralProcessors')
      }
      
      $npus | Select-Object -Property Class, FriendlyName, Manufacturer, Status | 
              Format-Table -AutoSize
      

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: PowerShell to detect NPU – Testers Needed #2773662

      Susan,

      Thanks! Here’s updated code which should provide the proper output.

      Clear-Host
      
      # Query Device Manager for known NPU device names or 
      # categories
      $npus = Get-PnpDevice | Where-Object {
          ($_.Class -eq 'Processor' -or 
           $_.Class -eq 'Display') -and (
          ($_.FriendlyName -match 'NPU') -or
          ($_.FriendlyName -match 'Neural Processor')      -or
          ($_.FriendlyName -match 'Intel AI Boost')        -or
          ($_.FriendlyName -match 'AMD IPU Device')        -or
          ($_.FriendlyName -match 'SnapDragon(R) X Elite') -or
          ($_.Class -eq 'NeuralProcessors'))
      }
      
      if ($npus) {
          Write-Output "NPU detected:"
          $npus | Select-Object -Property FriendlyName, Manufacturer, Status | Format-Table -AutoSize
      } else {
          Write-Output "No NPU detected on this system."
      }
      

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: PowerShell to detect NPU – Testers Needed #2773479

      Susan,

      Let’s give this a try. It should list every processor in your system.
      This may show what your NPU’s “Friendly Name” is.

      Clear-Host
      
      # Query Device Manager for known NPU device names or categories
      $npus = Get-PnpDevice | Where-Object {
          ($_.Class -eq 'Processor' -or 
           $_.Class -eq 'Display'   -or
           $_.Class -eq 'NeuralProcessors')
      }
      
      $npus | Select-Object -Property FriendlyName, Manufacturer, Status | 
              Format-Table -AutoSize
      

      Thanks for testing!

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: Blocking Search (on task bar) from going to web #2773413

      How to run a PowerShell script

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: Copilot, under the table #2773079

      No context menu items for Co-Pilot here:
      Word:
      word-context
      Excel:
      Excel-Context
      PowerPoint:
      PowerPoint-Context
      Before you ask, I scrolled both the Excel and PP menus and still not Co-Pilot.

      I’ve completely eliminated Co-Pilot from my machines!

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: Blocking Search (on task bar) from going to web #2772728

      Yes it will work on W10

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: *Some settings are managed by your organization #2772619

      Paul,

      The HOME versions do not have Group Policy.

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    • in reply to: Blocking Search (on task bar) from going to web #2772615

      Henry,

      Try setting these three items:
      DisableWebSearch

      If you don’t want to do them manually you can download my PowerShell program:
      CMsStdSettingsForm.ps1 from my shared OneDrive folder.

      Note: You’ll actually download the CMsStdSettingsForm.zip file.

      Be sure to read the help at the beginning of the file.

      You can also use the PowerShell command: Get-Help d:\path\CMsStdSettingsForm.ps1 command to read the file.

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

    Viewing 15 replies - 1 through 15 (of 10,058 total)