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;
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
add a comment |
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
add a comment |
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
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
powershell
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
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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)"
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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)"
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
add a comment |
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)"
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
add a comment |
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)"
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)"
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
add a comment |
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
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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