This by request VBS script will allow you to enter a remote client machine name and will open the clients CcmSetup directory folder.
VBS Script:
strcomputer = InputBox ("Enter Client Machine Name")
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "Explorer \\" & strComputer & "\Admin$\System32\CcmSetup"
WScript.Quit
No Comments