Elsinore

User Forum

www.screenconnect.com
Welcome Guest Search | Active Topics | Log In | Register

Tag as favorite
Client Requirments
Techman
#1 Posted : Wednesday, September 21, 2011 11:50:52 PM
Rank: Member
Joined: 6/10/2011
Posts: 13
Location: Texas
Is there a tool or script we can have our remote clients run to make sure there client machine meets the system requirement for the screenconnect guest client to run. Im not a programmer but this could be a useful tool users and download before a session.
bigdessert
#2 Posted : Thursday, September 22, 2011 1:13:05 AM
Rank: Advanced Member
Joined: 9/14/2010
Posts: 460
Location: Minnesota
Unsure as to why this is needed, if a windows system doesn't have .net, then it will be downloaded and installed upon first connection.
Techman
#3 Posted : Thursday, September 22, 2011 1:56:25 AM
Rank: Member
Joined: 6/10/2011
Posts: 13
Location: Texas
Mainly for home users before they pay for a remote session to make sure there system requirements are up to par before the session begins. Just a thought.
bigdessert
#4 Posted : Thursday, September 22, 2011 2:19:23 AM
Rank: Advanced Member
Joined: 9/14/2010
Posts: 460
Location: Minnesota
So what do you want to check, I can try to whip something together. For windows I assume....do you want to check .net and java or just .net?
bigdessert
#5 Posted : Thursday, September 22, 2011 2:58:04 AM
Rank: Advanced Member
Joined: 9/14/2010
Posts: 460
Location: Minnesota
Ok here is my quick 10 minute version of a vbscript.

Save the following as checker.vbs and have your client download and run it. It will display either that they meet the requirements or they don't. This only works on windows.

Code:
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
net = 0
java = 0

Set colItems = objWMIService.ExecQuery("Select Name, Version from Win32_Product Where Name Like 'Microsoft .NET Framework%'")
For Each objItem in colItems
    If objItem.Version >= "2" Then
        net = 1
    End If
Next

Set colItems = objWMIService.ExecQuery("Select Name, Version from Win32_Product Where Name Like 'Java%'")
For Each objItem in colItems
    If objItem.Name <> "Java Auto Updater" Then
        If objItem.Version >= "1.5" Then
            java = 1
        End If
    End If
Next

If net = 1 Or java = 1 Then
    Wscript.Echo "You meet the minimum requirements!"
Else
    Wscript.Echo "You DO NOT meet the minimum requirements"
End If
Techman
#6 Posted : Thursday, September 22, 2011 8:34:11 PM
Rank: Member
Joined: 6/10/2011
Posts: 13
Location: Texas
This works perfectly. Thanks Bigdessert.
Users browsing this topic
Guest
Tag as favorite
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.