Vb script – MapNetworkDrive

Option Explicit Dim objNetwork, objFSO, objShell Dim strDriveLetter, bForce, bUpdateProfile, strNewName strDriveLetter = "Z:" bForce = "True" bUpdateProfile = "True" strNewName = "\\bıdıbıdı\folder" Set objFSO = CreateObject("Scripting.FileSystemObject") Set objNetwork = CreateObject("Wscript.Network") If (objFSO.DriveExists(strDriveLetter) =...