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

    Windows CLI: Net User

    Scheduled Pinned Locked Moved IT Discussion
    18 Posts 8 Posters 1.5k 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

      You'd probably be better off learning about PowerShell commands instead of the older net commands. Not saying net isn't useful, but considering how much more powerful PS is, it's a better place to start.

      New-LocalUser

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

        Agreed, go with PowerShell.

        1 Reply Last reply Reply Quote 0
        • gjacobseG
          gjacobse @Dashrender
          last edited by

          @dashrender @scottalanmiller

          Yea,.. been trying some of that too... with about as much success.

          gjacobseG 1 Reply Last reply Reply Quote 0
          • gjacobseG
            gjacobse @gjacobse
            last edited by

            @gjacobse said in Windows CLI: Net User:

            @dashrender @scottalanmiller

            Yea,.. been trying some of that too... with about as much success.

            I.e.: None

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

              Are you using a admin level command prompt or powershell shell?

              gjacobseG 1 Reply Last reply Reply Quote -1
              • gjacobseG
                gjacobse @Dashrender
                last edited by

                @dashrender said in Windows CLI: Net User:

                Are you using a admin level command prompt or powershell shell?

                Neither-

                Command line via ScreenConnect

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

                  @gjacobse said in Windows CLI: Net User:

                  @dashrender said in Windows CLI: Net User:

                  Are you using a admin level command prompt or powershell shell?

                  Neither-

                  Command line via ScreenConnect

                  Well considering that ScreenConnect is an admin tool - I would HOPE that it is running those commands at an admin village level, but really have no clue.

                  Are you initiating PowerShell when you try to run a PS script?

                  JaredBuschJ 1 Reply Last reply Reply Quote -1
                  • JaredBuschJ
                    JaredBusch @Dashrender
                    last edited by

                    @dashrender said in Windows CLI: Net User:

                    @gjacobse said in Windows CLI: Net User:

                    @dashrender said in Windows CLI: Net User:

                    Are you using a admin level command prompt or powershell shell?

                    Neither-

                    Command line via ScreenConnect

                    Well considering that ScreenConnect is an admin tool - I would HOPE that it is running those commands at an admin village level, but really have no clue.

                    Yes it runs in the context of the service which has admin rights by default.

                    1 Reply Last reply Reply Quote 1
                    • Mike DavisM
                      Mike Davis
                      last edited by

                      I haven't tried it, but it seems like running powershell through screenconnect command line would be problematic at best. I'm not even sure how you would change the execution policy to let you call scripts.

                      gjacobseG 1 Reply Last reply Reply Quote 0
                      • Mike DavisM
                        Mike Davis @gjacobse
                        last edited by

                        @gjacobse said in Windows CLI: Net User:

                        But when I try to sign with this account I am unable to do so, even though the command completed successfully.

                        Usually the next thing I do after creating a local user like that is add it to the right local group.

                        Then when logging in, make sure you're using .\testNTGuser
                        so that it's not looking for a domain account with that name.

                        gjacobseG 1 Reply Last reply Reply Quote 0
                        • gjacobseG
                          gjacobse @Mike Davis
                          last edited by

                          @mike-davis said in Windows CLI: Net User:

                          I haven't tried it, but it seems like running powershell through screenconnect command line would be problematic at best. I'm not even sure how you would change the execution policy to let you call scripts.

                          Running the command via SC CLI seemed to work perfectly. Just can't sign on.

                          DashrenderD 1 Reply Last reply Reply Quote 0
                          • gjacobseG
                            gjacobse @Mike Davis
                            last edited by

                            @mike-davis said in Windows CLI: Net User:

                            @gjacobse said in Windows CLI: Net User:

                            But when I try to sign with this account I am unable to do so, even though the command completed successfully.

                            Usually the next thing I do after creating a local user like that is add it to the right local group.

                            Then when logging in, make sure you're using .\testNTGuser
                            so that it's not looking for a domain account with that name.

                            Right,.. has to be added to the Admin group, and yes the .\ added for local access.

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

                              @gjacobse said in Windows CLI: Net User:

                              @mike-davis said in Windows CLI: Net User:

                              I haven't tried it, but it seems like running powershell through screenconnect command line would be problematic at best. I'm not even sure how you would change the execution policy to let you call scripts.

                              Running the command via SC CLI seemed to work perfectly. Just can't sign on.

                              Have you tried running the same command from a normal command prompt on the system?
                              Could this be a UAC thing? i.e. the command is run in the system context, but like being logged in as a local admin, launching a command prompt is not the same as right click, run as admin command prompt.

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

                                Try enabling the account.
                                net user testNTGtest /active:yes

                                1 Reply Last reply Reply Quote 0
                                • gjacobseG
                                  gjacobse
                                  last edited by

                                  Thanks for bring this back up - been tied up with testing it,.. succeeding, and getting into other things.

                                  It ~may~ have been the password I used. I reset it to a more simple one, and it worked fine as

                                  net user testNTGtest s0m3p@s$ /add /passwordreq:yes  /fullname:"userTest"
                                  
                                  dbeatoD 1 Reply Last reply Reply Quote 1
                                  • wrx7mW
                                    wrx7m
                                    last edited by

                                    I am currently using this script (and deploying via GPO startup script) to create a local admin account that will, shortly thereafter, be administered by LAPS -

                                    net user "Company Admin" passwordgoeshere /add /passwordreq:yes /fullname:"Company Admin"
                                    net localgroup Administrators "Company Admin" /add

                                    1 Reply Last reply Reply Quote 2
                                    • dbeatoD
                                      dbeato @gjacobse
                                      last edited by

                                      @gjacobse It is the password you are using, you need to put passwords with special characters in command prompt with ' ' such as:\

                                      net user testNTGtest 's0m3p@s$' /add /passwordreq:yes /fullname:"userTest"

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