Well I found this script in the Net to automatically change the static IP address of the WiFi network and the proxy address when I connect my laptop at work.
Well the script works fine except I now trying to make another script to put all in order when I connect from my home knowing that the address should be dynamic. So How can do that ?
Thanks !
Well the script works fine except I now trying to make another script to put all in order when I connect from my home knowing that the address should be dynamic. So How can do that ?
Thanks !
Code:
' Initialize Objects
Dim LocalClass_StdRegProv: Set LocalClass_StdRegProv = GetObject("winmgmts:{impersonationlevel=impersonate}!//./root/default:StdRegProv")
Dim EmptyRecordset: Set EmptyRecordset = CreateObject("ADODB.Recordset")
' Define Constants
Const HKEY_CLASSES_ROOT = &H80000000, HKCR = &H80000000
Const HKEY_CURRENT_USER = &H80000001, HKCU = &H80000001
Const HKEY_LOCAL_MACHINE = &H80000002, HKLM = &H80000002
Const HKEY_USERS = &H80000003, HKU = &H80000003
Const HKEY_PERFORMANCE_DATA = &H80000004, HKPD = &H80000004
Const HKEY_CURRENT_CONFIG = &H80000005, HKCC = &H80000005
Const HKEY_DYN_DATA = &H80000006, HKDD = &H80000006
Const MaxCharacters = 255
Const adVarChar = 200
Const adInteger = 3
' Dimension Public Variables
Dim EntryNumber: EntryNumber = 0
Dim Return
EmptyRecordset.Fields.Append "Entry", adInteger
EmptyRecordset.Fields.Append "Name", adVarChar, MaxCharacters
EmptyRecordset.Fields.Append "Server", adVarChar, MaxCharacters
EmptyRecordset.Fields.Append "Port", adInteger
EmptyRecordset.Open
' Add server/port
EntryNumber = EntryNumber + 1
EmptyRecordset.AddNew
EmptyRecordset("Entry") = EntryNumber
EmptyRecordset("Name") = "Proxy 172.16.0.1:3128"
EmptyRecordset("Server") = "172.16.0.1"
EmptyRecordset("Port") = 3128
EmptyRecordset.Update
EntryNumber = EntryNumber + 1
EmptyRecordset.AddNew
EmptyRecordset("Entry") = EntryNumber
EmptyRecordset("Name") = "Sans Proxy"
EmptyRecordset("Server") = ""
EmptyRecordset("Port") = 80
EmptyRecordset.Update
Dim Message
EmptyRecordset.MoveFirst
Do While EmptyRecordset.EOF = False
Message = Message & EmptyRecordset("Entry").Value & "." & vbTab & EmptyRecordset("Name").Value & vbCrLf
EmptyRecordset.MoveNext
Loop
Do
Dim intAnswer: intAnswer = InputBox(Message, "Choisir une puis validez sur Ok", "1")
If IsNumeric(intAnswer) = True Then intAnswer = CLng(intAnswer)
If intAnswer > EmptyRecordset.RecordCount Or intAnswer < 0 Then WScript.Echo "Invalid entry, please try again..."
Loop Until (((VarType(intAnswer) And vbLong) = vbLong) And intAnswer <= EmptyRecordset.RecordCount And intAnswer >= 0)
Select Case True
Case (intAnswer = 0)
WScript.Echo "Cancelled. Exiting."
Case (((VarType(intAnswer) And vbLong) = vbLong) And intAnswer <= EmptyRecordset.RecordCount And intAnswer > 0)
EmptyRecordset.Filter = "Entry=" & intAnswer
Dim ProxyServer: ProxyServer = EmptyRecordset("Server").Value & ":" & EmptyRecordset("Port").Value
intAnswer = MsgBox("Would you like to set the proxy to " & EmptyRecordset("Name").Value & " (" & ProxyServer & ")?", vbQuestion + vbYesNo + vbSystemModal, "Confirm")
If intAnswer = vbYes Then
Return = LocalClass_StdRegProv.SetDWORDValue(HKEY_CURRENT_USER, "Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyEnable", 1)
Return = LocalClass_StdRegProv.SetStringValue(HKEY_CURRENT_USER, "Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyServer", ProxyServer)
ChangeIP()
If Err.Number = 0 And Return = 0 Then
WScript.Echo "Proxy settings changed. Exiting."
Else
WScript.Echo "Proxy settings not changed. Exiting."
End If
Else
WScript.Echo "No changes made. Exiting."
End If
Case Else
WScript.Echo "Invalid entry. Exiting"
End Select
Sub ChangeIP()
strIP = Array("172.16.100.100")
strmask = Array("255.255.255.0")
strGateway = Array("")
strGatewayMetric = Array(1)
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colNetAdapters = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")
For Each objNetAdapter in colNetAdapters
errEnable = objNetAdapter.EnableStatic(strIP, strmask)
errGateways = objNetAdapter.SetGateways(strGateway, strGatewaymetric)
If errEnable = 0 Then
WScript.Echo "The IP address has been changed."
Else
WScript.Echo "The IP address could not be changed."
End If
Next
End Sub