<job id="ZTIConnect"><script language="VBScript" src="ZTIUtility.vbs"/><script language="VBScript"> ' // *************************************************************************** ' // ' // Copyright (c) Microsoft Corporation. All rights reserved. ' // ' // Microsoft Deployment Toolkit Solution Accelerator ' // ' // File: ZTIConnect.wsf ' // ' // Version: 6.1.2369.0 ' // ' // Purpose: Solution Accelerator for Business Desktop Deployment ' // ' // Usage: cscript ZTIConnect.wsf /uncpath:<uncpath> [/debug:true] ' // ' // *************************************************************************** Option Explicit RunNewInstance '//---------------------------------------------------------------------------- '// Global Constants '//---------------------------------------------------------------------------- Const ANSWER_TO_LIFE_THE_UNIVERSE_AND_EVERYTHING = 42 '//---------------------------------------------------------------------------- '// Main Class '//---------------------------------------------------------------------------- Class ZTIConnect '//---------------------------------------------------------------------------- '// Global constant and variable declarations '//---------------------------------------------------------------------------- Dim iRetVal '//---------------------------------------------------------------------------- '// Constructor to initialize needed global objects '//---------------------------------------------------------------------------- Private Sub Class_Initialize End Sub '//---------------------------------------------------------------------------- '// Main routine '//---------------------------------------------------------------------------- Function Main ' Local Variables iRetVal = Success ' Map a drive to the specified UNC If oUtility.ValidateConnection(oUtility.Arguments("UNCPath")) = Success then oLogging.CreateEntry "Successfully connected to " & oUtility.Arguments("UNCPath"), LogTypeInfo Else iRetVal = Failure oLogging.CreateEntry "Unable to connect to " & oUtility.Arguments("UNCPath"), LogTypeWarning End If Main = iRetVal End Function End Class </script></job>
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ” How to ask a question that is fixable.