System Center Configuration Manager Password
Merhaba;
System Center Configuration Manager ile belirli task sequenceları client bilgisayarlara sunarken bir “password” kontrolü sağlayabiilirsiniz.Tabi bu durum için ufak bir script -hazırlamanız gerekiyor.
<job id=”PromptForPassword”>
<script language=”VBScript” >
Dim env,oTSProgressUI,MyPass
Set env = CreateObject(“Microsoft.SMS.TSEnvironment”)
set oTSProgressUI = CreateObject(“Microsoft.SMS.TSProgressUI”)
oTSProgressUI.CloseProgressDialog()
env(“ALLOWOSDBUILD”) = “NO”
MyPass=Inputbox(“Devam etmek icin sifre giriniz”)
If MyPass = “password” then
env(“ALLOWOSDBUILD”) = “YES”
End If
</script>
</job>
Yazdığımız script’i passwordcontrol.wsf yani uzantısı wsf olacak şekilde kaydediyoruz.Daha sonra bu scripti bir software paket programı olarak hazırlayıp distribution pointlere gönderebilirsiniz.Burada önemli olan paket içerisindeki program bölümünde komut satırı olarak cscript “passwordcontrol.wsf” girmeniz.