Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Win10 Strikes again: More Bad (new) UI/UX

Win10 Strikes again: More Bad (new) UI/UX

Scheduled Pinned Locked Moved The Lounge
designcomdata-structuresperformancehelp
46 Posts 12 Posters 3 Views 1 Watching
  • 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.
  • D dandy72

    Get a 4K monitor. :-) I'm currently counting 19 items on the taskbar (excluding the Cortana and Task View icons), and it's not even using one third of the available width.

    raddevusR Offline
    raddevusR Offline
    raddevus
    wrote on last edited by
    #37

    dandy72 wrote:

    and it's not even using one third of the available width.

    ...width?? Oh, wait, you have the taskbar at the bottom (horizontal). That's old school. Mine's on the left side (vertical). It makes sense if you think about it since screens are so wide now. I've made a lot of converts to this new TaskBar Vertical Way. If you try it for a few minutes, you'll change too. :rolleyes: Now, I've planted the idea you can't not try it. :laugh: And, yes, at work I have two screens and it is on the left side of my right screen and it works great. It's right there in the middle of the desktop. :thumbsup: What can I say, I'm amazingly innovative. :-\ :laugh:

    D 1 Reply Last reply
    0
    • raddevusR raddevus

      dandy72 wrote:

      and it's not even using one third of the available width.

      ...width?? Oh, wait, you have the taskbar at the bottom (horizontal). That's old school. Mine's on the left side (vertical). It makes sense if you think about it since screens are so wide now. I've made a lot of converts to this new TaskBar Vertical Way. If you try it for a few minutes, you'll change too. :rolleyes: Now, I've planted the idea you can't not try it. :laugh: And, yes, at work I have two screens and it is on the left side of my right screen and it works great. It's right there in the middle of the desktop. :thumbsup: What can I say, I'm amazingly innovative. :-\ :laugh:

      D Offline
      D Offline
      dandy72
      wrote on last edited by
      #38

      Ok, so my 19 (+2) icons are taking roughly half the vertical space on the 4K monitor. FWIW, I've used vertical taskbars for a good while, years ago. I'm somewhat ambivalent; I can take it or leave it. One of my secondary monitors is arranged vertically (1200x1920)--even though it's great for long web pages or coding windows (which benefit from being taller than wide), a vertical taskbar is definitely a non-starter on *that* monitor, as you're already left with very little space horizontally. And I *hate* auto-collapsing taskbars, so I'm not even going there.

      raddevusR 1 Reply Last reply
      0
      • D dandy72

        Jacek Gajek wrote:

        *A friend or whoever comes to a visit* - Hey, what's a pass to WI-FI? - Give me a second, I will check in the settings... uhm, oh... uhuh.... aaah...

        I've solved that problem with a PowerShell script. Sorry about the formatting - it insists on pasting it that way.

        $output = netsh wlan show profiles
        $profiles = @()

        foreach ( $line in $output )
        {
        $index = $line.LastIndexOf( ": " )
        if ( $index -eq -1 ) { continue }
        $afterColon = $line.Substring( $index + 2 )
        if ( $afterColon.Trim() -ne "" ) { $profiles += $afterColon }
        }

        $profilesWithPasswords = @()
        foreach ( $profile in $profiles | Sort-Object )
        {
        $output = netsh wlan show profiles "$profile" key=clear
        $pwd = ""
        $authentication = ""

        foreach ( $line in $output )
        {
            $index = $line.LastIndexOf( "Authentication" )
            if ( $index -ne -1 )
            {
                $index = $line.LastIndexOf( ": " )
                if ( $index -eq -1 ) { $authentication = "" }
                else { $authentication = $line.Substring( $index + 2 ) }
                continue
            }
        
            $index = $line.LastIndexOf( "Key Content" )
            if ( $index -ne -1 )
            {
                $index = $line.LastIndexOf( ": " )
                if ( $index -eq -1 ) { continue }
        
                $pwd = $line.Substring( $index + 2 ).Trim()
                continue
            }
        }
        if ( $pwd -eq "" )
        {
            if ( $authentication -ne "Open" ) { $pwd = "" }
            #else { $pwd = "" }
        }
        $profilesWithPasswords += New-Object -TypeName PSObject -Prop ( @{ 'Profile'=$profile; 'Password'=$pwd } )
        

        }
        Write-Host "Found $($profilesWithPasswords.Count) wifi profiles:"
        $profilesWithPasswords | Format-Table Profile, Password

        L Offline
        L Offline
        Lutoslaw
        wrote on last edited by
        #39

        ...seriously? Not saying that I know every XKCD comic, but I totally do... and that solution reminds another one: xkcd: Command Line Fu[^]

        D 1 Reply Last reply
        0
        • L Lutoslaw

          ...seriously? Not saying that I know every XKCD comic, but I totally do... and that solution reminds another one: xkcd: Command Line Fu[^]

          D Offline
          D Offline
          dandy72
          wrote on last edited by
          #40

          Well, I don't know of any way, with the UI, to show *all* passwords for *all* Wi-Fi profiles that the system has *ever* connected to. So the script has other uses.

          1 Reply Last reply
          0
          • raddevusR raddevus

            Jörgen Andersson wrote:

            So allow me to introduce the Apple Pencil - Apple[^]

            :laugh: :laugh: :laugh: I know. My son has an iPad that he uses for notes at college and it really works for him but when I saw that he had purchased a stylus I was like screaming, "Steve Jobs killed my stylus and now they're back?!?!!!!! No way!!!" Remember how Jobs ranted against the stylus saying no one wanted to use them. Arghghghgggg!!!!

            S Offline
            S Offline
            S Douglas
            wrote on last edited by
            #41

            Had to kill them off so they could invent them! :laugh:


            Common sense is admitting there is cause and effect and that you can exert some control over what you understand.

            raddevusR 1 Reply Last reply
            0
            • L Lutoslaw

              *A friend or whoever comes to a visit* - Hey, what's a pass to WI-FI? - Give me a second, I will check in the settings... uhm, oh... uhuh.... aaah... Navigating new-old Win 10 UI reminds me this comic: xkcd: Troubleshooting[^]

              S Offline
              S Offline
              S Douglas
              wrote on last edited by
              #42

              A dialog\App off screen is the one that pisses me off. :mad: Even more so when the {win} + {Arrow} key combo don't work.


              Common sense is admitting there is cause and effect and that you can exert some control over what you understand.

              1 Reply Last reply
              0
              • D dandy72

                Ok, so my 19 (+2) icons are taking roughly half the vertical space on the 4K monitor. FWIW, I've used vertical taskbars for a good while, years ago. I'm somewhat ambivalent; I can take it or leave it. One of my secondary monitors is arranged vertically (1200x1920)--even though it's great for long web pages or coding windows (which benefit from being taller than wide), a vertical taskbar is definitely a non-starter on *that* monitor, as you're already left with very little space horizontally. And I *hate* auto-collapsing taskbars, so I'm not even going there.

                raddevusR Offline
                raddevusR Offline
                raddevus
                wrote on last edited by
                #43

                dandy72 wrote:

                Ok, so my 19 (+2) icons are taking roughly half the vertical space on the 4K monitor.

                :thumbsup: It's all good. I was just kidding about horizontal being old school of course. :)

                D 1 Reply Last reply
                0
                • S S Douglas

                  Had to kill them off so they could invent them! :laugh:


                  Common sense is admitting there is cause and effect and that you can exert some control over what you understand.

                  raddevusR Offline
                  raddevusR Offline
                  raddevus
                  wrote on last edited by
                  #44

                  S Douglas wrote:

                  Had to kill them off so they could invent them

                  So true!! :laugh:

                  1 Reply Last reply
                  0
                  • raddevusR raddevus

                    dandy72 wrote:

                    Ok, so my 19 (+2) icons are taking roughly half the vertical space on the 4K monitor.

                    :thumbsup: It's all good. I was just kidding about horizontal being old school of course. :)

                    D Offline
                    D Offline
                    dandy72
                    wrote on last edited by
                    #45

                    ...but I *am* old-school. :-)

                    raddevusR 1 Reply Last reply
                    0
                    • D dandy72

                      ...but I *am* old-school. :-)

                      raddevusR Offline
                      raddevusR Offline
                      raddevus
                      wrote on last edited by
                      #46

                      dandy72 wrote:

                      ...but I am old-school

                      :thumbsup: Genuine LOL! Me too. :)

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups