View difference between Paste ID: f5WSXqwd and ir085XVs
SHOW: | | - or go back to the newest paste.
1
do{
2
$a = Read-Host 'Podaj nazwe procesu: '
3-
if (Get-Process | Where-Object { $_.Name -eq $a})
3+
if (Get-Process | Where-Object { $_.Name -eq $a}){
4-
{
4+
5
}
6
else{
7-
else {
7+
8
}
9
10
$k = Read-Host 'Czy chcesz kontynuowac? t/n'
11
}while($k -eq "t")