Welcome!

Welcome to Satlover forums, full of great people, ideas and excitement.

Please register if you would like to take part. link..

Register Now

Alert: Don't Use Hotmail Email Accounts for registration

Collapse

Before Access to all Forums and Trial accounts you must need to activate your account Email address

PowerShell Enable/Disable DVB Card before starting DVB Program

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cdr_pro
    Junior Member
    • Mar 2011
    • 12

    #16
    Re: PowerShell Enable/Disable DVB Card before starting DVB Program

    .. and this lists only my onboard video chip. :-(

    What's the return value of get-WmiObject?
    Can I get this information from the device manager?

    Comment

    • uttnls

      #17
      Re: PowerShell Enable/Disable DVB Card before starting DVB Program

      Originally posted by cdr_pro
      .. and this lists only my onboard video chip. :-(

      What's the return value of get-WmiObject?
      Can I get this information from the device manager?
      I have no ideea those were listed in that particular section of device manager, i can't figure out how to retrive the divice id on BDA, os2222 what do you think ?

      Comment

      • os2222
        Senior Member
        • Jan 2011
        • 175

        #18
        Re: PowerShell Enable/Disable DVB Card before starting DVB Program

        Originally posted by uttnls
        I have no ideea those were listed in that particular section of device manager, i can't figure out how to retrive the divice id on BDA, os2222 what do you think ?
        you can try to find out which object your card belongs to with this command.
        Get-WmiObject -list | Where-Object {$_.name -match "SOMETHINGTOSEARCHFOR"}
        i hope you`re successful. good luck

        Comment

        • uttnls

          #19
          Re: PowerShell Enable/Disable DVB Card before starting DVB Program

          Originally posted by os2222
          you can try to find out which object your card belongs to with this command.
          Get-WmiObject -list | Where-Object {$_.name -match "SOMETHINGTOSEARCHFOR"}
          i hope you`re successful. good luck
          Allready tried that but you saw the output ?

          Is imens, and if you look for BDA it returns nothing, and now i know why , it was late and i had WDM installed

          cdr_pro try:

          Get-WmiObject -list | Where-Object {$_.Name.Contains("BDA")}

          and return the ouput

          Not using match for now beaucause we don't know the exact name, i think is better with "contains "

          Comment

          • cdr_pro
            Junior Member
            • Mar 2011
            • 12

            #20
            Re: PowerShell Enable/Disable DVB Card before starting DVB Program

            OK, I will try it this evening! :-)
            Thanks!

            Comment

            • cdr_pro
              Junior Member
              • Mar 2011
              • 12

              #21
              Re: PowerShell Enable/Disable DVB Card before starting DVB Program

              I have tried Get-WmiObject -list | Where-Object {$_.Name.Contains("BDA")}
              but it returns nothing. :-(

              Comment

              • uttnls

                #22
                Re: PowerShell Enable/Disable DVB Card before starting DVB Program

                Originally posted by cdr_pro
                I have tried Get-WmiObject -list | Where-Object {$_.Name.Contains("BDA")}
                but it returns nothing. :-(
                Then it looks to me that will be imposible to use that script for BDA drivers.

                You have to switch to old school methods :

                Device Manager -> right click on BDA device Disable

                Device Manager -> right click on BDA device Enable

                It seems the only way at the moment when using BDA drivers

                Comment

                • os2222
                  Senior Member
                  • Jan 2011
                  • 175

                  #23
                  Re: PowerShell Enable/Disable DVB Card before starting DVB Program

                  Originally posted by uttnls
                  Not using match for now beaucause we don't know the exact name, i think is better with "contains "
                  i missed that one. sorry

                  Comment

                  Working...