1-20 of 29
Previous
Next |
Find Out What Applications Transmit Data from Your Computer
by Srinath MS
This tip can help you determine if your computer is hosting spyware that sends your information to another server.
|
Determine Your Network Interfaces and IP Names
by Leonard Anghel
Use this to determine the names of your network interfaces and IPs. Of course, it can be used only for machines that have more than one network interface.
|
GetDomainName - Retrieving the domain name
by Marco Bellinaso
Returns the domain name
Requires a reference to System.Management and the respective Imports
|
GetDomainRole - Retrieving the domain role
by Marco Bellinaso
Returns the domain role
Requires a reference to System.Management and the respective Imports
|
GetNetworkAvailability - Retrieving the network availability
by Marco Bellinaso
Returns the network availability
Requires a reference to System.Management and the respective Imports
|
GetLocalHostIpAddresses - Retrieving the array of IP addresses for the local host
by Marco Bellinaso
Return the array of IP addresses for the local host
Note: Requires Imports System.Net
Example:
Dim ipa As IPAddress
For Each ipa In GetLocalHostIpAddresses()
Debug.WriteLine(ipa.ToString())
Next
|
LanCardAddress - Read the Ethernet address of a LAN card
by Francesco Balena
Read the Ethernet address of a LAN card.
This number can be considered to uniquely identify a network adapter
|
ShowNetworkDiskConnectionDialog - Show a dialog to connect or disconnect a drive
by Marco Bellinaso
show the dialog to connect/disconnect a network disk
If the argument is True it shows the ConnectDialog, otherwise it shows the Disconnect dialog
the second argument is the hWnd of the parent dialog
The function returns False if the dialog is canceled, True otherwise.
|
GetPDCName - The name of the Primary Domain Controller
by Francesco Balena
Return the name of the Primary Domain Controller (PDC)
server names are preceded by a double slash
|
NetworkUserName - The user name used to establish a network connection
by Francesco Balena
return the current default user name or
the user name used to establish a connection
|
Windows NT Administration
by DevX Pro
How can I add hundreds of users to the NT server by an automated procedure?
|
Windows NT Profiles
by DevX Pro
Why are Windows NT user profiles created with extensions of .000, .001, and so on?
|
NT Admin
by DevX Pro
Can I move 600+ users from a standalone server to a PDC with all rights and information intact, without having to recreate the users on the PDC?
|
Time Synchronization Under NT 4
by DevX Pro
How do I synchronize all NT 4 workstation system clocks on a network with a central point of contact?
|
Remote NT Web Administration
by DevX Pro
I want to provide the facility to add/delete/modify Windows NT users from a remote browser. However, I don't know how to do it. Can you kindly help?
|
Win NT / Get UserGroups Permissions in VB
by DevX Pro
I would like to get the permissions for the users of my app. I have setup groups for users with the appropriate permisions. Now all I want to do is check which group they belong to, when they execute my app.
|
Enabling Sharing Tab
by DevX Pro
Can you please tell me how I can enable the sharing tab when sharing local drives? I'm using an NT Workstation 4.0 and when I'm logged on as an administrator, the sharing tab is present. But if I'm logged on as ordinary user, the sharing tab is NOT present. Can you please tell me how to enable this?
|
GetUNCName - Convert a file path to a UNC path
by Marco Losavio
Converts a reference to a file in the standard Windows
format (e.g. "H:\ServerDir\Filename.ext") in the corresponding UNC
format (e.g. "\\ServerName\ExportedDir\ServerDir\FileName.txt")
It turns to be very useful when a program running on a workstation
has to pass a file reference to ...
|
Add Share for a special User group in VB
by DevX Pro
How can I add a Share in Visual Basic to a Local or Remote Machine with permission only for a special User group?
|
IsNetworkInstalled - Check whether the network is installed
by Francesco Balena
Returns True if a Network is found (read-only)
|
1-20 of 29
Previous
Next |