Board logo

标题: [系统相关] 如何批处理取消ipv6 [打印本页]

作者: 1015710158    时间: 2019-1-13 15:15     标题: 如何批处理取消ipv6

想向各位大佬请教学习.如果用批处理实现关闭这2项IPV6的选择.也就是把前面的勾取消掉.

提前祝各位:新年好
作者: ivor    时间: 2019-1-13 16:22

  1. reg add HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents /t REG_DWORD /d 0xff
复制代码

作者: 1015710158    时间: 2019-1-14 17:32

ivor 发表于 2019-1-13 16:22



    只要把这个服务关了就可以实现吗?那就是意思味着那几个勾.是否勾着也不会生效了.对吧?
作者: ivor    时间: 2019-1-14 20:04

  1. ipconfig /?
复制代码

作者: Batcher    时间: 2023-4-13 23:01

【方法1】BAT调用PowerShell



禁用IPv6.bat
  1. @echo off
  2. %1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("""%~f0""","::",,"runas",1)(close)&exit /b
  3. powershell –NoProfile –ExecutionPolicy Bypass "Disable-NetAdapterBinding -Name 'VirtualBox Host-Only' -ComponentID ms_tcpip6"
复制代码


启用IPv6.bat
  1. @echo off
  2. %1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("""%~f0""","::",,"runas",1)(close)&exit /b
  3. powershell –NoProfile –ExecutionPolicy Bypass "Enable-NetAdapterBinding -Name 'VirtualBox Host-Only' -ComponentID ms_tcpip6"
复制代码
【方法2】修改注册表

禁用IPv6.bat
  1. reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters" /v DisabledComponents /t REG_DWORD /d 255 /f
复制代码


启用IPv6.bat
  1. reg delete "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters" /v DisabledComponents /f
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2