吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 537|回复: 4
上一主题 下一主题
收起左侧

[其他原创] powershell脚本设置自动获取或静态IP(含批处理)

[复制链接]
跳转到指定楼层
楼主
koi1 发表于 2024-3-25 14:12 回帖奖励
本帖最后由 koi1 于 2024-4-2 09:38 编辑

powershell脚本设自动获取或静态IP,
要管理员身份运行才可以修改,脚本已设置管理员身份打开,
管理员身份打开运行powershell脚本要开启执行策略(Set-ExecutionPolicy remotesigned默认没有开启。
运行此ps脚本会生成一个静态IP文件netinf.txt,修改这个文件为自已要设置的静态IP各项就可以(或者直接改脚本里面的默认生成),不要增加别的其他东西。
也同时生成可设置自动获取或静态IP的批处理

保存为xxx.ps1右键使用powershell运行
[Asm] 纯文本查看 复制代码
#查看权限 
#Get-ExecutionPolicy
# 无执行权限:Restricted
#Set-ExecutionPolicy Restricted
#开启powershell脚本执行权限
#Set-ExecutionPolicy remotesigned 


######
function judge-IsAdmin {
    return ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole(
            [Security.Principal.WindowsBuiltInRole] "Administrator")
}
if (!(judge-IsAdmin)) {
   Write-Host "任意键继续下一步,点是,会管理身份运行powershell窗,若闪退,请开启执行策略(Set-ExecutionPolicy remotesigned)"
   Write-Host "下一步同时会生成相同功能的批处理setmyip.cmd,若不会开启powershell执行策略可以用批处理"
   cmd /c pause
}

######
function Generate-cmds(){
$cmdContent = @"
@echo off
set dp=%~dp0
if not exist %dp%netinf.txt (
echo 192.168.10.113> %dp%netinf.txt
echo 255.255.240.0>> %dp%netinf.txt
echo 192.168.0.250>> %dp%netinf.txt
echo 202.96.128.86>> %dp%netinf.txt
echo 202.96.128.166>> %dp%netinf.txt
)
goto mychoces
:mychoces
netsh interface ipv4 show config
echo "修改netinf.txt文件为要设的IP信息"
set /p name="设置接口的名字:"
set /p chosse="设置自动获取/静态IP(Y/N):"
if "%chosse%"=="y" (goto autoip )
if "%chosse%"=="Y" (goto autoip )
if "%chosse%"=="N" (goto setmyip )
if "%chosse%"=="n" (goto setmyip )
goto mychoces
:autoip
netsh interface ip set address name=%name% source=dhcp
netsh interface ip set dns name=%name% source=dhcp
goto mychoces
:setmyip
setlocal enabledelayedexpansion

set "filename=netinf.txt"
set "index=0"
for /F "tokens=*" %%L in (%dp%%filename%) do (
    set "line[!index!]=%%~L"
    set /A index+=1 
)

netsh interface ipv4 set address name=%name% static !line[0]! !line[1]! !line[2]!
netsh interface ipv4 set dns name=%name% static !line[3]! primary
netsh interface ipv4 add dns name=%name% !line[4]! index=2
endlocal
goto mychoces

"@
$cmdFileName = "setmyip.cmd"
Set-Content -Path $cmdFileName -Value $cmdContent  
Write-Host "已生成相同功能的批处理$($cmdFileName)"

}
#####

###
$hascommand = Get-Command -Name "Get-CimInstance" -ErrorAction SilentlyContinue
if(!$hascommand){
Write-Host "powershell版本太低"
Generate-cmds
cmd /c pause | out-null  
exit
}else{
####
Generate-cmds

#
#Start-Process cmd -ArgumentList "/k", $cnds
}
#####

$filePath ="netinf.txt"

if (!(Test-Path -Path $filePath)){
$intlines = @("192.168.10.110", "255.255.240.0", "192.168.0.250","202.96.128.86","202.96.128.166") 
foreach ($iline in $intlines) {
    Add-Content -Value $iline -Path $filePath 
}
}

$p1=(Get-Location).path
$fip=Join-Path -Path $p1 -ChildPath "setip.ps1" 

 
if (-not (judge-IsAdmin)) {
    # 如果不是管理员,则以管理员权限重新启动当前脚本
    Start-Process PowerShell -Verb RunAs -ArgumentList ("-noprofile -file `"{0}`"" -f ($myinvocation.MyCommand.Definition)) 
    exit
}

Function Convert-MaskToCIDR {
    param (
        [Parameter(Mandatory = $true)]
        [IPAddress] $SubnetMask
    )

    [String] $binaryString = @()
    $SubnetMask.GetAddressBytes() | ForEach-Object { $binaryString += [Convert]::ToString($_, 2) }

    Return $binaryString.TrimEnd('0').Length
}

$q=""
#$aa=@()
while ($q -ne "Q"){

$ips=Get-CimInstance -Class Win32_NetworkAdapterConfiguration

foreach($ip in $ips){
if($ip.IPAddress){
Write-Host "Description:$($ip.Description) "
Write-Host "InterfaceIndex:$($ip.InterfaceIndex) "
Write-Host "DHCP:$($ip.DHCPEnabled) "
Write-Host "IP:$($ip.IPAddress) "
Write-Host "Gateway:$($ip.DefaultIPGateway) "
Write-Host "IPSubnet:$($ip.IPSubnet)  "
Write-Host "DNS:$($ip.DNSServerSearchOrder) "
Write-Host "---------------------------------------"
#$aa.add(@{"index"=$ip.InterfaceIndex,"dhcp"=$ip.DHCPEnabled})
}
 }
  


Write-Host "修改IP配置文件netinf.txt为要设置的IP信息"

$userindex=Read-Host "要配置的选项InterfaceIndex:"
$isdhcp=Read-Host "(Y/N)自动获取/静态IP:"
if($isdhcp -eq "Y")
{
$ne=Get-NetIPInterface -InterfaceIndex $userindex
if($ne.dhcp[1] -eq "Disabled"){
 
Remove-NetIPAddress -InterfaceIndex $userindex  -Confirm:$false
Remove-NetRoute -InterfaceIndex $userindex  -Confirm:$false 2>$null
Set-NetIPInterface -InterfaceIndex $userindex -Dhcp Enabled
Set-DnsClientServerAddress -InterfaceIndex $userindex -ResetServerAddresses
#Invoke-Expression "ipconfig /renew"
$ne1=Get-NetIPInterface -InterfaceIndex $userindex
Write-Host "DHCP:$($ne1.dhcp[1])"
Get-NetIPConfiguration -Verbose -InterfaceIndex $userindex
}else{
Write-Host "已经是自动获取"
}
}
if($isdhcp -eq "N")
{
$p2=Split-Path -Parent $MyInvocation.MyCommand.Definition
$finf=Join-Path -Path $p2 -ChildPath $filePath
#Write-Host $finf
$lines = Get-Content -Path $finf
#Write-Host $lines
#Get-NetIPAddress -InterfaceIndex $userindex | Remove-NetIPAddress
Remove-NetIPAddress -InterfaceIndex $userindex  -Confirm:$false
Remove-NetRoute -InterfaceIndex $userindex  -Confirm:$false 2>$null
$plen=Convert-MaskToCIDR $lines[1]
New-NetIPAddress -InterfaceIndex $userindex -IPAddress $lines[0] -AddressFamily IPv4 -PrefixLength $plen -DefaultGateway $lines[2] >$null

Set-DnsClientServerAddress -InterfaceIndex $userindex -ServerAddresses $lines[3,4]
Get-NetIPConfiguration -Verbose -InterfaceIndex $userindex
}

$q=Read-Host "输入Q退出"

}



运行图片;

免费评分

参与人数 2吾爱币 +8 热心值 +1 收起 理由
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!
JRH + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

沙发
Marken888 发表于 2024-3-25 16:07
感谢源码分享!
3#
lizihao1 发表于 2024-3-25 17:06
4#
gegewu0929 发表于 2024-3-25 17:32
5#
Shatskikh 发表于 2024-3-25 23:43
PowerShell的一个好处是可以把之前的命令也放到脚本里执行
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-4-27 12:06

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表