IP Scan Power Shell ScriptHow to run a PowerShell scriptPowerShell says “execution of scripts is disabled on this system.”wraping powershell script from C#Convert Test-Connection into BooleanPowershell - Can it be determined if a script is run by right click “run with powershell”?Powershell Background if Ping scriptHiding Window with Powershell script running in the backgroundPowershell script to table doesn't output anythingHow to make a Powershell script answer a prompt for user input?ssh using powerShell script by passing the password along with the Commnad

Journal published a paper, ignoring my objections as a referee

Lob Logical Read and lob read-ahead reads in NCCI

Understanding data transmission rates over copper wire

Is the word 'mistake' a concrete or abstract noun?

Under GDPR, can I give permission once to allow everyone to store and process my data?

How can I portray a character with no fear of death, without them sounding utterly bored?

German equivalent to "going down the rabbit hole"

I was given someone else's visa, stamped in my passport

Why do IR remotes influence AM radios?

Can two aircraft be allowed to stay on the same runway at the same time?

Padding a column of lists

'spazieren' - walking in a silly and affected manner?

Could a complex system of reaction wheels be used to propel a spacecraft?

Connecting points from separate Tikz figures

Why doesn't Starship have four landing legs?

In Endgame, wouldn't Stark have remembered Hulk busting out of the stairwell?

Was a six-engine 747 ever seriously considered by Boeing?

Link between subject and reflexive pronoun

Create a list of snaking numbers under 50,000

'Horseshoes' for Deer?

Coupling two 15 Amp circuit breaker for 20 Amp

Why are JWST optics not enclosed like HST?

What is a "hashed transaction" in SQL Server Replication terminology?

What are the in-game differences between WoW Classic and the original 2006 Version



IP Scan Power Shell Script


How to run a PowerShell scriptPowerShell says “execution of scripts is disabled on this system.”wraping powershell script from C#Convert Test-Connection into BooleanPowershell - Can it be determined if a script is run by right click “run with powershell”?Powershell Background if Ping scriptHiding Window with Powershell script running in the backgroundPowershell script to table doesn't output anythingHow to make a Powershell script answer a prompt for user input?ssh using powerShell script by passing the password along with the Commnad






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm trying creating a powershell script to ping a range of IP by enter the first and last octet. If Write-host is used the rest of the script won't execute. If write output is used the .. doesn't work as a sequence



$StartIP = Read-Host -Prompt 'Input Start IP'

$EndIP = Read-Host -Prompt 'Input End IP'

Write-output $StartIP..$EndIP | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"









share|improve this question
































    0















    I'm trying creating a powershell script to ping a range of IP by enter the first and last octet. If Write-host is used the rest of the script won't execute. If write output is used the .. doesn't work as a sequence



    $StartIP = Read-Host -Prompt 'Input Start IP'

    $EndIP = Read-Host -Prompt 'Input End IP'

    Write-output $StartIP..$EndIP | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"









    share|improve this question




























      0












      0








      0








      I'm trying creating a powershell script to ping a range of IP by enter the first and last octet. If Write-host is used the rest of the script won't execute. If write output is used the .. doesn't work as a sequence



      $StartIP = Read-Host -Prompt 'Input Start IP'

      $EndIP = Read-Host -Prompt 'Input End IP'

      Write-output $StartIP..$EndIP | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"









      share|improve this question
















      I'm trying creating a powershell script to ping a range of IP by enter the first and last octet. If Write-host is used the rest of the script won't execute. If write output is used the .. doesn't work as a sequence



      $StartIP = Read-Host -Prompt 'Input Start IP'

      $EndIP = Read-Host -Prompt 'Input End IP'

      Write-output $StartIP..$EndIP | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"






      powershell






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 27 at 23:06









      RN92

      1,0199 silver badges27 bronze badges




      1,0199 silver badges27 bronze badges










      asked Mar 27 at 22:45









      papa0s0papa0s0

      52 bronze badges




      52 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          2















          You need to enclose it in parentheses:



          Write-output ($StartIP..$EndIP) | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"


          If you omit Write-Output you can simple use:



          $StartIP..$EndIP | % "192.168.1.$($_): $(Test-Connection -count 1 -comp 192.168.1.$($_) -quiet)"





          share|improve this answer



























          • Thanks You @Remko! this solve my problem.

            – papa0s0
            Mar 28 at 0:30











          • Is working perfect! Now I'm try to get the reply with true on green and false on red. Any help will be great

            – papa0s0
            Mar 28 at 13:53











          • Please open a new questionfor that @papa0s0

            – Remko
            Mar 28 at 14:32










          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%2f55387616%2fip-scan-power-shell-script%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









          2















          You need to enclose it in parentheses:



          Write-output ($StartIP..$EndIP) | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"


          If you omit Write-Output you can simple use:



          $StartIP..$EndIP | % "192.168.1.$($_): $(Test-Connection -count 1 -comp 192.168.1.$($_) -quiet)"





          share|improve this answer



























          • Thanks You @Remko! this solve my problem.

            – papa0s0
            Mar 28 at 0:30











          • Is working perfect! Now I'm try to get the reply with true on green and false on red. Any help will be great

            – papa0s0
            Mar 28 at 13:53











          • Please open a new questionfor that @papa0s0

            – Remko
            Mar 28 at 14:32















          2















          You need to enclose it in parentheses:



          Write-output ($StartIP..$EndIP) | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"


          If you omit Write-Output you can simple use:



          $StartIP..$EndIP | % "192.168.1.$($_): $(Test-Connection -count 1 -comp 192.168.1.$($_) -quiet)"





          share|improve this answer



























          • Thanks You @Remko! this solve my problem.

            – papa0s0
            Mar 28 at 0:30











          • Is working perfect! Now I'm try to get the reply with true on green and false on red. Any help will be great

            – papa0s0
            Mar 28 at 13:53











          • Please open a new questionfor that @papa0s0

            – Remko
            Mar 28 at 14:32













          2














          2










          2









          You need to enclose it in parentheses:



          Write-output ($StartIP..$EndIP) | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"


          If you omit Write-Output you can simple use:



          $StartIP..$EndIP | % "192.168.1.$($_): $(Test-Connection -count 1 -comp 192.168.1.$($_) -quiet)"





          share|improve this answer















          You need to enclose it in parentheses:



          Write-output ($StartIP..$EndIP) | % "192.168.128.$($_): $(Test-Connection -count 1 -comp 192.168.128.$($_) -quiet)"


          If you omit Write-Output you can simple use:



          $StartIP..$EndIP | % "192.168.1.$($_): $(Test-Connection -count 1 -comp 192.168.1.$($_) -quiet)"






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 27 at 23:25

























          answered Mar 27 at 23:19









          RemkoRemko

          5,7211 gold badge23 silver badges47 bronze badges




          5,7211 gold badge23 silver badges47 bronze badges















          • Thanks You @Remko! this solve my problem.

            – papa0s0
            Mar 28 at 0:30











          • Is working perfect! Now I'm try to get the reply with true on green and false on red. Any help will be great

            – papa0s0
            Mar 28 at 13:53











          • Please open a new questionfor that @papa0s0

            – Remko
            Mar 28 at 14:32

















          • Thanks You @Remko! this solve my problem.

            – papa0s0
            Mar 28 at 0:30











          • Is working perfect! Now I'm try to get the reply with true on green and false on red. Any help will be great

            – papa0s0
            Mar 28 at 13:53











          • Please open a new questionfor that @papa0s0

            – Remko
            Mar 28 at 14:32
















          Thanks You @Remko! this solve my problem.

          – papa0s0
          Mar 28 at 0:30





          Thanks You @Remko! this solve my problem.

          – papa0s0
          Mar 28 at 0:30













          Is working perfect! Now I'm try to get the reply with true on green and false on red. Any help will be great

          – papa0s0
          Mar 28 at 13:53





          Is working perfect! Now I'm try to get the reply with true on green and false on red. Any help will be great

          – papa0s0
          Mar 28 at 13:53













          Please open a new questionfor that @papa0s0

          – Remko
          Mar 28 at 14:32





          Please open a new questionfor that @papa0s0

          – Remko
          Mar 28 at 14:32








          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















          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%2f55387616%2fip-scan-power-shell-script%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

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현