1

Необходимо очистить весь текст после строки 127.0.0.1 файла хоста localhost в PowerShell. последняя строка - это запись localhost в файле хоста, после этой строки я хотел бы удалить все текстовые строки, если это возможно. Ниже приведен код.

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" 
}

1 ответ1

0

Этот сценарий удаляет что-либо после 127.0.0.1 localhost и сохраняет его обратно в файл. Если ваши условия подтвердят, что они выполняются, новая запись вводится до того, как файл будет записан обратно на диск.

Код:

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

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .