List Task Sequence Variables and Values Script

For years I have been using the following script from myITforum to list Task Sequence Environment Variables and Values Set oTSEnv = CreateObject("Microsoft.SMS.TSEnvironment") For Each oVar In oTSEnv.GetVariables WScript.Echo oVar & "=" & oTSEnv(oVar) Next Because there are so many Read More …

ToolTip: Windows Services Dependency Viewer

During my periodic visit on CodePlex I came across the Windows Services Dependency Viewer utility. The tool provides access to the following information: Windows service dependent and antecedent services Services grouped by process Service details (from Win32_Service WMI class) Service Read More …