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

    What Are You Doing Right Now

    Water Closet
    time waster
    285
    88.9k
    41.3m
    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.
    • WrCombsW
      WrCombs @thwr
      last edited by

      @thwr said in What Are You Doing Right Now:

      @WrCombs said in What Are You Doing Right Now:

      @scottalanmiller said in What Are You Doing Right Now:

      @thwr said in What Are You Doing Right Now:

      BTW @WrCombs: If you want to learn something really useful, learn PowerShell.

      Did you watch my video? πŸ˜‰

      Not quite, Just purchased a powershell book though.

      Forget about books. They are old when they hit the shelves. I think I own about... erm... maybe 15 IT books? Most of them are 15-20 years old, some are about programming languages, two are about SharePoint installation and administration.

      Essentially everything you need can be found online.

      Oh okay

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

        Everything Slowed wayyy down as of 20 minutes ago.

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

          @thwr said in What Are You Doing Right Now:

          @WrCombs said in What Are You Doing Right Now:

          @scottalanmiller said in What Are You Doing Right Now:

          @thwr said in What Are You Doing Right Now:

          BTW @WrCombs: If you want to learn something really useful, learn PowerShell.

          Did you watch my video? πŸ˜‰

          Not quite, Just purchased a powershell book though.

          Forget about books. They are old when they hit the shelves. I think I own about... erm... maybe 15 IT books? Most of them are 15-20 years old, some are about programming languages, two are about SharePoint installation and administration.

          Essentially everything you need can be found online.

          I keep one because it is autographed.

          1 Reply Last reply Reply Quote 1
          • scottalanmillerS
            scottalanmiller @WrCombs
            last edited by

            @WrCombs said in What Are You Doing Right Now:

            Everything Slowed wayyy down as of 20 minutes ago.

            Like... workload slowed down? Or the computers are dying?

            thwrT WrCombsW 2 Replies Last reply Reply Quote 0
            • thwrT
              thwr @scottalanmiller
              last edited by

              @scottalanmiller said in What Are You Doing Right Now:

              @WrCombs said in What Are You Doing Right Now:

              Everything Slowed wayyy down as of 20 minutes ago.

              Like... workload slowed down? Or the computers are dying?

              ML is slow.

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

                @thwr said in What Are You Doing Right Now:

                @scottalanmiller said in What Are You Doing Right Now:

                @WrCombs said in What Are You Doing Right Now:

                Everything Slowed wayyy down as of 20 minutes ago.

                Like... workload slowed down? Or the computers are dying?

                ML is slow.

                Ah, I've been on the phone. That must be it.

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

                  @scottalanmiller said in What Are You Doing Right Now:

                  @WrCombs said in What Are You Doing Right Now:

                  Everything Slowed wayyy down as of 20 minutes ago.

                  Like... workload slowed down? Or the computers are dying?

                  Workload, Life, ML

                  1 Reply Last reply Reply Quote 0
                  • thwrT
                    thwr @scottalanmiller
                    last edited by

                    @scottalanmiller said in What Are You Doing Right Now:

                    @thwr said in What Are You Doing Right Now:

                    @scottalanmiller said in What Are You Doing Right Now:

                    @WrCombs said in What Are You Doing Right Now:

                    Everything Slowed wayyy down as of 20 minutes ago.

                    Like... workload slowed down? Or the computers are dying?

                    ML is slow.

                    Ah, I've been on the phone. That must be it.

                    Your spamming skill knowledge transfer rate was better a few years ago πŸ˜›

                    1 Reply Last reply Reply Quote 1
                    • black3dynamiteB
                      black3dynamite @WrCombs
                      last edited by black3dynamite

                      @WrCombs said in What Are You Doing Right Now:

                      @scottalanmiller said in What Are You Doing Right Now:

                      @thwr said in What Are You Doing Right Now:

                      BTW @WrCombs: If you want to learn something really useful, learn PowerShell.

                      Did you watch my video? πŸ˜‰

                      Not quite, Just purchased a powershell book though.

                      It's more easier to get into using PowerShell if you start out with a task that you do often. And then search online showing examples on how to implement those tasks via PowerShell.

                      scottalanmillerS 1 Reply Last reply Reply Quote 3
                      • scottalanmillerS
                        scottalanmiller @black3dynamite
                        last edited by

                        @black3dynamite said in What Are You Doing Right Now:

                        @WrCombs said in What Are You Doing Right Now:

                        @scottalanmiller said in What Are You Doing Right Now:

                        @thwr said in What Are You Doing Right Now:

                        BTW @WrCombs: If you want to learn something really useful, learn PowerShell.

                        Did you watch my video? πŸ˜‰

                        Not quite, Just purchased a powershell book though.

                        It's more easier to get into using PowerShell if you start out with a task that you do often. And then search online showing examples on how to implement those tasks via PowerShell.

                        Yeah, there is maybe 5 minutes of PS basics you should read about. Like how it is object based, what are commandlets, etc. Then, dive in. Sure, read more, but not first. Start with... actually doing basic things at the command line in PS.

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

                          Morning everyone!

                          thwrT 1 Reply Last reply Reply Quote 0
                          • thwrT
                            thwr
                            last edited by

                            Here, something to play with:

                            Get-WmiObject -Class Win32_PhysicalMemory | Select-Object Manufacturer,@{Name="Size (GB)"; Expression={[math]::round($_.Capacity/1GB, 2)}},Configuredclockspeed,Banklabel,Devicelocator,Serialnumber | Format-Table -AutoSize
                            

                            Also works (like many other things in PowerShell) on remote machines

                            Get-WmiObject -Class Win32_PhysicalMemory -ComputerName xxx | Select-Object Manufacturer,@{Name="Size (GB)"; Expression={[math]::round($_.Capacity/1GB, 2)}},Configuredclockspeed,Banklabel,Devicelocator,Serialnumber | Format-Table -AutoSize
                            

                            Source:

                            • https://sid-500.com/2017/07/05/powershell-show-memory-ram-by-manufacturer-speed-serial-number-and-capacity/
                            • https://4sysops.com/archives/convert-bytes-to-gigabytes-with-powershell/
                            1 Reply Last reply Reply Quote 0
                            • thwrT
                              thwr @scottalanmiller
                              last edited by

                              @scottalanmiller said in What Are You Doing Right Now:

                              Morning everyone!

                              Morning? Already made an apple pie, visited my parents, went shopping and just got back πŸ˜‰

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

                                Setting up a new pc for a client.
                                0BE853F1-D7E6-409A-AD84-A5B4D02042B1.jpeg

                                black3dynamiteB 1 Reply Last reply Reply Quote 0
                                • JaredBuschJ
                                  JaredBusch
                                  last edited by

                                  Starting the system off with the credge
                                  0B2582F4-4ADC-4F58-9795-AD902F2B6629.jpeg

                                  1 Reply Last reply Reply Quote 0
                                  • black3dynamiteB
                                    black3dynamite @JaredBusch
                                    last edited by

                                    @JaredBusch said in What Are You Doing Right Now:

                                    Setting up a new pc for a client.
                                    0BE853F1-D7E6-409A-AD84-A5B4D02042B1.jpeg

                                    That’s a lot of flash drives.

                                    JaredBuschJ 1 Reply Last reply Reply Quote 0
                                    • JaredBuschJ
                                      JaredBusch @black3dynamite
                                      last edited by

                                      @black3dynamite said in What Are You Doing Right Now:

                                      @JaredBusch said in What Are You Doing Right Now:

                                      Setting up a new pc for a client.
                                      0BE853F1-D7E6-409A-AD84-A5B4D02042B1.jpeg

                                      That’s a lot of flash drives.

                                      Going to be making a bunch of 1909 drives to speed updates on tech laptops in the field.

                                      thwrT 1 Reply Last reply Reply Quote 0
                                      • thwrT
                                        thwr @JaredBusch
                                        last edited by

                                        @JaredBusch said in What Are You Doing Right Now:

                                        @black3dynamite said in What Are You Doing Right Now:

                                        @JaredBusch said in What Are You Doing Right Now:

                                        Setting up a new pc for a client.
                                        0BE853F1-D7E6-409A-AD84-A5B4D02042B1.jpeg

                                        That’s a lot of flash drives.

                                        Going to be making a bunch of 1909 drives to speed updates on tech laptops in the field.

                                        Reminds me of this guy who "demonstrated" ZFS RAID using tons of USB flash drives. Wasn't this video, but something like that:

                                        Youtube Video

                                        JaredBuschJ 1 Reply Last reply Reply Quote 0
                                        • JaredBuschJ
                                          JaredBusch @thwr
                                          last edited by

                                          @thwr At least these will be going to a bunch of people scattered around Illinois and Missouri, and have like a real purpose.

                                          1 Reply Last reply Reply Quote 1
                                          • EddieJenningsE
                                            EddieJennings
                                            last edited by

                                            Just finished updating Citrix PVS images.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3883
                                            • 3884
                                            • 3885
                                            • 3886
                                            • 3887
                                            • 4443
                                            • 4444
                                            • 3885 / 4444
                                            • First post
                                              Last post