Click here to Skip to main content
15,912,977 members
Home / Discussions / System Admin
   

System Admin

 
GeneralNovell & NT Service Pin
Ed K14-May-03 10:42
Ed K14-May-03 10:42 
GeneralWindows has detected and recovered... Pin
Ray Cassick13-May-03 14:54
Ray Cassick13-May-03 14:54 
GeneralRe: Windows has detected and recovered... Pin
Vikram A Punathambekar19-May-03 23:09
Vikram A Punathambekar19-May-03 23:09 
GeneralRe: Windows has detected and recovered... Pin
Roger Wright20-May-03 5:03
professionalRoger Wright20-May-03 5:03 
GeneralRe: Windows has detected and recovered... Pin
Ray Cassick20-May-03 6:19
Ray Cassick20-May-03 6:19 
GeneralPeoplesoft CRM CIC Vs. Vantive 8.6 Pin
nicholas.gionfriddo12-May-03 9:58
nicholas.gionfriddo12-May-03 9:58 
QuestionHow to get remote hostname from IP addr Pin
Andrew Allen10-May-03 21:04
Andrew Allen10-May-03 21:04 
AnswerRe: How to get remote hostname from IP addr Pin
Dudi Avramov11-May-03 2:07
Dudi Avramov11-May-03 2:07 
Use inet_addr and gethostbyaddr.
Example:
int main(int argc, char* argv[])
{
	WSADATA d;
	WSAStartup(MAKEWORD(2,2), &d);
	char szIP[] = "1.2.3.4";

	long ip = inet_addr(szIP);
	HOSTENT *pHostent = gethostbyaddr((char*)&ip,4,AF_INET);
	if (pHostent)
	{
		printf("%s is %s", szIP, pHostent->h_name);
	}
	return 0;
}

Generalautomated user creation in win 98 Pin
Cihan Karadag10-May-03 6:13
Cihan Karadag10-May-03 6:13 
GeneralIntermittent Windows Explorer crashes in XP on XP SP1 Pin
Bruce Duncan10-May-03 1:43
Bruce Duncan10-May-03 1:43 
GeneralRe: Intermittent Windows Explorer crashes in XP on XP SP1 Pin
Robert Little10-May-03 11:16
Robert Little10-May-03 11:16 
GeneralRe: Intermittent Windows Explorer crashes in XP on XP SP1 Pin
Bruce Duncan11-May-03 8:27
Bruce Duncan11-May-03 8:27 
GeneralRestoring System Tray Icons Pin
Roger Wright9-May-03 23:06
professionalRoger Wright9-May-03 23:06 
GeneralRe: Restoring System Tray Icons Pin
Sarvesvara (BVKS) Dasa10-May-03 0:24
Sarvesvara (BVKS) Dasa10-May-03 0:24 
GeneralRe: Restoring System Tray Icons Pin
Roger Wright10-May-03 7:31
professionalRoger Wright10-May-03 7:31 
GeneralRe: Restoring System Tray Icons Pin
Robert Little10-May-03 11:45
Robert Little10-May-03 11:45 
GeneralRe: Restoring System Tray Icons Pin
Roger Wright10-May-03 13:07
professionalRoger Wright10-May-03 13:07 
GeneralRe: Restoring System Tray Icons Pin
J. Dunlap10-May-03 13:32
J. Dunlap10-May-03 13:32 
GeneralRe: Restoring System Tray Icons Pin
Roger Wright10-May-03 13:37
professionalRoger Wright10-May-03 13:37 
GeneralRe: Restoring System Tray Icons Pin
Robert Little10-May-03 14:06
Robert Little10-May-03 14:06 
GeneralRe: Restoring System Tray Icons Pin
Roger Wright10-May-03 14:37
professionalRoger Wright10-May-03 14:37 
Generaldata transferring in dos between pcs Pin
ronald soh8-May-03 4:07
ronald soh8-May-03 4:07 
GeneralRe: data transferring in dos between pcs Pin
jhaga12-May-03 12:25
professionaljhaga12-May-03 12:25 
GeneralFile/Folder Permission in XP from Exporer Pin
Giles8-May-03 3:09
Giles8-May-03 3:09 
GeneralRe: File/Folder Permission in XP from Exporer Pin
Richard Deeming8-May-03 5:19
mveRichard Deeming8-May-03 5:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.