Modeme Pc Üzerinden Oto Reset??

axipower07

Kayıtlı Üye
Katılım
9 Aralık 2014
Mesajlar
243
Tepkime puanı
0
Puan
0
Konum
Antalya
Web sitesi
www.youtube.com
merhaba arkadaşlar ben kanal eklerken modemi kapatıp açıyorum fakat ıp degişmiyor nedenini bulamadım. Oto reset tarzı programlar varsa yardımcı olun videoyap a kanal ekleyemeyemiyorum.
Herkese bol kazançlar
 
Kablonetse modemi kapatıp açmakla ipi değiştiremezsin.
 
Bir .bat dosyası vardı bir zamanlar, biraz araştırın hocam :)
 
Modem arayüzüne girip IP adresinizi görerek değiştirmeniz en sağlıklısı. TTNET kullanıyorsanız 192.168.1.1 ile giriş yapın. Her modem için farklı arayüz olur araştırıp bulursanız iyi olur
 
Ne yapmam lazim hocam sonuçta temiz çalışmak gerek her kanala girdiğimizde ip degisik olmasi lazım

Hocam internet sağlayıcıyla konuşup Dinamik ip'ye geçiş yapmanız lazım. Normalde modem kapanıp açıldığında ip'nin değişmesi gerekiyor, Dinamik ise.

Sizinki Statik ip.
 
cmd ile yapabilirsin. otomatik değil ama yöntemleştirirseniz otomatikleşir.

ipconfig /release (ip sıfırlar)
ipconfig /renew (yeni ip alır)

ve ayrıca masaüstüne bi text dosyası oluştur. reset.vbs olarak yaz ismini. ve içine yapıştr. esinlen

Kod:
Option Explicit 'Enforce strict naming
Dim WSH, FSO
Dim objComputer, objWMIService, objOperatingSystem, objNetAdapter
Dim strTitle, strVersion, strThisPC, strComputername, strCompNameRegPath, strWorkgroup
Dim strCCS, strTcpipParamsRegPath, strIPAddress, strSubnetMask, strGateway,         strGatewayMetric
Dim colMEM, colNetAdapters, colOperatingSystems
Dim errEnable, errGateways

'Setup scripting environment
Set WSH = CreateObject ("WSCript.shell")
Set FSO = CreateObject("Scripting.FileSystemObject")

'Set Version info
strVersion = "v04"

'Set target PC for WMI
strThisPC = "."

'Set the Title for any dialogs
strTitle = "XP Clone Changer " & strVersion

'------------------------------------------------------------------------
'Section 1 - Use WMI to change IP address, subnet mask and gateway
WSH.Popup "Preparing to change IP address, subnet mask and gateway... Please wait.",2,             strTitle 'Inform user

'Setup WMI
Set objWMIService = GetObject("winmgmts:\\" & strThisPC & "\root\cimv2")

'Set specific WMI query so 1394 adapter is excluded
Set colNetAdapters = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")

'Get user input into an array
strIPAddress = Array(InputBox("Enter the new IP address"))
strSubnetMask = Array(InputBox("Enter the new Subnet mask"))
strGateway = Array(InputBox("Enter the new Gateway address"))

'Inform user
WSH.Popup "Please be patient whilst changes are made. This could take 10 seconds or     more.",3, strTitle 'Inform user
strGatewayMetric = Array(1)

'Make the changes
For Each objNetAdapter in colNetAdapters
errEnable = objNetAdapter.EnableStatic(strIPAddress, strSubnetMask)
errGateways = objNetAdapter.SetGateways(strGateway, strGatewaymetric)
If errEnable = 0 Then
    WSH.Popup "The IP address has been changed.",2,strTitle 'Inform user of success
Else
    WSH.Popup "The IP address could not be changed automatically." & vbCrLf & vbCrLf &_
     "This may be because the PC/Laptop is not connected to an active network." &     vbCrLf & vbCrLf &_
     "Please check the IP settings manually afterwards.",2,strTitle 'Inform user of         failure
End If
Next

Set WSH = Nothing
Set FSO = Nothing
Set objWMIService = Nothing
Set colNetAdapters = Nothing
Set colMEM = Nothing
WScript.Quit

bunda belirlediğiniz ip veriliyo. isterseniz otomatikleştirebilirsiniz
 
Son düzenleme:
cmd ile yapabilirsin. otomatik değil ama yöntemleştirirseniz otomatikleşir.

ipconfig /release (ip sıfırlar)
ipconfig /renew (yeni ip alır)

ve ayrıca masaüstüne bi text dosyası oluştur. reset.vbs olarak yaz ismini. ve içine yapıştr. esinlen

Kod:
Option Explicit 'Enforce strict naming
Dim WSH, FSO
Dim objComputer, objWMIService, objOperatingSystem, objNetAdapter
Dim strTitle, strVersion, strThisPC, strComputername, strCompNameRegPath, strWorkgroup
Dim strCCS, strTcpipParamsRegPath, strIPAddress, strSubnetMask, strGateway,         strGatewayMetric
Dim colMEM, colNetAdapters, colOperatingSystems
Dim errEnable, errGateways

'Setup scripting environment
Set WSH = CreateObject ("WSCript.shell")
Set FSO = CreateObject("Scripting.FileSystemObject")

'Set Version info
strVersion = "v04"

'Set target PC for WMI
strThisPC = "."

'Set the Title for any dialogs
strTitle = "XP Clone Changer " & strVersion

'------------------------------------------------------------------------
'Section 1 - Use WMI to change IP address, subnet mask and gateway
WSH.Popup "Preparing to change IP address, subnet mask and gateway... Please wait.",2,             strTitle 'Inform user

'Setup WMI
Set objWMIService = GetObject("winmgmts:\\" & strThisPC & "\root\cimv2")

'Set specific WMI query so 1394 adapter is excluded
Set colNetAdapters = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")

'Get user input into an array
strIPAddress = Array(InputBox("Enter the new IP address"))
strSubnetMask = Array(InputBox("Enter the new Subnet mask"))
strGateway = Array(InputBox("Enter the new Gateway address"))

'Inform user
WSH.Popup "Please be patient whilst changes are made. This could take 10 seconds or     more.",3, strTitle 'Inform user
strGatewayMetric = Array(1)

'Make the changes
For Each objNetAdapter in colNetAdapters
errEnable = objNetAdapter.EnableStatic(strIPAddress, strSubnetMask)
errGateways = objNetAdapter.SetGateways(strGateway, strGatewaymetric)
If errEnable = 0 Then
    WSH.Popup "The IP address has been changed.",2,strTitle 'Inform user of success
Else
    WSH.Popup "The IP address could not be changed automatically." & vbCrLf & vbCrLf &_
     "This may be because the PC/Laptop is not connected to an active network." &     vbCrLf & vbCrLf &_
     "Please check the IP settings manually afterwards.",2,strTitle 'Inform user of         failure
End If
Next

Set WSH = Nothing
Set FSO = Nothing
Set objWMIService = Nothing
Set colNetAdapters = Nothing
Set colMEM = Nothing
WScript.Quit

bunda belirlediğiniz ip veriliyo. isterseniz otomatikleştirebilirsiniz
hocam videolu anlatım varmı?
 
Hocam suan sadece modemi pc üzerinden sadece modem arayüzüne girerek oto resetleyebiliyorsun bat dosya olayı hikaye oldu eskidendi diyolar hiç denemedim yapmanız gereken 192.168 olan ip aralıgından modem arayüzüne girip modemi yeniden başlatmak
 
cmd ile yapabilirsin. otomatik değil ama yöntemleştirirseniz otomatikleşir.

ipconfig /release (ip sıfırlar)
ipconfig /renew (yeni ip alır)

ve ayrıca masaüstüne bi text dosyası oluştur. reset.vbs olarak yaz ismini. ve içine yapıştr. esinlen

Kod:
Option Explicit 'Enforce strict naming
Dim WSH, FSO
Dim objComputer, objWMIService, objOperatingSystem, objNetAdapter
Dim strTitle, strVersion, strThisPC, strComputername, strCompNameRegPath, strWorkgroup
Dim strCCS, strTcpipParamsRegPath, strIPAddress, strSubnetMask, strGateway,         strGatewayMetric
Dim colMEM, colNetAdapters, colOperatingSystems
Dim errEnable, errGateways

'Setup scripting environment
Set WSH = CreateObject ("WSCript.shell")
Set FSO = CreateObject("Scripting.FileSystemObject")

'Set Version info
strVersion = "v04"

'Set target PC for WMI
strThisPC = "."

'Set the Title for any dialogs
strTitle = "XP Clone Changer " & strVersion

'------------------------------------------------------------------------
'Section 1 - Use WMI to change IP address, subnet mask and gateway
WSH.Popup "Preparing to change IP address, subnet mask and gateway... Please wait.",2,             strTitle 'Inform user

'Setup WMI
Set objWMIService = GetObject("winmgmts:\\" & strThisPC & "\root\cimv2")

'Set specific WMI query so 1394 adapter is excluded
Set colNetAdapters = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")

'Get user input into an array
strIPAddress = Array(InputBox("Enter the new IP address"))
strSubnetMask = Array(InputBox("Enter the new Subnet mask"))
strGateway = Array(InputBox("Enter the new Gateway address"))

'Inform user
WSH.Popup "Please be patient whilst changes are made. This could take 10 seconds or     more.",3, strTitle 'Inform user
strGatewayMetric = Array(1)

'Make the changes
For Each objNetAdapter in colNetAdapters
errEnable = objNetAdapter.EnableStatic(strIPAddress, strSubnetMask)
errGateways = objNetAdapter.SetGateways(strGateway, strGatewaymetric)
If errEnable = 0 Then
    WSH.Popup "The IP address has been changed.",2,strTitle 'Inform user of success
Else
    WSH.Popup "The IP address could not be changed automatically." & vbCrLf & vbCrLf &_
     "This may be because the PC/Laptop is not connected to an active network." &     vbCrLf & vbCrLf &_
     "Please check the IP settings manually afterwards.",2,strTitle 'Inform user of         failure
End If
Next

Set WSH = Nothing
Set FSO = Nothing
Set objWMIService = Nothing
Set colNetAdapters = Nothing
Set colMEM = Nothing
WScript.Quit

bunda belirlediğiniz ip veriliyo. isterseniz otomatikleştirebilirsiniz


bu sadece iç ip değiştirir, internete çıkış ipsini değiştirmez
 
Kişiselleştirme

Tema editörü

Ayarlar Renkler

  • Mobil kullanıcılar bu fonksiyonları kullanamaz.

    Alternatif header

    Farklı bir görünüm için alternatif header yapısını kolayca seçebilirsiniz.

    Görünüm Modu Seçimi

    Tam ekran ve dar ekran modları arasında geçiş yapın.

    Izgara Görünümü

    Izgara modu ile içerikleri kolayca inceleyin ve düzenli bir görünüm elde edin.

    Resimli Izgara Modu

    Arka plan görselleriyle içeriğinizi düzenli ve görsel olarak zengin bir şekilde görüntüleyin.

    Yan Paneli Kapat

    Yan paneli gizleyerek daha geniş bir çalışma alanı oluşturun.

    Sabit Yan Panel

    Yan paneli sabitleyerek sürekli erişim sağlayın ve içeriğinizi kolayca yönetin.

    Box görünüm

    Temanızın yanlarına box tarzı bir çerçeve ekleyebilir veya mevcut çerçeveyi kaldırabilirsiniz. 1300px üstü çözünürler için geçerlidir.

    Köşe Yuvarlama Kontrolü

    Köşe yuvarlama efektini açıp kapatarak görünümü dilediğiniz gibi özelleştirin.

  • Renginizi seçin

    Tarzınızı yansıtan rengi belirleyin ve estetik uyumu sağlayın.

Geri