Powershell Set exclude System Proxy
Hallo zusammen
Zurzeit sind auf einem System folgendes konfiguriert als System Proxy
Wie kann via Remotepowershell am einfachsten den Wert auf mehren Systemen gesetzt werden
Wenn als Server in nicht enthalten ist, soll keine Aktion durchgeführt werden und das jeweilige System ausgegeben werden.
Danke und Gruss
adminst
Zurzeit sind auf einem System folgendes konfiguriert als System Proxy
netsh winhttp show proxy
Proxy Server: proxy1.domain.com:3128
Bypass List: *.domain.com;<local>
Wie kann via Remotepowershell am einfachsten den Wert auf mehren Systemen gesetzt werden
netsh winhttp show proxy
Proxy Server: proxy1.domain.com:3128
Bypass List: *.domain.com;server2.domain2.com;<local>
Wenn als Server in
Proxyserver: proxy1.domain.com:3128
Danke und Gruss
adminst
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 6070693814
Url: https://administrator.de/contentid/6070693814
Ausgedruckt am: 24.11.2024 um 15:11 Uhr
5 Kommentare
Neuester Kommentar
$computers = "Computer1","Computer2"
$proxy = "proxy1.domain.com:3128"
$bypasslist = "*.domain.com;server2.domain2.com;<local>"
Invoke-Command -ComputerName $computers -ScriptBlock {
if ((netsh winhttp show proxy | out-string) -match [regex]::escape($using:proxy)){
netsh winhttp set proxy $using:proxy "$using:bypasslist" | out-null
[pscustomobject]@{Status="Proxy-Liste gesetzt"}
}else{
[pscustomobject]@{Status="Keiner/anderer Proxy"}
}
} | format-table PSComputername,Status -Force
Zitat von @6017814589:
$computers = "Computer1","Computer2"
$proxy = "proxy1.domain.com:3128"
Invoke-Command -ComputerName $computers -ScriptBlock {
if ((netsh winhttp show proxy | out-string) -notmatch [regex]::escape($proxy)){
netsh winhttp set proxy $proxy | out-null
[pscustomobject]@{Status="Proxy set"}
}else{
[pscustomobject]@{Status="Already configured."}
}
} | format-table PSComputername,Status
Da fehlt die Ausnahmeliste. Bist du's, wurstel? ;)
Zitat von @chaot1coz:
Da fehlt die Ausnahmeliste. Bist du's, wurstel? ;)
Kann er ja hoffentlich noch selbst ergänzen 🙃, ich gehe mal davon aus das er das auch liest wen nich, pech ... Wat für ne Wurst??Da fehlt die Ausnahmeliste. Bist du's, wurstel? ;)
Zitat von @6017814589:
Wat für ne Wurst??
Wat für ne Wurst??
Dann bist du es wohl nicht sorry für die Verwirrung