Log\_SubmitLogs
VB Scripting Library > OSD Scripting Library > Log functions (OSD)
Log_SubmitLogs()
Section titled “Log_SubmitLogs()”Submits all registered logs to a subfolder under the specified root folder set in the global value gsLogServerFolder.
The logfiles will be copied to a subfolder with the same name as the UUID of the computer.
Before submitting, all logfiles are scanned for unwanted passwords etc.
Arguments
Section titled “Arguments”No arguments provided.
Return Type
Section titled “Return Type”Boolean, TRUE if function completed successfully.
Remarks
Section titled “Remarks”Typpically used in the PreBootScript.wsf
If the web service is enabled in OSDGui.ini, files are submitted to this service instead of copying files to a file share.
Example
Section titled “Example”The following example will do the following:
-
Set the global variable gsLogServerFolder to a log share on the OSD server.
-
Add a custom logfile is registered for submit along with the well-known logfiles.
-
Register the product key as an unwanted text string that should be excluded from all files.
-
Submit the logfiles.
Private Function IncludeScript(sScriptFile)'...End Function'BeginbStatus=TrueIf bStatus Then bStatus=IncludeScript("customlib.cis")If bStatus Then bStatus=IncludeLibrary("Capalib.cin")If bStatus Then bStatus=IncludeLibrary("Osdlib.cin")If bStatus Then bStatus=Job_Start("WS","Script Name","1.0","ScriptName.log","INSTALL")If bStatus Then bStatus=OSD_Initialize()gsLogServerFolder="\\" & gsBootServer & "\LogFiles" 'set the log folder rootsProductKey = "11111-22222-33333-44444-55555"If bStatus Then bStatus=Sysprep_SetProductKey(sProductKey)If bStatus Then bStatus=Log_RegisterExcludeValue("Product key",sProductKey) 'remove productkey value from logfilesIf bStatus Then bStatus=Log_RegisterWellKnownFiles()If bStatus Then bStatus=Log_RegisterLogfile("X:\MyTestLog.log) 'register an aditional file to submitIf bStatus Then bStatus=Log_SubmitLogs() 'submit the logsJob_End(bStatus)'End main
See Also
Section titled “See Also”Scripting Guidelines, Log_RegisterExcludeValue, Log_RegisterWellKnownFiles, Log_RemoveLogs, Log_RegisterLogfile