This is a simple webform that asks for the username and when you click submit it will generate a random password.
default.htm
FIT Password Reset
All usage is monitored and logged.
fitPassReset.pl
This is a simple webform that asks for the username and when you click submit it will generate a random password.
default.htm
FIT Password Reset
All usage is monitored and logged.
VBscript that reads the users info property in AD for a list of printers to map.
On error resume next Set WshNetwork = Wscript.CreateObject("Wscript.Network") set oUser = GetObject("LDAP://CN=" & WshNetwork.username & ",OU=Users,DC=Domain,DC=Local") Printers=split(oUser.Get("info"),VbCrLf) first=True For i = LBound(Printers) to UBound(Printers) If first = True Then WshNetwork.AddWindowsPrinterConnection(trim(Printers(i))) WshNetwork.SetDefaultPrinter(trim(Printers(i))) first=False Else WshNetwork.AddWindowsPrinterConnection(trim(Printers(i))) End If Next
This is a basic vbscript that maps 2 network drives
on error resume next Set WshNetwork = WScript.CreateObject("WScript.Network") DriveMapper "z:", "\\vsrpmain\BusApps" DriveMapper "o:", "\\vsrpmain\common" Sub DriveMapper(Drive, Share) WshNetwork.MapNetworkDrive Drive, Share End Sub