Hotspot enabled computers in domain












0















How can i get information about "Hotspot enabled" computers in my domain? May be from Powershell we can do it? Or some article about it?



I didnt found any keys about windows 10 "Mobile Hotspot Feauture"










share|improve this question



























    0















    How can i get information about "Hotspot enabled" computers in my domain? May be from Powershell we can do it? Or some article about it?



    I didnt found any keys about windows 10 "Mobile Hotspot Feauture"










    share|improve this question

























      0












      0








      0








      How can i get information about "Hotspot enabled" computers in my domain? May be from Powershell we can do it? Or some article about it?



      I didnt found any keys about windows 10 "Mobile Hotspot Feauture"










      share|improve this question














      How can i get information about "Hotspot enabled" computers in my domain? May be from Powershell we can do it? Or some article about it?



      I didnt found any keys about windows 10 "Mobile Hotspot Feauture"







      powershell windows-10






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 23 '18 at 13:28









      mirjeyhun musayevmirjeyhun musayev

      53




      53
























          1 Answer
          1






          active

          oldest

          votes


















          1














          I got something you might like. You are going to need to be able to remote PS.



          $username = "domainadministrator"
          $password = "Your password"
          $credential = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $password
          $computers = Get-ADComputer -Filter *
          foreach($computer in $computers){
          $computerDNS = $computer.DNSHostName
          $hotspot = Invoke-Command -ComputerName $computerDNS -credential $credential -scriptblock {
          $hotspot = Get-Service "icssvc"
          if($hotspot.Status -eq "Running"){
          Write-Host "Hotspot is turned on on $env:computername" -ForegroundColor Red
          try{
          Start-Service "icssvc"
          Write-Host "Successfully stopped service on $env:computername" -ForegroundColor Green
          }catch{
          Write-Host "Unable to stop service on $env:computername" -ForegroundColor Red
          }
          }else{
          Write-Host "No Hotspot running on $env:computername" -ForegroundColor Green
          }
          }
          }


          If it finds a running hotspot, it disables the hotspot and notifies you foreach computer in the array.



          Hope this helps!






          share|improve this answer


























          • Yes, it seems works.Thanks for respond, but how can i include all computers in domain to this script?

            – mirjeyhun musayev
            Nov 24 '18 at 17:56











          • Hi Mirjeyhun, I've edited the script so it checks for every pc in your domain! I hope this helps you

            – Bernard Moeskops
            Nov 25 '18 at 15:48











          • it returns error - "This operation might require other privileges". But i am running this script under domain admin credentials...

            – mirjeyhun musayev
            Nov 26 '18 at 6:20













          • You have insufficient rights. Checkout Windows Service Manager and make sure you are able to start/stop services. There is a lot to find about that subject if you Google the error.

            – Bernard Moeskops
            Nov 26 '18 at 9:03











          • problem resolved. Thanks everyone for responding

            – mirjeyhun musayev
            Nov 27 '18 at 7:40











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53447605%2fhotspot-enabled-computers-in-domain%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          I got something you might like. You are going to need to be able to remote PS.



          $username = "domainadministrator"
          $password = "Your password"
          $credential = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $password
          $computers = Get-ADComputer -Filter *
          foreach($computer in $computers){
          $computerDNS = $computer.DNSHostName
          $hotspot = Invoke-Command -ComputerName $computerDNS -credential $credential -scriptblock {
          $hotspot = Get-Service "icssvc"
          if($hotspot.Status -eq "Running"){
          Write-Host "Hotspot is turned on on $env:computername" -ForegroundColor Red
          try{
          Start-Service "icssvc"
          Write-Host "Successfully stopped service on $env:computername" -ForegroundColor Green
          }catch{
          Write-Host "Unable to stop service on $env:computername" -ForegroundColor Red
          }
          }else{
          Write-Host "No Hotspot running on $env:computername" -ForegroundColor Green
          }
          }
          }


          If it finds a running hotspot, it disables the hotspot and notifies you foreach computer in the array.



          Hope this helps!






          share|improve this answer


























          • Yes, it seems works.Thanks for respond, but how can i include all computers in domain to this script?

            – mirjeyhun musayev
            Nov 24 '18 at 17:56











          • Hi Mirjeyhun, I've edited the script so it checks for every pc in your domain! I hope this helps you

            – Bernard Moeskops
            Nov 25 '18 at 15:48











          • it returns error - "This operation might require other privileges". But i am running this script under domain admin credentials...

            – mirjeyhun musayev
            Nov 26 '18 at 6:20













          • You have insufficient rights. Checkout Windows Service Manager and make sure you are able to start/stop services. There is a lot to find about that subject if you Google the error.

            – Bernard Moeskops
            Nov 26 '18 at 9:03











          • problem resolved. Thanks everyone for responding

            – mirjeyhun musayev
            Nov 27 '18 at 7:40
















          1














          I got something you might like. You are going to need to be able to remote PS.



          $username = "domainadministrator"
          $password = "Your password"
          $credential = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $password
          $computers = Get-ADComputer -Filter *
          foreach($computer in $computers){
          $computerDNS = $computer.DNSHostName
          $hotspot = Invoke-Command -ComputerName $computerDNS -credential $credential -scriptblock {
          $hotspot = Get-Service "icssvc"
          if($hotspot.Status -eq "Running"){
          Write-Host "Hotspot is turned on on $env:computername" -ForegroundColor Red
          try{
          Start-Service "icssvc"
          Write-Host "Successfully stopped service on $env:computername" -ForegroundColor Green
          }catch{
          Write-Host "Unable to stop service on $env:computername" -ForegroundColor Red
          }
          }else{
          Write-Host "No Hotspot running on $env:computername" -ForegroundColor Green
          }
          }
          }


          If it finds a running hotspot, it disables the hotspot and notifies you foreach computer in the array.



          Hope this helps!






          share|improve this answer


























          • Yes, it seems works.Thanks for respond, but how can i include all computers in domain to this script?

            – mirjeyhun musayev
            Nov 24 '18 at 17:56











          • Hi Mirjeyhun, I've edited the script so it checks for every pc in your domain! I hope this helps you

            – Bernard Moeskops
            Nov 25 '18 at 15:48











          • it returns error - "This operation might require other privileges". But i am running this script under domain admin credentials...

            – mirjeyhun musayev
            Nov 26 '18 at 6:20













          • You have insufficient rights. Checkout Windows Service Manager and make sure you are able to start/stop services. There is a lot to find about that subject if you Google the error.

            – Bernard Moeskops
            Nov 26 '18 at 9:03











          • problem resolved. Thanks everyone for responding

            – mirjeyhun musayev
            Nov 27 '18 at 7:40














          1












          1








          1







          I got something you might like. You are going to need to be able to remote PS.



          $username = "domainadministrator"
          $password = "Your password"
          $credential = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $password
          $computers = Get-ADComputer -Filter *
          foreach($computer in $computers){
          $computerDNS = $computer.DNSHostName
          $hotspot = Invoke-Command -ComputerName $computerDNS -credential $credential -scriptblock {
          $hotspot = Get-Service "icssvc"
          if($hotspot.Status -eq "Running"){
          Write-Host "Hotspot is turned on on $env:computername" -ForegroundColor Red
          try{
          Start-Service "icssvc"
          Write-Host "Successfully stopped service on $env:computername" -ForegroundColor Green
          }catch{
          Write-Host "Unable to stop service on $env:computername" -ForegroundColor Red
          }
          }else{
          Write-Host "No Hotspot running on $env:computername" -ForegroundColor Green
          }
          }
          }


          If it finds a running hotspot, it disables the hotspot and notifies you foreach computer in the array.



          Hope this helps!






          share|improve this answer















          I got something you might like. You are going to need to be able to remote PS.



          $username = "domainadministrator"
          $password = "Your password"
          $credential = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $password
          $computers = Get-ADComputer -Filter *
          foreach($computer in $computers){
          $computerDNS = $computer.DNSHostName
          $hotspot = Invoke-Command -ComputerName $computerDNS -credential $credential -scriptblock {
          $hotspot = Get-Service "icssvc"
          if($hotspot.Status -eq "Running"){
          Write-Host "Hotspot is turned on on $env:computername" -ForegroundColor Red
          try{
          Start-Service "icssvc"
          Write-Host "Successfully stopped service on $env:computername" -ForegroundColor Green
          }catch{
          Write-Host "Unable to stop service on $env:computername" -ForegroundColor Red
          }
          }else{
          Write-Host "No Hotspot running on $env:computername" -ForegroundColor Green
          }
          }
          }


          If it finds a running hotspot, it disables the hotspot and notifies you foreach computer in the array.



          Hope this helps!







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 25 '18 at 15:47

























          answered Nov 23 '18 at 16:06









          Bernard MoeskopsBernard Moeskops

          23316




          23316













          • Yes, it seems works.Thanks for respond, but how can i include all computers in domain to this script?

            – mirjeyhun musayev
            Nov 24 '18 at 17:56











          • Hi Mirjeyhun, I've edited the script so it checks for every pc in your domain! I hope this helps you

            – Bernard Moeskops
            Nov 25 '18 at 15:48











          • it returns error - "This operation might require other privileges". But i am running this script under domain admin credentials...

            – mirjeyhun musayev
            Nov 26 '18 at 6:20













          • You have insufficient rights. Checkout Windows Service Manager and make sure you are able to start/stop services. There is a lot to find about that subject if you Google the error.

            – Bernard Moeskops
            Nov 26 '18 at 9:03











          • problem resolved. Thanks everyone for responding

            – mirjeyhun musayev
            Nov 27 '18 at 7:40



















          • Yes, it seems works.Thanks for respond, but how can i include all computers in domain to this script?

            – mirjeyhun musayev
            Nov 24 '18 at 17:56











          • Hi Mirjeyhun, I've edited the script so it checks for every pc in your domain! I hope this helps you

            – Bernard Moeskops
            Nov 25 '18 at 15:48











          • it returns error - "This operation might require other privileges". But i am running this script under domain admin credentials...

            – mirjeyhun musayev
            Nov 26 '18 at 6:20













          • You have insufficient rights. Checkout Windows Service Manager and make sure you are able to start/stop services. There is a lot to find about that subject if you Google the error.

            – Bernard Moeskops
            Nov 26 '18 at 9:03











          • problem resolved. Thanks everyone for responding

            – mirjeyhun musayev
            Nov 27 '18 at 7:40

















          Yes, it seems works.Thanks for respond, but how can i include all computers in domain to this script?

          – mirjeyhun musayev
          Nov 24 '18 at 17:56





          Yes, it seems works.Thanks for respond, but how can i include all computers in domain to this script?

          – mirjeyhun musayev
          Nov 24 '18 at 17:56













          Hi Mirjeyhun, I've edited the script so it checks for every pc in your domain! I hope this helps you

          – Bernard Moeskops
          Nov 25 '18 at 15:48





          Hi Mirjeyhun, I've edited the script so it checks for every pc in your domain! I hope this helps you

          – Bernard Moeskops
          Nov 25 '18 at 15:48













          it returns error - "This operation might require other privileges". But i am running this script under domain admin credentials...

          – mirjeyhun musayev
          Nov 26 '18 at 6:20







          it returns error - "This operation might require other privileges". But i am running this script under domain admin credentials...

          – mirjeyhun musayev
          Nov 26 '18 at 6:20















          You have insufficient rights. Checkout Windows Service Manager and make sure you are able to start/stop services. There is a lot to find about that subject if you Google the error.

          – Bernard Moeskops
          Nov 26 '18 at 9:03





          You have insufficient rights. Checkout Windows Service Manager and make sure you are able to start/stop services. There is a lot to find about that subject if you Google the error.

          – Bernard Moeskops
          Nov 26 '18 at 9:03













          problem resolved. Thanks everyone for responding

          – mirjeyhun musayev
          Nov 27 '18 at 7:40





          problem resolved. Thanks everyone for responding

          – mirjeyhun musayev
          Nov 27 '18 at 7:40


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53447605%2fhotspot-enabled-computers-in-domain%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Berounka

          Sphinx de Gizeh

          Different font size/position of beamer's navigation symbols template's content depending on regular/plain...