This By Request VBS Script will allow you to open the Logs directory folder on a SMS site server in a semi-automated process by hard coding parts of the the Logs share name.
VBS Script:
strComputer = InputBox ("Enter SMS Server Name")
strSiteCode = InputBox ("Enter Site Code")
strLogsFolder = "SMS_" & strSiteCode & "\Logs"
Set objShell = CreateObject("Wscript.Shell")
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * From Win32_Share")
strCommand = "\\" & strComputer & "\" & strLogsFolder
objShell.Run strCommand
No Comments