Как исправить сообщение об ошибке «Отказано в доступе» после успешного повышения с помощью powershell - PullRequest
0 голосов
/ 10 мая 2019

Я написал небольшой скрипт powershell, который удаляет некоторые записи из файла hosts, если они существуют.

Как сейчас, он делает то, что должен, и удаляет запись, если она существует.Я добавил некоторые соображения, чтобы убедиться, что скрипт запускается с правами администратора, потому что вы не можете изменить файл без повышенных прав.пока, очень хорошо.

Но после успешного выполнения даже из сеанса без повышенных прав всегда появляется несмешное сообщение:

Out-File : Access to the path "C:\WINDOWS\system32\Drivers\etc\hosts" denied.
In C:\Users\student01\Documents\Schulung\Student\Student01\Remove_Training_Environment.ps1:36 Zeichen:5
+     Out-File "$($env:windir)\system32\Drivers\etc\hosts" -Force
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Используемый мной скрипт:

# Get the ID and security principal of the current user account
$progressPreference = 'silentlyContinue'
$myWindowsID=[System.Security.Principal.WindowsIdentity]::GetCurrent()
$myWindowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($myWindowsID)

# Get the security principal for the Administrator role
$adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator

# Check to see if we are currently running "as Administrator"
if ($myWindowsPrincipal.IsInRole($adminRole))
{
# We are running "as Administrator" - so change the title and background color to indicate this
$Host.UI.RawUI.WindowTitle = $myInvocation.MyCommand.Definition + "Powershell CaptureTheFlag is starting"
$Host.UI.RawUI.BackgroundColor = "Black"
clear-host
}
else
{
# We are not running "as Administrator" - so relaunch as administrator
# Create a new process object that starts PowerShell

$newProcess = new-object System.Diagnostics.ProcessStartInfo "PowerShell";
# Specify the current script path and name as a parameter
$newProcess.Arguments = $myInvocation.MyCommand.Definition;
# Indicate that the process should be elevated
$newProcess.Verb = "runas";
# Start the new process
[System.Diagnostics.Process]::Start($newProcess);

# Exit from the current, unelevated, process
 exit
}
# Powershell-Script for the training: removing some environment-stuff
$progressPreference = 'silentlyContinue'
(Get-Content "$($env:windir)\system32\Drivers\etc\hosts")  -replace ('^\s*8.8.8.8\s+www.test.com',' ') |
    Out-File "$($env:windir)\system32\Drivers\etc\hosts" -Force

С наилучшими пожеланиями

Пол

...