[PIPython] parametri proxy
Chiara KiaZ
kiazsurf
Ven 19 Nov 2004 15:16:51 CET
--- Mariano Di Felice <mardif a eprometeus.com> ha
scritto:
> >Se ti serve un esempio chidi che posto un pezzo del
> >mio
> >programmillo ..
> >
> >ciao
> >
> >
> si grazie. Ti ringrazio infinitamente!!! :-)
>
> --
Ecco :
[code]
import win32api
import win32con
import exceptions
chiave =
win32api.RegOpenKey(win32con.HKEY_CURRENT_USER ,
"Software")
chiave = win32api.RegOpenKey(chiave , "Microsoft")
chiave = win32api.RegOpenKey(chiave , "Windows")
chiave = win32api.RegOpenKey(chiave ,
"CurrentVersion")
chiave = win32api.RegOpenKey(chiave , "Internet
Settings")
#proxy = win32api.RegQueryValue(chiave ,
"ProxyServer")
flag = 0
i = 0
proxyEnable = 0
proxyIp = ""
try:
while(flag != 2):
setting1 = win32api.RegEnumValue(chiave , i)
valore = win32api.RegQueryValueEx(chiave,
setting1[0])
if(setting1[0] == "ProxyEnable"):
flag = flag+1
proxyEnable = valore[0]
if(setting1[0] == "ProxyServer"):
flag = flag+1
proxyIp = str(valore[0])
print "Tipo chiave proxy :
"+str(valore[1])
#print "Chiavi :"+setting1[0]+"\t\tValore :
"+str(valore[0])
i = i+1
except Exception:
print "Lettura terminata"
print "Configurazione proxy"
if(proxyEnable == 0):
print "Proxy disattivato"
else:
print "Proxy attivato "
print "Ip proxy settato : "+proxyIp
[/code]
___________________________________
Scopri Mister Yahoo! - il fantatorneo sul calcio di Yahoo! Sport
http://it.seriea.fantasysports.yahoo.com/
More information about the Python
mailing list