Forum
Bildirimler
Hepsini Temizle
Windows Server
2
Yazılar
2
Üyeler
0
Reactions
590
Görüntüleme
Konu başlatıcı
ağımda etki alanına dahil 63 adet pc var bunların administrator ile oturum açmalarını engellemek için şifre koymak istiyorum ama bunu tek tek yapmak yerine gpo ile nasıl yapabilirm
Gönderildi : 18/12/2010 13:04
Merhabalar ;
Script:
Set oShell = CreateObject("WScript.Shell")
Const SUCCESS = 0
sUser = "administrator"
sPwd = "Password2"
' get the local computername with WScript.Network,
' or set sComputerName to a remote computer
Set oWshNet = CreateObject("WScript.Network")
sComputerName = oWshNet.ComputerName
Set oUser = GetObject("WinNT://" & sComputerName & "/" & sUser)
' Set the password
oUser.SetPassword sPwd
oUser.Setinfo
oShell.LogEvent SUCCESS, "Local Administrator password was changed!"
Gönderildi : 18/12/2010 13:34