Open source freeware SFTP client, FTP client and SCP client for Windows.
Download at : http://winscp.net/eng/download.php

Open source freeware SFTP client, FTP client and SCP client for Windows.
Download at : http://winscp.net/eng/download.php

PuTTY is a free implementation of Telnet and SSH for Win32 and Unix platforms.
Download at : http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

Open up your Synaptic package manager (usually as root), go to Settings-> Preference -> Network. Enter your proxy server details like : username:password@proxyserver.net, and put the proxy server port (usually 8080).
Edit your /etc/bash.bashrc file as root.
Put these line at the end of your /etc/bash.bashrc file :
export http_proxy=http://username:password@proxyserver.net:port/ export ftp_proxy=http://username:password@proxyserver.netport/
You can omit the username:password, if your proxy server has no password.
The lower-case export lines with quotes worked for me:
export http_proxy=”http://username:password@proxyserver.net:port”
export ftp_proxy=”http://username:password@proxyserver.net:port”
But I appended them to the file /etc/profile instead of /etc/bash.bashrc so that it would effect synaptic from the menus (and lots of other system programs).
Source : http://blog.mypapit.net/2006/02/how-to-use-apt-get-behind-proxy-server-ubuntudebian.html

The program pings computers, scans for listening TCP ports and displays which types of resources are shared on the network (including system and hidden)
![[Image]](http://i281.photobucket.com/albums/kk231/21v10/netscan.gif)
Download at : http://www.softperfect.com/products/networkscanner/

a Useful tool to monitor your network connection.
![[Image]](http://i281.photobucket.com/albums/kk231/21v10/NetMeterScreen.jpg)
Download at : http://www.metal-machine.de/readerror/


Dim Fso
Dim Directory
Dim Modified
Dim Files
Set Fso = CreateObject(”Scripting.FileSystemObject“)
Set Directory = Fso.GetFolder(”I:Backup Files”)
Set Files = Directory.Files
For Each Modified in Files
If DateDiff(”D”, Modified.DateLastModified, Now) > 3 Then Modified.Delete
Next
Save this as filename.vbs
To execute this file, run:
cscript.exe filename.vbs
——————————–
You can read all about the 800a0408 error at http://www.computerperformance.co.uk/Logon/code/code_800A0408.htm
The quotation mark is not the correct ASCI character
Source: http://thebackroomtech.wordpress.com/2007/06/12/howto-automatically-remove-files-older-than-x-days/

Clients cannot access network shares. Additionally, Event Viewer on the Windows server may log one or more of the following event messages in the system log: Event ID : 2011
Source : Srv
Description: The Server’s configuration parameter “IRPStackSize” is too
small for the server to use a local device. Please
increase the value of this parameter.
1.Click Start, and then click Run.
2.Type regedit, and then click OK.
3.Navigate to the following key:
HKEY_LOCAL_MACHINESystemCurrentControlSetServicesLanmanServerParameters
4.In the right pane, double-click the IRPStackSize value.
NOTE: If the IRPStackSize value does not already exist, use the following procedure to create it:
a. In the Parameters folder of the registry, right-click the right pane.
b. Point to New, and then click DWord Value.
c. Type IRPStackSize.
IMPORTANT: Type “IRPStackSize” exactly as it is displayed because the value name is case-sensitive.
5.Change the Base to decimal.
6.In the Value Data box, type a value that is larger than the value that is listed.
If you created the IRPStackSize value using the procedure described in step 4, the default value is 15. It is recommended that you increase the value by 3. Therefore, if the previous value was 11, type 14, and then click OK.
7.Close the Registry Editor.
8.Restart the computer. If the problem persists after you complete the preceding procedure, try to increase the value of IRPStackSize even more. The maximum value for Windows 2000 is 50 (0×32 hex).


| Variable | Typical value (May vary, depending on system) |
|---|---|
| %ALLUSERSPROFILE% | C:Documents and SettingsAll Users |
| %APPDATA% | C:Documents and Settings{username}Application Data |
| %COMPUTERNAME% | {computername} |
| %COMSPEC% | C:WindowsSystem32cmd.exe |
| %HOMEDRIVE% | C: |
| %HOMEPATH% | Documents and Settings{username} |
| %PATH% | C:WindowsSystem32;C:Windows;C:WindowsSystem32Wbem |
| %PATHEXT% | .COM; .EXE; .BAT; .CMD; .VBS; .VBE; .JS ; .WSF; .WSH |
| %PROGRAMFILES% | Directory containing program files, usually C:Program Files |
| %PROMPT% | Code for current command prompt format. Code is usually $P$G |
| %SYSTEMDRIVE% | The drive containing the Windows XP root directory, usually C: |
| %SYSTEMROOT% | The Windows XP root directory, usually C:Windows |
| %TEMP% and %TMP% | C:DOCUME~1{username}LOCALS~1Temp |
| %USERNAME% | {username} |
| %USERPROFILE% | C:Documents and Settings{username} |
| %WINDIR% | C:Windows |
Source : http://vlaurie.com/computers2/Articles/environment.htm