Script Powershell para limpar o texto após a linha localhost e adicionar nome de host estático e endereço IP atual ao arquivo

1

É necessário limpar todo o texto após o arquivo host de linha local 127.0.0.1 no PowerShell. última linha é a entrada localhost no arquivo host depois desta linha eu gostaria de excluir todas as linhas de texto é possível. Abaixo está o código.

Set-ExecutionPolicy -ExecutionPolicy Unrestricted 

$ip = get-WmiObject Win32_NetworkAdapterConfiguration|Where {$_.Ipaddress.length -gt 1} 

$ip.ipaddress[0]
$hst = $env:COMPUTERNAME
$hostfile = Get-Content "$($env:windir)\system32\Drivers\etc\hosts"
if ($hostfile -notcontains "127.0.0.2 hostname1" -and 
    (-not($hostfile -like "$($ip.ipaddress[0]) $hst"))) {
    Add-Content -Encoding UTF8 "$($env:windir)\system32\Drivers\etc\hosts" "$($ip.ipaddress[0]) $hst" 
}
    
por ra8ul 16.07.2018 / 11:42

1 resposta

0

Esses scripts excluem qualquer coisa depois de 127.0.0.1 localhost e a salvam novamente no arquivo. Caso suas condições resolvam ser verdadeiras, a nova entrada é injetada antes que o arquivo seja gravado no disco.

O código:

Set-ExecutionPolicy -ExecutionPolicy Unrestricted 

$ipAdresses = Get-WmiObject -Class Win32_NetworkAdapterConfiguration | Where-Object {$_.IPAddress.length -gt 0} | Select-Object -Property 'IPAddress' -First 1

$ip = $ipAdresses.IPAddress[0]
$hst = $env:COMPUTERNAME
$hostFilePath = "$($env:windir)\system32\Drivers\etc\hosts"
$hostfile = Get-Content -Path $hostFilePath
$newHostFileEntry = "{0} {1}" -f $ip, $hst

# Delete all text after what is defined as $matchString
$lastIndexOfNewArray = 0
$matchString = '127.0.0.1\s+localhost'

for ($index = 0; $index -lt $hostfile.Count; $index++) {
    if ($hostfile[$index] -match $matchString) {
        $lastIndexOfNewArray = $index
        break
    }
}
$newHostFileContent = $Hostfile[0..$lastIndexOfNewArray]

# Adds entry for local IP address if conditions resolve to $true
if ($newHostFileContent -notcontains "127.0.0.2 hostname1" -and 
    (-not($newHostFileContent -like $newHostFileEntry))) {
        $newHostFileContent = New-Object System.Collections.ArrayList(,$newHostFileContent)
        $newHostFileContent.Add($newHostFileEntry) > $null
}

Out-File -Encoding UTF8 -FilePath $hostFilePath -InputObject $newHostFileContent -Append:$false -Confirm:$false
    
por 16.07.2018 / 13:29