通过其IP地址以批处理文件打开网站

时间:2021-06-07 19:00:23

标签: batch-file

我的代码有问题。 我不知道如何通过ip批量打开网站。 这是我正在使用的代码:

@echo off
SET /A a = 0
title MNG ver.0.1
echo Initializing MNG ver.0.1
Timeout /t 5 /nobreak >nul
echo MNG initialized
Timeout /t 1 /nobreak >nul
echo which page do you want to visit?
Timeout /t 1 /nobreak >nul
echo 1.Newgrounds.com
Timeout /t 1 /nobreak >nul
echo 2.Youtube.com
Timeout /t 1 /nobreak >nul
echo 3.Facebook.com
Timeout /t 1 /nobreak >nul
echo 4.Exit
Timeout /t 3 /nobreak >nul
set /p answer=Select your choice
if "%answer%"=="1" (GOTO Label1)
if "%answer%"=="2" (GOTO Label2)
if "%answer%"=="3" (GOTO Label3)
if "%answer%"=="4" (GOTO Label4)

:Label1
start "chrome.exe" 51.79.77.158

:Label2
start "chrome.exe" 142.250.179.238

:Label3
start "chrome.exe" 157.240.214.35

:Label4
End

它有很多超时,但它们是为了让程序看起来更黑客。 就像我打字一样,此代码无法通过我学校所需的 ip 打开网页,因为他们安装了保护措施以防止小孩子玩不合适的游戏!(准确地说是周五晚上在 newgrounds 上的 funkin)

0 个答案:

没有答案
相关问题