Tuesday, November 18, 2008

Access Stored User Names and Passwords

rundll32.exe keymgr.dll,KRShowKeyMgr


The Stored User Names and Passwords applet lets you assign user names and passwords to use when needing to authenticate yourself to services in domains other than the one you are currently logged into।

The normal way of running this applet can be difficult to find quickly, so here is a way to launch it using a desktop shortcut using the rundll32।exe program:

Thursday, September 18, 2008

Windows Remote Desktop

Windows Remote Desktop

go to [Start] -> Run & type mstsc

To see your proxy settings:

To see your proxy settings:
proxycfg


To import your proxy settings from IE

proxycfg -u



How to create a self-signed certificate?

makecert -r -pe -n "CN=mydomain.com" -b 01/01/2000 -e 01/01/2036 -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localMachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12

Windows Command Line Tools

http://commandwindows.com/index.html

Thursday, September 4, 2008

How to copy files after a certain date?

xcopy sourcefolder backupfolder /d:07-01-2008

How can I quickly find all the used IP addresses on my network?

How can I quickly find all the used IP addresses on my network?

Instead of manually pinging all IP addresses on your LAN you can use this nice command:

Open Command Prompt and type:

FOR /L %i IN (1,1,254) DO ping -n 1 192.168.0.%i | FIND /i "Reply">>c:\ipaddresses.txt

The "-n 1" is for only 1 ping packet to be sent to each computer

Change 192.168.0 to match you own Network ID.

This will ping all IP addresses on the 192.168.0.0 network segment
and create a text file called IPADDRESSES.TXT in C:\,
where it will list only the IP addresses that gave a reply.

You can also add a -a to the PING command to resolve all the responding IP addresses to HOST names,
but doing so will cause the script to take a considerable time to finish

FOR /L %i IN (1,1,254) DO ping -a -n 1 192.168.0.%i | FIND /i "Reply">>c:\ipaddresses.txt

Source: http://www.petri.co.il/quickly_find_used_ip_addresses.htm

About

Blogger templates