ah ah
usa le GPO e lancia uno script vbs nel quale apri e chiudi la pagina.
come?
codice:
APRI
Sub CreateIE()
On Error Resume Next
Set IE = CreateObject("InternetExplorer.Application")
With IE
.navigate "\\dcst01\netlogon\logon.htm"
.resizable=0
.height=420
.width=350
.menubar=0
.toolbar=0
.statusBar=0
.visible=1
End With
Do while ie.Busy
Wscript.Sleep 100
Loop
End Sub
public Sub IE_onquit()
WScript.Echo ("pippo")
End Sub
PER CHIAMRLA
Call CreateIE()
CHIUDI
ie.quit()
Lo metti nella GPO al login di un utente (logon script)