Updated Help Me! Icon

Status
Not open for further replies.

Osiris

Golden Master
Messages
36,817
Location
Kentucky
This is a program is use to remote into users computers. This is for VNC Free version 4.1.2

Download VNC RealVNC - VNC Downloads

Uncheck register as a service and the one underneath it, can't remember of hand.

Open notepad, copy and paste the info below, save it as helpme.bat

@echo off
Cd "C:\Program Files\RealVNC\VNC4"
start winvnc4.exe -noconsole
rem CMD /K ipconfig
start c:\windows\config\IP.vbs


Open notepad, copy and paste the info below and save it as IP.vbs

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
:Set IPConfigSet = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration Where IPEnabled=TRUE")

For Each IPConfig in IPConfigSet
If Not IsNull(IPConfig.IPAddress) Then
'For i=LBound(IPConfig.IPAddress) to UBound(IPConfig.IPAddress)
WScript.Echo IPConfig.IPAddress(0)
'Next
End If
Next


Place both of these files in

C:\Windows\Config


Now make a new shortcut, browse to C:\Windows\Config\helpme.bat

Name the icon Help Me!


You should now have an icon on your desktop, change it to whatever you want.

Double click it, your ip address should now be displayed. The users launches the help me icon, you put the IP address in VNC Viewer, type in the password if one was applied, and your in.


Enjoy!
 
Status
Not open for further replies.
Back
Top Bottom