Do you want your network management to work more "automation", then I will teach everyone my three tricks "automation" trick.
First trick: My file is automatically uploaded
If you are a network administrator, you must upload files for regularity, for example, automatically upload files when you are quiet, speed fast. In fact, this feature can be easily implemented by cuteftp:
Establish a site to start CUTEFTP, select File → Connection Wizard, and then pass the wizard, select the upload folder, such as C: / Upload. At the same time, set the server, such as ftp://ftp.cue.com.cn.
Save the upload queue Select "Transfer" → "Queue" → "Save Queue" and save the current list as the file name specified by the user, such as ccu.que. Note: If you have multiple files that need to be uploaded to different FTP servers, you can repeat the above steps to create a number of queue files.
Automatically upload file Select "Transfer" → "Transfer by Planning Task". The Enable Scheduled Task Manager check box is selected in the open window, and then click the Add Queue File button. Open the previously saved ccu.que, then set the timing Internet time in the window shown in Figure 1. Press the "OK" button to add it to the current list (Figure 2).
→ Figure 1
→ Figure 2
Minimize cuteftp, wait until we set up, the machine will automatically transfer the data to the FTP server.
Two tricks 1. If you select the "Display Countdown" check box in Figure 2, click "After the Transfer" drop-down list box, select Close Computer. That machine will display an countdown window for a period of time, and after the upload is complete, the computer will automatically turn off. 2. Select Edit → Settings, click the "Sound" item under "display" in the open window, then select the appropriate event, and then click the appropriate event. Then select the corresponding sound below the window, or click the "Open" button to select the corresponding WAV sound (as shown in Figure 3). This will have the corresponding sound when we connect the server, disconnect, start downloading, problems or start uploading.
Second: My letter automatic reply
There are a lot of people who use I-mail to make a mail server, but do you know? If we use i-mail, it can make an automatic response effect. This way, when someone sends mail into our mailbox, it will automatically get a reply message.
image 3
Log in to the I-mail server Start IE, enter your I-Mail server address and add port numbers, such as http://192.168.0.1:8383. In the window shown in Figure 4, enter the username and password, click the Logon button to enter the system.
Figure 4
Click the drop-down list box next to the window in the middle of the window, select Change Vacation Message, as shown in Figure 5.
Figure 5
Setting Messages Enter automatic reply messages in the window, such as "Promises have been received, please do not cast, thank you! If you are hired, we will contact you!" The text (as shown in Figure 6), click Save (save Buttons Save Setup. In the future, all people who write to you will receive "the manuscript has been received, please do not cast, thank you! If you are hired, we will contact you!"
Note that i-mail has a lot of features, such as we can set up the Change Processing Rule, add related keywords, you can refuse the spam.
Figure 6
The third stroke: My database automatic backup backup database is the database administrator needs to repeat every day. If you have forgotten backup a certain day, it is just that the database system has failed. If you want to restore the database, it will be powerless. By practice, in the Windows 2000 environment, automatic timing backups are implemented for Oracle 8i databases.
Install Oracle Database EXP / IMP Tool. If it is backed up in the Oracle Database This machine, the EXP / IMP tool has been installed by default; if it is a remote backup, select the Administrator mode when installing the ORCALE client, the EXP / IMP tool is automatically installed.
Create a batch file bckmis01.bat for Oracle database logic backup. Create a folder Bckmis on a D: Create a batch file bckmis01.bat in bckmis, which is as follows: c: /oracle/ora81/bin/exp.exe abc / 123 @ sss buffer = 204800 full = Y INCTYPE = Complete file = "d: /bckmis/bckmis01.dmp" compress = n grants = y indexes = y rows = y constraints = y corrent = n Direct = n log = 'bck01.log' here, network service name SSS, database user name is ABC, password is 123, and the batch file implements the database full backup.
Add a task plan. At the beginning → Program → Accessories → System Tools → Task Schedule → Add Task, add a task to perform bckmis01.bat, can be arranged in the early hours of the day. At the same time, enter the operating system username and password based on the wizard, otherwise, automatic backup will not be performed. Since this way is used to back up, the daily new backup will overwrite the original backup. In fact, 3 (or more) batch files Bckmis01.bat, bckmis02.bat, bckmis03.bat can be established, and its backup database files are bckmis01.dmp, bckmis022.dmp, bckmis03.dmp, log files, respectively, BCK01 .Log, bck02.log, bck03.log. The task plan for three execution batch files bckmis01.bat, bckmis02.bat, bckmis03.bat is established, and the schedule is executed once every 3 days. In this way, three different new data backups can always be maintained. Alternatively, the AT command can be used directly to automatic timing backups.