ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    What Are You Doing Right Now

    Scheduled Pinned Locked Moved Water Closet
    time waster
    88.9k Posts 285 Posters 42.3m Views
    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.
    • scottalanmillerS
      scottalanmiller
      last edited by

      Coffee and sunshine around here.

      1 Reply Last reply Reply Quote 0
      • WrCombsW
        WrCombs
        last edited by

        looking into why this PC has restarted 30 times in the in 25 days.
        this is fun.
        events just tell me that its restarting, no other errors before or after and restarts 3 times in a row then it's good for a while.

        RojoLocoR 1 Reply Last reply Reply Quote 0
        • RojoLocoR
          RojoLoco @WrCombs
          last edited by

          @WrCombs said in What Are You Doing Right Now:

          looking into why this PC has restarted 30 times in the in 25 days.
          this is fun.
          events just tell me that its restarting, no other errors before or after and restarts 3 times in a row then it's good for a while.

          Probably has some kind of OCD where it need to do everything 3 times to retain its sanity.

          WrCombsW 1 Reply Last reply Reply Quote 0
          • WrCombsW
            WrCombs @RojoLoco
            last edited by

            @RojoLoco said in What Are You Doing Right Now:

            @WrCombs said in What Are You Doing Right Now:

            looking into why this PC has restarted 30 times in the in 25 days.
            this is fun.
            events just tell me that its restarting, no other errors before or after and restarts 3 times in a row then it's good for a while.

            Probably has some kind of OCD where it need to do everything 3 times to retain its sanity.

            potentially.

            1 Reply Last reply Reply Quote 0
            • ObsolesceO
              Obsolesce @scottalanmiller
              last edited by

              @scottalanmiller said in What Are You Doing Right Now:

              @Obsolesce said in What Are You Doing Right Now:

              @scottalanmiller said in What Are You Doing Right Now:

              P30 has a decent amount of true zoom, first one of its type to do it. It's a huge breakthrough. That's what put it on my radar initially.

              https://www.thurrott.com/mobile/205906/huawei-p30-pro-first-impressions?utm_source=rss&utm_medium=rss&utm_campaign=huawei-p30-pro-first-impressions

              Looks awesome. I told my wife about it. She's in need of a new phone.

              Oh, let me know how she likes it if she tests it. I really want one.

              It depends on how much longer she wants her current one. She'd use it until the screen falls off if I never say anything.

              1 Reply Last reply Reply Quote 0
              • ObsolesceO
                Obsolesce @EddieJennings
                last edited by

                @EddieJennings said in What Are You Doing Right Now:

                Oh, PowerShell! How I love thee! Especially when you give me error messages despite having -ErrorAction SilentlyContinue specified in the command.

                What kind of error is it, terminating? Try not using erroraction and use void.

                But you don't want to not see them. You need to handle them appropriately. Use errorvariable to handle it easily.

                If it's terminating error, use try/catch/finally.

                EddieJenningsE 1 Reply Last reply Reply Quote 0
                • EddieJenningsE
                  EddieJennings @Obsolesce
                  last edited by

                  @Obsolesce said in What Are You Doing Right Now:

                  @EddieJennings said in What Are You Doing Right Now:

                  Oh, PowerShell! How I love thee! Especially when you give me error messages despite having -ErrorAction SilentlyContinue specified in the command.

                  What kind of error is it, terminating? Try not using erroraction and use void.

                  But you don't want to not see them. You need to handle them appropriately. Use errorvariable to handle it easily.

                  If it's terminating error, use try/catch/finally.

                  foreach ( $comp in $serversOnline ) {
                      if ( Get-Service -ComputerName $comp -DisplayName "Cisco Amp*" -ErrorAction SilentlyContinue ) {
                          $serversWithAmp += $comp
                      }
                      else {
                          $serversWithoutAmp += $comp
                      }
                  }
                  

                  Yes, I don't want to see them :). In the end it won't matter, because this will be a scheduled task. It would just be nice to not see blood on the screen during testing. There are a few cmdlets that behave like this as well. If you curious, this is the error.

                  Get-Service : Cannot open Service Control Manager on computer 'SOMESERVERNAME'. This operation might require other privileges.
                  At line:9 char:10
                  +     if ( Get-Service -ComputerName $comp -DisplayName "Cisco Amp*" -E ...
                  +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                      + CategoryInfo          : NotSpecified: (:) [Get-Service], InvalidOperationException
                      + FullyQualifiedErrorId : System.InvalidOperationException,Microsoft.PowerShell.Commands.GetServiceCommand
                  
                  ObsolesceO 1 Reply Last reply Reply Quote 0
                  • DustinB3403D
                    DustinB3403
                    last edited by DustinB3403

                    Making some changes to the XOCE script as the dev team introduced a new banner at the top of the page that says something to the affect of "you don't get support with the source version".

                    I've removed the change and need some people to test.

                    Paging @Danp @bnrstnr

                    The build fails on 19.04 use 18.04 LTS for now.

                    1 Reply Last reply Reply Quote 0
                    • ObsolesceO
                      Obsolesce @EddieJennings
                      last edited by

                      @EddieJennings said in What Are You Doing Right Now:

                      @Obsolesce said in What Are You Doing Right Now:

                      @EddieJennings said in What Are You Doing Right Now:

                      Oh, PowerShell! How I love thee! Especially when you give me error messages despite having -ErrorAction SilentlyContinue specified in the command.

                      What kind of error is it, terminating? Try not using erroraction and use void.

                      But you don't want to not see them. You need to handle them appropriately. Use errorvariable to handle it easily.

                      If it's terminating error, use try/catch/finally.

                      foreach ( $comp in $serversOnline ) {
                          if ( Get-Service -ComputerName $comp -DisplayName "Cisco Amp*" -ErrorAction SilentlyContinue ) {
                              $serversWithAmp += $comp
                          }
                          else {
                              $serversWithoutAmp += $comp
                          }
                      }
                      

                      Yes, I don't want to see them :). In the end it won't matter, because this will be a scheduled task. It would just be nice to not see blood on the screen during testing. There are a few cmdlets that behave like this as well. If you curious, this is the error.

                      Get-Service : Cannot open Service Control Manager on computer 'SOMESERVERNAME'. This operation might require other privileges.
                      At line:9 char:10
                      +     if ( Get-Service -ComputerName $comp -DisplayName "Cisco Amp*" -E ...
                      +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                          + CategoryInfo          : NotSpecified: (:) [Get-Service], InvalidOperationException
                          + FullyQualifiedErrorId : System.InvalidOperationException,Microsoft.PowerShell.Commands.GetServiceCommand
                      

                      What happens if there is an error now? Does it continue with the next one or does it stop the script? It looks non terminating, so it really doesn't matter. It looks like there is zero error handling and logging.

                      Just run it as a scheduled task then and move on if you don't want to do anything more.

                      EddieJenningsE 1 Reply Last reply Reply Quote 0
                      • WrCombsW
                        WrCombs
                        last edited by

                        me and my co worker were going through calls and he said " i dont want to take half of the calls you do.
                        You purposely take the harder, more confusing calls, instead of leaving them for someone else, why ?"

                        my response was " 🙂 "

                        he is right though. I take the very confusing calls and the ones that require you to actually think rather than just go through the motions , and do little bits of troubleshooting to fix the issues.

                        WrCombsW 1 Reply Last reply Reply Quote 0
                        • WrCombsW
                          WrCombs @WrCombs
                          last edited by

                          @WrCombs said in What Are You Doing Right Now:

                          me and my co worker were going through calls and he said " i dont want to take half of the calls you do.
                          You purposely take the harder, more confusing calls, instead of leaving them for someone else, why ?"

                          my response was " 🙂 "

                          he is right though. I take the very confusing calls and the ones that require you to actually think rather than just go through the motions , and do little bits of troubleshooting to fix the issues.

                          for example, I take all of the Windows OS calls.
                          Issues with Windows, programmable printers, I take the networking calls as often as I can,

                          That doesn't mean that's all I work on, but those are the ones I enjoy working on the most.

                          DustinB3403D 1 Reply Last reply Reply Quote 0
                          • DustinB3403D
                            DustinB3403 @WrCombs
                            last edited by

                            @WrCombs said in What Are You Doing Right Now:

                            programmable printers

                            ?

                            Are you programming printers now? Are you actually curtis?

                            WrCombsW 1 Reply Last reply Reply Quote 1
                            • JaredBuschJ
                              JaredBusch
                              last edited by

                              Arguing with Citibank.

                              They changed the payee I setup form paid by check to pay electronically and matched the name to their system.

                              But the payee name is wrong in their system, hence why I set it up and a pay by check payee. Thus my home loan failed to pay.

                              1 Reply Last reply Reply Quote 0
                              • WrCombsW
                                WrCombs @DustinB3403
                                last edited by

                                @DustinB3403 said in What Are You Doing Right Now:

                                @WrCombs said in What Are You Doing Right Now:

                                programmable printers

                                ?

                                Are you programming printers now? Are you actually curtis?

                                I was wondering if someone would catch that .

                                1 Reply Last reply Reply Quote 0
                                • EddieJenningsE
                                  EddieJennings @Obsolesce
                                  last edited by

                                  @Obsolesce said in What Are You Doing Right Now:

                                  What happens if there is an error now? Does it continue with the next one or does it stop the script? It looks non terminating, so it really doesn't matter. It looks like there is zero error handling and logging.

                                  Just run it as a scheduled task then and move on if you don't want to do anything more.

                                  Yeah. It's non-terminating. Just annoying to see during testing :).

                                  1 Reply Last reply Reply Quote 0
                                  • scottalanmillerS
                                    scottalanmiller
                                    last edited by

                                    Trying to go to lunch, but stuck waiting for someone to figure out their QuickBooks password to test a file.

                                    1 Reply Last reply Reply Quote 0
                                    • travisdh1T
                                      travisdh1
                                      last edited by

                                      Thankful I have QoS setup sanely at home here. Figured out the last issue I had with XCP-ng, XO, and backing up to Wasabi. Now my internet connection is pegged 🙂

                                      dc3b02cb-8a7a-4b48-98b0-58e22f96034c-image.png

                                      dafyreD 1 Reply Last reply Reply Quote 2
                                      • valentinaV
                                        valentina
                                        last edited by

                                        Afternoon coffee It's finally raining here

                                        1 Reply Last reply Reply Quote 1
                                        • dafyreD
                                          dafyre @travisdh1
                                          last edited by

                                          @travisdh1 said in What Are You Doing Right Now:

                                          Thankful I have QoS setup sanely at home here. Figured out the last issue I had with XCP-ng, XO, and backing up to Wasabi. Now my internet connection is pegged 🙂

                                          dc3b02cb-8a7a-4b48-98b0-58e22f96034c-image.png

                                          Mine is still running... 5mb/sec at 55 hours in... According to the ETA, I have another 102 hours to go, lol.

                                          ObsolesceO 1 Reply Last reply Reply Quote 1
                                          • ObsolesceO
                                            Obsolesce @dafyre
                                            last edited by

                                            @dafyre said in What Are You Doing Right Now:

                                            @travisdh1 said in What Are You Doing Right Now:

                                            Thankful I have QoS setup sanely at home here. Figured out the last issue I had with XCP-ng, XO, and backing up to Wasabi. Now my internet connection is pegged 🙂

                                            dc3b02cb-8a7a-4b48-98b0-58e22f96034c-image.png

                                            Mine is still running... 5mb/sec at 55 hours in... According to the ETA, I have another 102 hours to go, lol.

                                            When is the next backup? How big?

                                            travisdh1T dafyreD 2 Replies Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 25
                                            • 26
                                            • 27
                                            • 28
                                            • 29
                                            • 4443
                                            • 4444
                                            • 27 / 4444
                                            • First post
                                              Last post