ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. psophos
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 5
    • Groups 0

    psophos

    @psophos

    0
    Reputation
    53
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    psophos Unfollow Follow

    Latest posts made by psophos

    • RE: Online IT education sites?

      I've been a pretty satisfied paying customer of Pluralsight customer for a few years now.

      Another option could be: https://subscribe.packtpub.com/
      A different take, could be interesting for you.

      As for Udemy, they have "issues":
      https://www.theverge.com/2015/11/29/9813780/udemy-pirated-course-copyright-troy-hunt
      While that article is from 2015, it seems that not a lot has changed:
      https://twitter.com/troyhunt/status/1102905241027006464

      Personally I will spend my money elsewhere.

      posted in IT Discussion
      P
      psophos
    • RE: Random Thread - Anything Goes

      Have an earworm: https://www.youtube.com/watch?v=34CZjsEI1yU
      I insist 🙂

      posted in Water Closet
      P
      psophos
    • RE: Discrepancy in Powershell version reporting.

      What version of .net is installed on the server?

      I'm failing to remember which version of Powershell had a hard but silent requirement for a particular version of .net.
      If memory serves it would install successfully (no errors) but would actually fail to install if the correct ver of .net was not already installed.

      posted in IT Discussion
      P
      psophos
    • RE: Powershell suppress specific error message and not others

      Why not filter out the files that you don't need to rename?
      Summat like:

      (Get-ChildItem -Path "path\to\folder" -Recurse | 
              Where-Object {$_.Name -contains '•'} |
              Rename-Item -NewName {$_.Name -replace '•',''} -verbose -ErrorAction SilentlyContinue -ErrorVariable daError)
      
      
      posted in IT Discussion
      P
      psophos
    • RE: File Management removing unprintable characters

      @dafyre You might want to throw in an if statement there to check that the names are different before you rename.
      I'm assuming the ren will rename the file even if the names are the same, but maybe it won't. Some very light testing suggests it may (no errors thrown).

      posted in IT Discussion
      P
      psophos