Navigation

    ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. wrx7m
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    wrx7m

    @wrx7m

    863
    Reputation
    2919
    Posts
    2316
    Profile views
    3
    Followers
    2
    Following
    Joined Last Online
    Location SoCal Age 41

    wrx7m Follow

    Posts made by wrx7m

    • RE: Miscellaneous Tech News

      Object storage in NEW Veeam Backup for Microsoft Office 365 v4
      https://www.veeam.com/blog/object-storage-new-office-365-backup-v4.html
      *Object Storage support

      Starting from version 4, you will be able to leverage Object Storage to offload your Office 365 data. You can choose from different providers such as Amazon S3, Microsoft Azure Blob, IBM Cloud or S3 compatible object storage providers or even on-premises object storage.*

      posted in News
      wrx7m
    • RE: RDS 2019 Setup and RDS License Role

      @PhlipElder said in RDS 2019 Setup and RDS License Role:

      @wrx7m said in RDS 2019 Setup and RDS License Role:

      When using UPD, is there anyway to access various users profiles' folders and files from the RDS server file system?
      Example:
      C:\Users\Bob\Desktop

      Edit: I found that I can path to it via UNC (\ \server\c$\users\Bob\Desktop), but get permissions error when I go locally, from C:\Users\Bob\Desktop. Also, the Bob folder is only a shortcut (LNK file) in the users directory.

      The path is there in the form of a symbolic link. So, no. It's one way to limit exposure to ransomware.

      If there is a need, the user can be logged off and one can mount the .VHDX file to gain access to whatever is needed.

      Yeah, I fairly often have to copy files into a user profile here and there. I did notice that the disk is only mounted for the duration of their session and obviously would prevent interaction with it if the user is logged out. But, mounting the VHDX isn't that bad... if I had to do it when they were logged out. I would have to revisit a tool I just saw somewhere that allows you to quickly match the VHDX file with the user, since it only uses the SID in the file name.

      posted in IT Discussion
      wrx7m
    • RE: RDS 2019 Setup and RDS License Role

      When using UPD, is there anyway to access various users profiles' folders and files from the RDS server file system?
      Example:
      C:\Users\Bob\Desktop

      Edit: I found that I can path to it via UNC (\ \server\c$\users\Bob\Desktop), but get permissions error when I go locally, from C:\Users\Bob\Desktop. Also, the Bob folder is only a shortcut (LNK file) in the users directory.

      posted in IT Discussion
      wrx7m
    • RE: PowerShell - Add-ADGroupMember Script - Improvements?

      @Obsolesce Thanks for the contribution. I think you are right about that being more work, though.

      posted in IT Discussion
      wrx7m
    • RE: PowerShell - Add-ADGroupMember Script - Improvements?

      @flaxking said in PowerShell - Add-ADGroupMember Script - Improvements?:

      @wrx7m said in PowerShell - Add-ADGroupMember Script - Improvements?:

      @flaxking said in PowerShell - Add-ADGroupMember Script - Improvements?:

      When HR does the hand-off to you what information do they give you? Most likely the new staff member's role

      Usually the role can be the abstraction layer on top these groups (one-offs aside). So you could create role-based groups with the appropriate groups nested within.

      That is true. At least, to some extent. It would definitely cut down on the number of options. Most are grouped by role or service specific, so I could combine them (nested) under respective groups.

      I worked at one company where HR always named a specific user the wanted the new user to have the same permissions as. So it was a user copy operation instead. That would be like a template method.

      That could work if we were larger. A lot of positions here are only a single user.

      posted in IT Discussion
      wrx7m
    • RE: PowerShell - Add-ADGroupMember Script - Improvements?

      @NDC said in PowerShell - Add-ADGroupMember Script - Improvements?:

      @wrx7m

      I'm working on similar project a bit.

      The script I'm working with pulls a bunch of info from CSV to create an AD account and populate.

      Group membership is based heavily on location and job role here.

      I'm thinking I'll use some of the info in the CSV about those attributes to help assign groups using If statements.

      Curious what other ideas people may have for this.

      Yeah, I have been trying to get to that point, myself. Slow going, so far. I am trying to figure out how to start using the "Department" field in the AD user properties for a Roles-based approach.

      posted in IT Discussion
      wrx7m
    • RE: PowerShell - Add-ADGroupMember Script - Improvements?

      @flaxking said in PowerShell - Add-ADGroupMember Script - Improvements?:

      When HR does the hand-off to you what information do they give you? Most likely the new staff member's role

      Usually the role can be the abstraction layer on top these groups (one-offs aside). So you could create role-based groups with the appropriate groups nested within.

      That is true. At least, to some extent. It would definitely cut down on the number of options. Most are grouped by role or service specific, so I could combine them (nested) under respective groups.

      posted in IT Discussion
      wrx7m
    • RE: Windows 10 1909 is Official

      @DustinB3403 said in Windows 10 1909 is Official:

      What I'm finding more and more annoyingly about Windows is that Teams keeps installing itself.

      If I wanted Teams on my gaming computer I'd install it. I don't need it pushed out as some critical security patch.

      I have only seen this if you also install SFB. If I exclude SFB (and Teams) in click-to-run, it doesn't auto install Teams.

      posted in IT Discussion
      wrx7m
    • RE: Windows 10 1909 is Official

      Bah. I just finished getting everyone that was on 1809, to 1903. lol 😐

      posted in IT Discussion
      wrx7m
    • PowerShell - Add-ADGroupMember Script - Improvements?

      As part of my user on-boarding PowerShell script, I have a list of AD groups that cover the most common groups assigned "by default". The problem is that I have to manually go in and comment or "un-comment" the lines for the groups to which the user should be added as a member. I have excerpted this section of the script to use for role/job changes.

      Here is an example:

      Import-Module ActiveDirectory
      $sAMAccountName = Read-Host -Prompt "Enter sAMAccountName"
      #Add-ADGroupMember -Identity Office365Users -Members $sAMAccountName
      #Add-ADGroupMember -Identity SmartsheetUsers -Members $sAMAccountName
      #Add-ADGroupMember -Identity "Office Users" -Members $sAMAccountName
      #Add-ADGroupMember -Identity SlackUsers -Members $sAMAccountName
      #Add-ADGroupMember -Identity "Accounting Users" -Members $sAMAccountName
      Add-ADGroupMember -Identity SouthWareUsers -Members $sAMAccountName
      Add-ADGroupMember -Identity VPNUsers -Members $sAMAccountName
      Add-ADGroupMember -Identity OpenVPNUsers -Members $sAMAccountName
      Add-ADGroupMember -Identity TerminalServiceUsers -Members $sAMAccountName
      

      Is there a better way to interact with, or even automate, the process of selecting which groups to add the user?

      posted in IT Discussion
      wrx7m