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

    Local powershell script to pull AdObject without installing RSAT

    Scheduled Pinned Locked Moved IT Discussion
    42 Posts 6 Posters 6.1k 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.
    • DashrenderD
      Dashrender
      last edited by

      What version of Powershell do your users have?

      1 Reply Last reply Reply Quote 0
      • S
        stess @DustinB3403
        last edited by

        @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

        @stess said in Local powershell script to pull AdObject without installing RSAT:

        @dashrender said in Local powershell script to pull AdObject without installing RSAT:

        @stess said in Local powershell script to pull AdObject without installing RSAT:

        @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

        Is this a Windows 7 pc that would be running this powershell script?

        Yes. Win 7 Pro. PS Logon script

        So you're wanting every user's machine in the company to run this script when they log into their PC?

        Yes. Basically, we want to run this script to pull a value from their AD user object and add the value to existing config file for one of the program we use. It does not have to get Get-ADobject as long as we can grab the value and change it. I am looking into Get-WMIObject but so far it is not working as we want it to.

        EDIT: We use AD to store this value because I feel it's a good centralized place.

        What AD value is your script pulling, we may be able to find the GET-WMI comparable. . (may)

        Telephony > IP Phone
        0_1508785691419_550b89ac-b419-4e30-995e-03e4b01181df-image.png

        @dashrender said in Local powershell script to pull AdObject without installing RSAT:

        @stess said in Local powershell script to pull AdObject without installing RSAT:

        @dashrender said in Local powershell script to pull AdObject without installing RSAT:

        @stess said in Local powershell script to pull AdObject without installing RSAT:

        @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

        Is this a Windows 7 pc that would be running this powershell script?

        Yes. Win 7 Pro. PS Logon script

        So you're wanting every user's machine in the company to run this script when they log into their PC?

        Yes. Basically, we want to run this script to pull a value from their AD user object and add the value to existing config file for one of the program we use. It does not have to get Get-ADobject as long as we can grab the value and change it. I am looking into Get-WMIObject but so far it is not working as we want it to.

        EDIT: We use AD to store this value because I feel it's a good centralized place.

        Are users allowed to change their own ADObjects?

        I can't even get AD commands to run without AD module > which required RSAT > which my manager said he doesn't want it installed for "reasons".

        @dashrender said in Local powershell script to pull AdObject without installing RSAT:

        What version of Powershell do your users have?

        Version 2.0

        1 Reply Last reply Reply Quote 0
        • DustinB3403D
          DustinB3403
          last edited by

          That information is simply readable, by anyone with RSAT.

          Having RSAT installed, doesn't mean people would be able to change or reset passwords or anything else from there.

          But in terms of powershell, with Windows 7 system you will be required to install RSAT.

          S 1 Reply Last reply Reply Quote 0
          • S
            stess @DustinB3403
            last edited by

            @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

            That information is simply readable, by anyone with RSAT.

            Having RSAT installed, doesn't mean people would be able to change or reset passwords or anything else from there.

            But in terms of powershell, with Windows 7 system you will be required to install RSAT.

            Yes. But I cannot goes against my manager's decision (above my pay grade + I don't want headache from arguing with him)

            Alternatively, I could export the data into powershell script itself. Instead of reading from CSV, it reads data from within itself. Not sure how this will goes or is it possible

            DustinB3403D 1 Reply Last reply Reply Quote 0
            • DustinB3403D
              DustinB3403 @stess
              last edited by

              @stess said in Local powershell script to pull AdObject without installing RSAT:

              @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

              That information is simply readable, by anyone with RSAT.

              Having RSAT installed, doesn't mean people would be able to change or reset passwords or anything else from there.

              But in terms of powershell, with Windows 7 system you will be required to install RSAT.

              Yes. But I cannot goes against my manager's decision (above my pay grade + I don't want headache from arguing with him)

              Alternatively, I could export the data into powershell script itself. Instead of reading from CSV, it reads data from within itself. Not sure how this will goes or is it possible

              Using powershell (old powershell on an old OS) is the issue here.

              Can you provide your script so we can see what you have going on.

              S 1 Reply Last reply Reply Quote 0
              • S
                stess @DustinB3403
                last edited by

                @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

                @stess said in Local powershell script to pull AdObject without installing RSAT:

                @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

                That information is simply readable, by anyone with RSAT.

                Having RSAT installed, doesn't mean people would be able to change or reset passwords or anything else from there.

                But in terms of powershell, with Windows 7 system you will be required to install RSAT.

                Yes. But I cannot goes against my manager's decision (above my pay grade + I don't want headache from arguing with him)

                Alternatively, I could export the data into powershell script itself. Instead of reading from CSV, it reads data from within itself. Not sure how this will goes or is it possible

                Using powershell (old powershell on an old OS) is the issue here.

                Can you provide your script so we can see what you have going on.

                $csvPath = "\svfs\fileshares\IT\Tools\ipphone export-csv.csv"
                $logonuser = whoami
                $csv = Import-Csv -Path $csvPath
                $xmlPath = "C:\ProgramData\NEC-i\PC Phone\Settings.xml"
                $necXML = New-Object XML
                [xml]$necXML = Get-Content $xmlPath

                foreach ($csvread in $csv) {
                $csvusername = $csvread.username
                $csvextension = $csvread.ipphone
                if ($csvusername -eq $logonuser){
                $necXML.CygSettings.UserName = "$csvextension"
                $necXML.CygSettings.CtiExtension = "$csvextension"
                $necXML.CygSettings.Password = "1234"
                $necXML.CygSettings.ServerIP = "NEC"
                $necXML.Save($xmlPath)
                }
                }

                1 Reply Last reply Reply Quote 0
                • dafyreD
                  dafyre
                  last edited by

                  You could try using the ADSI object... check out https://social.technet.microsoft.com/wiki/contents/articles/4231.working-with-active-directory-using-powershell-adsi-adapter.aspx

                  That doesn't require any AD / RSAT to be installed.

                  1 Reply Last reply Reply Quote 1
                  • DashrenderD
                    Dashrender
                    last edited by

                    You can apparently deploy the DLL needed for the Ad module

                    I found a very Simple and elegant way to make the AD Powershell Module Portable.
                    you will need 3 simple things
                    1.) the ActiveDirectory Module Directory from a system that has it already installed.
                    Standard path on a 64bit windows 7
                    C:WindowsSystem32WindowsPowerShellv1.0Modules
                    2.) Global Assembly Cache Utility Available from the Windows SDK
                    gacutil.exe
                    3.) the Microsoft.ActiveDirectory.Management dll assemblyfound on a system that already has the RSAT and powershell enabled. Microsoft.ActiveDirectory.Management.dll

                    Now in order to make this work you need to install the dll using the gacutil program. commandline is as follows.

                    GACUTIL.exe -I Microsoft.ActiveDirectory.Management.dll

                    Once installed you must copy the entire directory from item 1 to the powershell module location.

                    Once copied you can then use the import command to import it and start using the cmdlets. below is my batch file I wrote to automate this for deployment during SCCM.

                    https://blogs.msdn.microsoft.com/rkramesh/2012/01/17/how-to-add-active-directory-module-in-powershell-in-windows-7/

                    S 1 Reply Last reply Reply Quote 0
                    • S
                      stess @Dashrender
                      last edited by

                      @dashrender said in Local powershell script to pull AdObject without installing RSAT:

                      You can apparently deploy the DLL needed for the Ad module

                      I found a very Simple and elegant way to make the AD Powershell Module Portable.
                      you will need 3 simple things
                      1.) the ActiveDirectory Module Directory from a system that has it already installed.
                      Standard path on a 64bit windows 7
                      C:WindowsSystem32WindowsPowerShellv1.0Modules
                      2.) Global Assembly Cache Utility Available from the Windows SDK
                      gacutil.exe
                      3.) the Microsoft.ActiveDirectory.Management dll assemblyfound on a system that already has the RSAT and powershell enabled. Microsoft.ActiveDirectory.Management.dll

                      Now in order to make this work you need to install the dll using the gacutil program. commandline is as follows.

                      GACUTIL.exe -I Microsoft.ActiveDirectory.Management.dll

                      Once installed you must copy the entire directory from item 1 to the powershell module location.

                      Once copied you can then use the import command to import it and start using the cmdlets. below is my batch file I wrote to automate this for deployment during SCCM.

                      https://blogs.msdn.microsoft.com/rkramesh/2012/01/17/how-to-add-active-directory-module-in-powershell-in-windows-7/

                      It required RSAT which is a No No from my manager.

                      DashrenderD 1 Reply Last reply Reply Quote 0
                      • DustinB3403D
                        DustinB3403
                        last edited by DustinB3403

                        To pull in the details you're looking for

                        get-aduser $logonuser -properties * would literally pull in everything (or it should) assuming your domain controllers are modern enough.

                        That should at least get the details, you'd have to pair it down from there. .

                        Should being the key. . . (would test to confirm)

                        1 Reply Last reply Reply Quote 0
                        • DashrenderD
                          Dashrender @stess
                          last edited by

                          @stess said in Local powershell script to pull AdObject without installing RSAT:

                          @dashrender said in Local powershell script to pull AdObject without installing RSAT:

                          You can apparently deploy the DLL needed for the Ad module

                          I found a very Simple and elegant way to make the AD Powershell Module Portable.
                          you will need 3 simple things
                          1.) the ActiveDirectory Module Directory from a system that has it already installed.
                          Standard path on a 64bit windows 7
                          C:WindowsSystem32WindowsPowerShellv1.0Modules
                          2.) Global Assembly Cache Utility Available from the Windows SDK
                          gacutil.exe
                          3.) the Microsoft.ActiveDirectory.Management dll assemblyfound on a system that already has the RSAT and powershell enabled. Microsoft.ActiveDirectory.Management.dll

                          Now in order to make this work you need to install the dll using the gacutil program. commandline is as follows.

                          GACUTIL.exe -I Microsoft.ActiveDirectory.Management.dll

                          Once installed you must copy the entire directory from item 1 to the powershell module location.

                          Once copied you can then use the import command to import it and start using the cmdlets. below is my batch file I wrote to automate this for deployment during SCCM.

                          https://blogs.msdn.microsoft.com/rkramesh/2012/01/17/how-to-add-active-directory-module-in-powershell-in-windows-7/

                          It required RSAT which is a No No from my manager.

                          no, it requires a part of RSAT, but not the full RSAT.

                          1 Reply Last reply Reply Quote 1
                          • DashrenderD
                            Dashrender
                            last edited by

                            I'm not sure you're going to be able to run a command from the Windows 7 machine that will read AD without at minimum the module from RSAT - it's just not meant to work that way.

                            1 Reply Last reply Reply Quote 1
                            • DustinB3403D
                              DustinB3403
                              last edited by

                              Is your manager concerned that if people see a new item in the start menu that they'll go poking around?

                              S 1 Reply Last reply Reply Quote 0
                              • F
                                flaxking
                                last edited by

                                Check out @dafyre 's link

                                This might be another option too
                                https://gallery.technet.microsoft.com/scriptcenter/Using-SystemDirectoryServic-0adf7ef5

                                1 Reply Last reply Reply Quote 0
                                • S
                                  stess @DustinB3403
                                  last edited by

                                  @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

                                  Is your manager concerned that if people see a new item in the start menu that they'll go poking around?

                                  More or less..yes.

                                  DustinB3403D jmooreJ 2 Replies Last reply Reply Quote 0
                                  • F
                                    flaxking
                                    last edited by

                                    I also would be reluctant to install RSAT, it just seems like a lot of extra baggage for the task at hand

                                    1 Reply Last reply Reply Quote 0
                                    • DustinB3403D
                                      DustinB3403 @stess
                                      last edited by

                                      @stess said in Local powershell script to pull AdObject without installing RSAT:

                                      @dustinb3403 said in Local powershell script to pull AdObject without installing RSAT:

                                      Is your manager concerned that if people see a new item in the start menu that they'll go poking around?

                                      More or less..yes.

                                      Based on what I'm seeing though you cannot get the ad modules you need though, without installing RSAT... which seems insane to me.

                                      1 Reply Last reply Reply Quote 1
                                      • DustinB3403D
                                        DustinB3403
                                        last edited by

                                        But you may be able to do this.

                                        Import-Module ServerManager
                                        Add-WindowsFeature RSAT-AD-PowerShell
                                        

                                        Which I believe is without the start menu items.

                                        Anyone have a windows 7 system to test with?

                                        1 Reply Last reply Reply Quote 0
                                        • DustinB3403D
                                          DustinB3403
                                          last edited by

                                          Yeah no... even that won't work.

                                          You must install RSAT for windows 7, and then you can disable the features from appwiz.cpl once it's installed.

                                          No two ways about it.

                                          1 Reply Last reply Reply Quote 0
                                          • DustinB3403D
                                            DustinB3403
                                            last edited by

                                            @stess tell your manager to understand the technical limitations of an old ass operating system. And without either making changes to what is installed on the system or replacing the system entirely that this isn't possible.

                                            DashrenderD 1 Reply Last reply Reply Quote 1
                                            • 1
                                            • 2
                                            • 3
                                            • 3 / 3
                                            • First post
                                              Last post