Pytanie : w vbscript - Dlaczego móc I jeżeli kartoteka istnieć w daleki serwer który wymagać username i hasło logon?

w vbscript - Dlaczego móc I jeżeli kartoteka istnieć w daleki serwer który wymagać username i hasło logon?

Odpowiedź : w vbscript - Dlaczego móc I jeżeli kartoteka istnieć w daleki serwer który wymagać username i hasło logon?

próbować to.

Tam  być dwa pismo. Save imię na the ten sam falcówka, z the precyzować imię

The pismo używać the okno runas dowodzić the drugi pismo z różny referencje. Usuwać the /savecred jeżeli ty chcieć the hasło ratować runas.

Na the pierwszy pismo, instantiate the srtUser i srtDomain vaiables z the info the użytkownik który mieć dostęp the serwer/falcówka.

Na the drugi pismo instantiate the strFilePath z the ścieżka dla the kartoteka ty chcieć który istnieć.
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
'VBS RUNAS PISMO SAVE ONO JAKO RUNAS_REMOTE_FILE_CHECK.VBS

strUser = "USER_NAME"
strDomain = "DOMAIN_NAME"
strCurPath = CreateObject ("Scripting.FileSystemObject") .GetAbsolutePathName (" .")
strRunAs = " runas /savecred /user: "& strDomain &" \ "& strUser&"" & Chr (34) & "cscript.exe \ "& Chr (34) & strCurPath &" \ REMOTE_FILE_CHECK.VBS " & Chr (34)

Ustalony WshShell = CreateObject ("WScript.Shell")
strRunPath = strRunAs
WshShell.Run (strRunPath)

'========================================================================================================

'VBS PISMO - OPRÓCZ ONO JAKO REMOTE_FILE_CHECK.VBS

strFilePath = "ŚCIEŻKA DLA THE KARTOTEKA"

Ustalony objFSO = CreateObject ("Scripting.FileSystemObject")
Jeżeli objFSO.FileExists (strFilePath) Wtedy
    Wscript.Echo "Kartoteka istnieć."
Inny
    Wscript.Echo "Kartoteka Istnieć."
Kończyć Jeżeli
Inne rozwiązania  
 
programming4us programming4us