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.8m 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.
    • 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
                                • scottalanmillerS
                                  scottalanmiller
                                  last edited by

                                  Quite the storm here tonight.

                                  1 Reply Last reply Reply Quote 1
                                  • travisdh1T
                                    travisdh1 @Obsolesce
                                    last edited by

                                    @Obsolesce said in What Are You Doing Right Now:

                                    @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?

                                    Mine is ~450GB for a full. Once a week. Because 10 mb upload is still slow.

                                    AdamFA 1 Reply Last reply Reply Quote 0
                                    • AdamFA
                                      AdamF @travisdh1
                                      last edited by

                                      @travisdh1 So what was your reason for going with Wasabi? VS something like Backblaze?

                                      travisdh1T 1 Reply Last reply Reply Quote 0
                                      • brandon220B
                                        brandon220
                                        last edited by

                                        Is this error related to selinux when trying to run an update in Nextcloud?
                                        ncerror.png

                                        DustinB3403D JaredBuschJ 2 Replies Last reply Reply Quote 0
                                        • DustinB3403D
                                          DustinB3403 @brandon220
                                          last edited by

                                          @brandon220 what are the permissions set to on those folders?

                                          brandon220B 1 Reply Last reply Reply Quote 0
                                          • S
                                            srsmith
                                            last edited by

                                            Dealing with a potential Spectrum Business phone outage - some of our lines work and some result in either a busy signal or a "The person you are trying to reach is not accepting calls at this time" message. Tried chatting with support and am currently number 70 in the queue - looks like we are not alone!

                                            S 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 4443
                                            • 4444
                                            • 2 / 4444
                                            • First post
                                              Last post