added scripts and SUPERMICRO

This commit is contained in:
2012-02-29 15:47:11 -05:00
parent 939e57d438
commit b9cd8bbfd2
818 changed files with 35440 additions and 0 deletions

25
EnableKerbLog.vbs Normal file
View File

@@ -0,0 +1,25 @@
'==========================================================================
'
' VBScript Source File -- Created with SAPIEN Technologies PrimalSCRIPT(TM)
'
' NAME: EnableKerbLog.vbs
'
' AUTHOR: Microsoft Corp.
' DATE : 12/14/2001
'
' COMMENT: Script is designed to assist Customers with Enabling Kerberos Logging
' on Multiple Clients.
'==========================================================================
Dim wsObj
Set wsObj = CreateObject("Wscript.Shell")
' Add the LogLevel Value to Kerberos Key in Registry.
On Error Resume Next
WScript.Echo "Enabling Kerberos Logging..."
wsObj.RegWrite "HKLM\System\CurrentControlSet\Control\LSA\Kerberos\Parameters\LogLevel",1,"REG_DWORD"
Set wsObj = Nothing
WScript.Echo "-=[Complete!]=-"