Como um script do PowerShell.
Adicione o prepend como uma string com newline junto com o conteúdo do arquivo hosts, em seguida, imprima o arquivo como ANSI
$Prepend = "10.0.0.1 example.com"
$Path = "$env:windir\System32\drivers\etc\hosts"
($Prepend | Out-String) + (get-content $Path | Out-String ) | Out-File $Path -Encoding Default