搜档网
当前位置:搜档网 › 微软MSDN批处理文件编写教程(英文)

微软MSDN批处理文件编写教程(英文)

微软MSDN批处理文件编写教程(英文)
微软MSDN批处理文件编写教程(英文)

Using batch files

With batch files,which are also called batch programs or scripts,you can simplify routine or repetitive tasks.A batch file is an unformatted text file that contains one or more commands and has a.bat or.cmd file name extension. When you type the file name at the command prompt,Cmd.exe runs the commands sequentially as they appear in the file.

You can include any command in a batch file.Certain commands,such as for, goto,and if,enable you to do conditional processing of the commands in the batch file.For example,the if command carries out a command based on the results of a condition.Other commands allow you to control input and output and call other batch files.

The standard error codes that most applications return are0if no error occurred and1(or higher value)if an error occurred.Please refer to your application help documentation to determine the meaning of specific error codes.

For more information about batch file operations,see the following topics:?Using batch parameters

?Using filters

?Using command redirection operators

For more information about commands that you can use in batch files,click a command:

?Call

?Echo

?Endlocal

?For

?Goto

?If

?Pause

?Rem

?Setlocal

?Shift

show

toc Top of page

Your Profile |Legal |Contact Us

?2010Microsoft Corporation.All rights reserved.Contact Us |Terms of Use |Trademarks |Privacy Statement

Using batch parameters

You can use batch parameters anywhere within a batch file to extract information about your environment settings.

Cmd.exe provides the batch parameter expansion variables %0through %9.When you use batch parameters in a batch file,%0is replaced by the batch file name,and %1through %9are replaced by the corresponding arguments that you type at the command line.To access arguments beyond %9,you need to use the shift command.For more information about the shift command,see The %*batch parameter is a wildcard reference to all the arguments,not including %0,that are passed to the batch file.

For example,to copy the contents from Folder1to Folder2,where %1is replaced by the value Folder1and %2is replaced by the value Folder2,type the following in a batch file called Mybatch.bat:

xcopy %1\*.*%2

To run the file,type:

mybatch.bat C:\folder1D:\folder2

This has the same effect as typing the following in the batch file:

xcopy C:\folder1\*.*D:\folder2

You can also use modifiers with batch parameters.Modifiers use current drive and directory information to expand the batch parameter as a partial or complete file or directory name.To use a modifier,type the percent(%) character followed by a tilde(~)character,and then type the appropriate modifier(that is,%~modifier).

combinations of modifiers and qualifiers that

The following table lists possible

show

toc

Note

The %*modifier is a unique modifier that represents all arguments passed in a batch file.You cannot use this modifier in combination with the %~modifier .The %~syntax must be terminated by a valid argument value.

You cannot manipulate batch parameters in the same manner that you can manipulate environment variables.You cannot search and replace values or examine substrings.However ,you can assign the parameter to an environment variable,and then manipulate the environment variable.

?In the previous examples,you can replace %1and PATH with other batch

parameter values.

Your Profile |Legal |Contact Us

?2010Microsoft Corporation.All rights reserved.|Terms of Use |Trademarks |Privacy Statement

Using filters

Used in conjunction with the command redirection pipe character(|),a command filter is a command within a command that reads the command's input,transforms the input,and then writes the output.Filter commands help you sort,view,and select parts of a command output.

Filter commands divide,rearrange,or extract portions of the information that passes through them.The following table lists filter commands that are

To send input from a file to a filter command,use a less than sign(<).If you want the filter command to get input from another command,use a pipe(|).

Using the more command

The more command displays the contents of a file or the output of a command in one Command Prompt window at a time.For example,to display the contents of a file called List.txt in one Command Prompt window at a time, type:

more

One Command Prompt window of information appears,and then the--More--prompt appears at the bottom of the Command Prompt window.To continue to the next Command Prompt window,press any key on the keyboard except PAUSE.To stop the command without viewing more information,press CTRL+C. You can use the more command when you work with a command that produces more than one Command Prompt window of output.For example, suppose you want to view a directory tree on your hard disk.If you have more

directories than can be displayed in the Command Prompt window,you can use the tree command with a pipe(|)and the more command as follows:

tree c:\|more

The first Command Prompt window of output from the tree command appears, followed by the--More--prompt.Output pauses until you press any key on the keyboard,except PAUSE.

Top of page

Using the find command

The find command searches files for the string or text that you specify. Cmd.exe displays every line that matches the string or text that you specify in the Command Prompt window.You can use the find command either as a filter command or a standard Windows XP command.For more information about using find as a standard command,see Find

To use find as a filter command,you must include a less than sign(<)and the string or text on which you want to search.By default,find searches are case-sensitive.For example,the following command finds occurrences of the string "Pacific Rim"in the file Trade.txt:

find"Pacific Rim"

The output does not include any occurrences of"pacific rim."It includes occurrences of the capitalized"Pacific Rim"only.

To save the output of the find command rather than display it in the Command Prompt window,type a greater than sign(>)and the name of the file where you want to store the output.For example,the following command finds occurrences of"Pacific Rim"in the Trade.txt file and saves them in Nwtrade.txt: find"Pacific Rim"nwtrade.txt

Using the sort command

The sort command alphabetizes a text file or the output of a command.For example,the following command sorts the contents of a file named List.txt and displays the results in the Command Prompt window:

show

toc

sort

In this example,the sort command sorts the lines of the List.txt file into an alphabetical list and displays the results without changing the file.To save the output of the sort command rather than display it,type a greater than sign (>)and a file name.For example,the following command alphabetizes the lines of the List.txt file and stores the results in the Alphlist.txt file:

sort alphlist.txt

To sort the output of a command,type the command,type a pipe (|),and then type sort (that is,command |sort ).For example,the following command sorts the lines that include the string "Jones"(that is,the find command output)in alphabetical order:

find "Jones"maillst.txt |sort

Your Profile |Legal |Contact Us

?2010Microsoft Corporation.All rights reserved.Contact Us |Terms of Use |Trademarks |Privacy Statement

Using command redirection operators

You can use redirection operators to redirect command input and output streams from the default locations to different locations.The input or output stream location is referred to as a handle

The following table lists operators that you can use to redirect command input and output streams.

By default,you send the command input(that is,the STDIN handle)from your keyboard to Cmd.exe,and then Cmd.exe sends the command output(that is, the STDOUT handle)to the Command Prompt window.

The numbers zero through nine(that is,0-9)represent the first10handles. You can use Cmd.exe to run a program and redirect any of the first10handles for the program.To specify which handle you want to use,type the number of the handle before the redirection operator.If you do not define a handle,the defaultredirection output operator is one(1).After you type theoperator,you must specify where you want to read or write the data.You can specify a file name or another existing handle.

To specify redirection to existing handles,use the ampersand(&)character followed by the handle number that you want to redirect(that is,&handle#). For example,the following command redirects handle2(that is,STDERR)into handle1(that is,STDOUT):

1<&2

Duplicating handles

The&redirection operator duplicates output or input from one specified handle to another specified handle.For example,to send dir output to File.txt and send the error output to File.txt,type:

dir>c:\file.txt2>&1

When you duplicate a handle,you duplicate all characteristics of the original occurrence of the handle.For example,if a handle has write-only access,all duplicates of that handle have write-only access.You cannot duplicate a handle with read-only access into a handle with write-only access.

Top of page

Redirecting command input(<)

To redirect command input from the keyboard to a file or device,use the< operator.For example,to get the command input for the sort command from File.txt:

sort

The contents of File.txt appear in the Command Prompt window as an alphabetized list.

The

Note

?Zero is the default handle for the

Redirecting command output(>)

Almost all commands send output to your Command Prompt window.Even commands that send output to a drive or printer display messages and prompts in the Command Prompt window.

To redirect command output from the Command Prompt window to a file or device,use the>operator.You can use this operator with most commands. For example,to redirect dir output to Dirlist.txt:

dir>dirlist.txt

If Dirlist.txt does not exist,Cmd.exe creates it.If Dirlist.txt exists,Cmd.exe replaces the information in the file with the output from the dir command.

To run the netsh routing dump command and then send the command output to Route.cfg,type:

netsh routing dump>c:\route.cfg

The>operator opens the specified file with write-only access.As a result,you cannot read the file when you use this operator.For example,if you start a program with redirection>&0,all attempts to write handle1fail because handle0is initially opened with read-only access.

Note

?One is the default handle for the>redirection output operator.

Using the<&operator to redirect input and duplicate

To use the redirection input operator<&,the file you specify must already exist.If the input file exists,Cmd.exe opens it as read-only and sends the characters contained in the file as input to the command as if they were input from the keyboard.If you specify a handle,Cmd.exe duplicates the handle you specify onto the existing handle in the system.

For example,to open File.txt as input read to handle0(that is,STDIN),type:

To open File.txt,sort the contents and then send the output to the Command Prompt window(that is,STDOUT),type:

sort

To find File.txt,and then redirect handle1(that is,STDOUT)and handle2 (that is,STDERR)to the Search.txt,type:

findfile file.txt>search.txt2<&1

To duplicate a user-defined handle3as input read to handle0(that is,STDIN), type:

<&3

Using the>&operator to redirect output and duplicate

If you redirect output to a file and you specify an existing file name,Cmd.exe opens the file as write-only and overwrites the file's contents.If you specify a handle,Cmd.exe duplicates the file onto the existing handle.

To duplicate a user-defined handle3into handle1,type:

>&3

To redirect all of the output,including handle2(that is,STDERR),from the ipconfig command to handle1(that is,STDOUT),and then redirect the ouput to Output.log,type:

ipconfig.exe>>output.log2>&1

Using the>>redirection operator to append output

To add the output from a command to the end of a file without losing any of the information already in the file,use two consecutive greater than signs(that is,>>).For example,the following command appends the directory list produced by the dir command to the Dirlist.txt file:

dir>>dirlist.txt

To append the output of the netstat command to the end of Tcpinfo.txt,type: netstat>>tcpinfo.txt

Using the pipe operator(|)

The pipe operator(|)takes the output(by default,STDOUT)of one command and directs it into the input(by default,STDIN)of another command.For example,the following command sorts a directory:

dir|sort

In this example,both commands start simultaneously,but then the sort command pauses until it receives the dir command's output.The sort command uses the dir command's output as its input,and then sends its output to handle1(that is,STDOUT).

Combining commands with redirection operators

You can create custom commands by combining filter commands with other commands and file names.For example,you can use the following command to store the names of files that contain the string"LOG":

dir/b|find"LOG">loglist.txt

The dir command's output is sent through the find filter command.File names that contain the string"LOG"are stored as a list of file names(for example, NetshConfig.log,Logdat.svd,and Mylog.bat)in the Loglist.txt file.

To use more than one filter in the same command,separate the filters with a pipe(|).For example,the following command searches every directory on drive C:,finds the file names that include the string"Log",and then displays them in one Command Prompt window at a time:

dir c:\/s/b|find"LOG"|more

show

toc

By using a pipe (|),you direct Cmd.exe to send the dir command output through the find filter command.The find command selects only file names that contain the string "LOG."The more command displays the file names that are selected by the find command,one Command Prompt window at a time.For more information about filter commands,see Using filters Top of page

Your Profile |Legal |Contact Us

?2010Microsoft Corporation.All rights reserved.Contact Us |Terms of Use |Trademarks |Privacy Statement

Call

Calls one batch program from another without stopping the parent batch program.The call command accepts labels as the target of the call.Call has no effect at the command-line when used outside of a script or batch file.Syntax

call [[Drive :][Path ]FileName [BatchParameters ]][:label [arguments ]]Top of page

Parameters

[Drive :][Path ]FileName :Specifies the location and name of the batch program you want to call.The FileName parameter must have a .bat or .cmd extension.

BatchParameters :Specifies any command-line information required by the b

atch program,including command-line options,file names,batch parameters (that is,%0through%9),or variables(for example,%baud%).

:label:Specifies the label to which you want a batch program control to jump. By using call with this parameter,you create a new batch file context and pass control to the statement after the specified label.The first time the end of the batch file is encountered(that is,after jumping to the label),control returns to the statement after the call statement.The second time the end of the batch file is encountered,the batch script is exited.For a description of the goto :eof extension that allows you to return from a batch script,see Related Topics.

arguments:Specifies any command-line information that you pass to the new instance of the batch program that begins at:label,including command-line options,file names,batch parameters(that is,%1through%9),or variables (for example,%baud%).

/?:Displays help at the command prompt.

Top of page

Remarks

?Using batch parameters

Batch parameters can contain any information that you can pass to a batch program,including command-line options,file names,batch parameters(that is,%0through%9),and variables(for example,%baud%).For more information about batch parameters,see Related Topics.

?Using pipes and redirection symbols

Do not use pipes and redirection symbols with call.

?Making a recursive call

You can create a batch program that calls itself,however,you must provide an exit condition.Otherwise,the parent and child batch programs can loop endlessly.

?Working with command extensions

With command extensions enabled(that is,the default),call accepts a label as the target of the call.The correct syntax is as follows:

call:label arguments

For more information about enabling and disabling command extensions,see cmd in Related Topics.

Examples

To run the Checknew.bat program from another batch program,type the following command in the parent batch program:

call checknew

If the parent batch program accepts two batch parameters and you want it to pass those parameters to Checknew.bat,use the following command in the parent batch program:

call checknew%1%2

Using batch parameters

Cmd

Goto

show

toc

Turns the command-echoing feature on or off,or displays a https://www.sodocs.net/doc/722111253.html,ed without parameters,echo displays the current echo setting.

Syntax

echo [{on |off }][message ]

Parameters

{on|off}:Specifies whether to turn the command-echoing feature on or off.message :Specifies text you want to display on the screen.

/?:Displays help at the command prompt.

Remarks

Examples

?The echo message command is useful when echo is turned off.To display a

message that is several lines long without displaying other commands,you can include several echo message commands after the echo off command in your batch program.

?If you use echo off ,the command prompt does not appear on your screen.To

display the command prompt,type echo on .

?To prevent echoing of a line,insert an at sign (@)in front of a command in a

batch program.

?To echo a blank line on the screen,type:

echo.

?To display a pipe (|)or redirection character ()when you are using

echo ,use a caret character immediately before the pipe or redirection character (for example,^>,^<,or ^|).If you need to use the caret character (^),type two (^^).

The following example is a batch program that includes a three-line message preceded by and then followed by a blank line:

echo off

echo.

echo This batch program

echo formats and checks

echo new disks

echo.

If you want to turn echo off and you do not want to echo the echo command, type an at sign(@)before the command as follows:

@echo off

You can use the if and echo commands on the same command line.For example:

if exist*.rpt echo The report has arrived.

Pause

Command-line reference A-Z

Top of page

Ends localization of environment changes in a batch file,restoring environment variables to their values before the matching setlocal command.

Syntax

endlocal

Parameters

/?:Displays help at the command prompt.

Top of page

Remarks

?You must use endlocal in a script or batch file.If you use endlocal outside

of a script or batch file,it has no effect.

?There is an implicit endlocal command at the end of a batch file.

?With command extensions enabled(that is,the default),the endlocal command restores the state of command extensions(that is,enabled or disabled)to what it was before the matching setlocal command was executed.For more information about enabling and disabling command extensions,see cmd in Related Topics.

Examples

You can localize environment variables in a batch file.For example:

@echo off

rem This program starts the superapp batch program on the network,

rem directs the output to a file,and displays the file

rem in Notepad.

setlocal

path=g:\programs\superapp;%path%

call superapp>c:\superapp.out

endlocal

start notepad c:\superapp.out

For

Runs a specified command for each file in a set of files.

Syntax

for{%variable|%%variable}in(set)do command[CommandLineOptions]

Parameters

{%variable|%%variable}:Required.Represents a replaceable parameter. Use%variable to carry out for from the command https://www.sodocs.net/doc/722111253.html,e%%variable to carry out the for command within a batch file.Variables are case-sensitive and must be represented with an alpha value,such as%A,%B,or%C. (set):Required.Specifies one or more files,directories,range of values,or text strings that you want to process with the specified command.The parentheses are required.

command:Required.Specifies the command that you want to carry out on each file,directory,range of values,or text string included in the specified (set).

CommandLineOptions:Specifies any command-line options that you want to use with the specified command.

/?:Displays help at the command prompt.

Top of page

Remarks

?Using for

You can use the for command within a batch file or directly from the

command prompt.

?Using batch parameters

The following attributes apply to the for command:

?The for command replaces%variable or%%variable with each text

string in the specified set until the command processes all of the files.

?For variable names are case-sensitive,global,and no more than52total can be active at any one time.

?To avoid confusion with the batch parameters%0through%9,you can use any character for variable except the numerals0through9.For simple batch files,a single character such as%%f works.

?You can use multiple values for variable in complex batch files to distinguish different replaceable variables.

?Specifying a group of files

The set parameter can represent a single group of files or several groups of files.You can use wildcards(that is,*and?)to specify a file set.The following are valid file sets:

(*.doc)

(*.doc*.txt*.me)

(jan*.doc jan*.rpt feb*.doc feb*.rpt)

(ar??1991.*ap??1991.*)

When you use the for command,the first value in set replaces%variable or %%variable,and then the specified command processes this value.This continues until all of the files(or groups of files)that correspond to the set value are processed.

?Using the in and do keywords

In and do are not parameters,but you must use them with for.If you omit either of these keywords,an error message appears.

?Using additional forms of for

华科双学位英语new

2008级、07级(五年制)英语二学位通知 2008级、2007级(五年制)申请修读华中科技大学英语第二学位的同学请注意:非华科大同学请于2010年3月5号上七校联合办学网查看自己的分班情况及课表,仔细阅读课表下方有关上课时间、上课地点以及教材购买等的通知,按通知要求做好上课前的准备,并根据课表的安排准时到指定地点上课。华科大的同学除上述要求外,还必须于缴费当天上班时间持缴费收据到科技楼南楼212注册。 华中科技大学外国语学院英语系 2009年12月20号

英语双学位(1班---16班)2009-2010学年度第二学期课表(周六上课) 第一次上课时间: 2010年3月6号(第一周周六)上课地点: 东九教学楼(上午8:30----11:40,下午2:00----5:10) 请同学们第一次上课时于7:50以前到达上课地点,以便有充足的时间购买教材;请仔细阅读课表下方的有关通知 注:第一次上课时间:2010年3月6号(第一周周六); (2010年3月6号为第一周周六,2010年3月7号为第二周周日,3月13号为第二周周六,3月14号为第三周周日,以此类推。)上课周次:周六班(1---16班):1---3周、5---12周、14---15周; 除按课表已安排的周次正常上课外,本学期节假日(如清明节、五·一节、端午节)均安排补课。

英语双学位(17班---26班)2009-2010第二学期课表(周日上课) 第一次上课时间: 2010年3月7号(第二周周日)上课地点: 东九教学楼(上午8:30----11:40,下午2:00----5:10) 请同学们第一次上课时于7:50以前到达上课地点,以便有充足的时间购买教材;请仔细阅读课表下方的有关通知 注:第一次上课时间:2010年3月7号(第二周周日) (2010年3月6号为第一周周六,2010年3月7号为第二周周日,3月13号为第二周周六,3月14号为第三周周日,以此类推。)上课周次:(17---28班):2---4周、6 ---12周、14周、16周 除按课表已安排的周次正常上课外,本学期节假日(如清明节、五·一节、端午节)均安排补课。

实用英语写作大纲

VII. 实用英语写作 一、课程基本情况 1.学分: 1 学时:16 (理论学时:16 实验学时:0 )2.课程类别:限选课 3.适用专业:非英语专业本科 4.适用对象:非英语专业本科三年级学生(第五学期) 5.先修课程:大学英语 6.教材与参考书目: 教材:教师讲义 参考书:《新世纪实用英语写作》,张玉娟,陈春田,外语教学与研究出版社,2003 《英语应用文写作大全》,《英语应用文写作大全》编写组,社会科学出文献出 版社 《英语应用文写作》,杨晓钰,重庆大学出版社 《英语写作系列-英汉应用文手册》,傅似逸,北京大学出版社 《英语常用应用文写作》,韩铁椿、陈汉华,上海财经大学出版社 《实用英语写作教程》,李予军编著,国防工业出版社,2008年 《研究生英语写译教程》,杨若东、袁锡兴,中国人民大学出版社,2004 《英语论文写作》,石坚、帅培天,四川人民出版社,2005 《高级英语写作教程》,马红军、毛卓亮,中国对外翻译出版公司,2006 二、课程介绍 1.实用英语写作作为一种国际商贸动作和国际事务交往过程中必不可少的交际工具, 对贸易的缔结和双边关系的保持起着举足轻重的作用。随着全球经济一体化的迅速发展,国际商务交往日益频繁,为了增强学生在国际商务活动中的交际能力,培养复合型人才,本课程向学生提供了一个选材广泛和能体现各种商务情景的优秀范文资料库,帮助学生了解涉外英语中最常见的和最常用的各种信函的用途,使学生在学习各种信函的同时,不仅能够熟悉各种信函的英文表达法,而且能够广泛增加有关商务活动的知识,从而提高他们运用英语进行书面交际的能力。 2.本门课是专业教学计划中的普通教育必修课,与先前英语基础课的关系是其后续的专业英语课。 3.本课程的教学目的:旨在使学生掌握各类英语书信的语言特点及篇章结构;了解便条及卡片、社交信函、求职、求学申请信的起草方法和各类信件的写作方法;熟悉各类涉外证件、商务信函、对外经济贸易中的技术交流合同、保险、外贸业务相关的各类电传以及广告、产品使用说明及产品维护等信函的写作技巧等。

高级英文写作教程Paraphrase the following selected sentences

Paraphrase the following selected sentences: On the basis of controlling purpose we traditionally divide all prose into three kinds: narration, description, and exposition. Seldom is any piece of writing pure exposition. Deciding upon reader and purpose is easily half the task of writing. The expository writer may throw new light upon two things by comparing and contrasting them, by showing how they are alike and yet different. Translate the following selected sections into Chinese: 1. Para. 4: Deciding up on … (till the end of the paragraph) 2. Para. 7: The expository writer, therefore, uses… by arguing from premise to conclusion. 2.1. Paraphrases 2.1.1. Paragraph 2, “No matter how many soothsayers ….. under the way”. 2.1.2. Paragraph 3, “Prosperity is more than and economic condition… mass emotion”. 2.2. Translation: Paragraph 1 and Paragraph 2. 2.3. Based on the topic sentences that you had worked out, make a summary of the article with a maximum of 5 sentences. Begin your summary with “In “Big Bull Market”, Mr. Frederick Lewis Allen…” Paraphrases and Translations: Paragraph 1, “Yet the peculiar thing is… Oxford arises.” Paragraph 2, “It is these things indeed …the merest amateur.” Paragraph 3, “ But after all one might say this is only the mechanical side of education… more cultured studies.” Paragraph 4, "Again and again...Mandollin Club." 1. paraphrase 1: “for in spite of President… and usually are so.” 2. paraphrase 2: “First, granting that our graduates…direction to a life.” 3. translate the whole passage. Paraphrases 1. Paragraph 1, “If the human mind…… sense stimuli”. 2. Paragraph 1, “whenever the users of a language……in that language”. Translations Paragraph 2, “There are, as Professor……a cauliflower ear”.

Windows 7 With SP1 中、英文旗舰版(微软MSDN光盘镜像)+ 有效激活方法

Windows 7 With SP1,即集成“SP1”的Windows 7光盘镜像。伴随微软“MSDN”向付费订户的逐步提供,本文向各位网友同步相应提供:(1)Windows 7 With SP1 32位英文旗舰版;(2)Windows 7 With SP 1 64位英文旗舰版;(3)Windows 7 With SP1 32位简体中文旗舰版;(4)Windows 7 With SP1 64位简体中文旗舰版;(5)以及W indows 7 With SP1其它版本。同时,提供激活以上版本的有效方法如下 Windows 7 With SP1 32位英文旗舰版 ed2k://|file|en_windows_7_ultimate_with_sp1_x86_dvd_619077.iso|2563039232|60C9D5 F92AFFA625F7A40717C6B264D9|/ 文件名en_windows_7_ultimate_with_sp1_x86_dvd_619077.iso 发布日期(UTC): 2/16/2011 8:50:22 AM 上次更新日期(UTC): 2/16/2011 8:50:22 AM SHA1: 92C1ADA4FF09C76EC2F1974940624CAB7F822F62 ISO/CRC: C2966895 Windows 7 With SP1 64位英文旗舰版 ed2k://|file|en_windows_7_ultimate_with_sp1_x64_dvd_618240.iso|3319478272|004498 E6851D90B5E025*********C86|/ 文件名en_windows_7_ultimate_with_sp1_x64_dvd_618240.iso 发布日期(UTC): 2/16/2011 8:50:21 AM 上次更新日期(UTC): 2/16/2011 8:50:21 AM SHA1: 1693B6CB50B90D96FC3C04E4329604FEBA88CD51 ISO/CRC: 8589EE18 Windows 7 With SP1 32位简体中文旗舰版 http://www.shuo.ca/tiger/cn_windows_7_ultimate_with_sp1_x86_dvd_618763.iso ed2k://|file|cn_windows_7_ultimate_with_sp1_x86_dvd_618763.iso|2651877376|D6A0D 9FDB8C67A65B92B4C1AC197109C|h=HEZ3PCTFZSXQGHGCD5RK5YJWXAKTCMI2| / 文件名cn_windows_7_ultimate_with_sp1_x86_dvd_618763.iso 发布日期(UTC): 2/21/2011 8:43:32 AM 上次更新日期(UTC): 2/21/2011 8:43:32 AM SHA1: A94623A6B572541157B63FFD9C0495ED47BE792A ISO/CRC: 233C2AAA

BEC初级至高级全套用书下载链接必备学习

美式论文、报告写作技巧 编者按:美式教育的特点即是课程内容强调学生参与及创新运用,因此,报告便成了常见的考核学生学习成果的方式,比如实验报告、学期报告、专题报告、研究报告及论文(含毕业论文)等。研究生presentation 及seminar 的机会更是占很大的比重,有些甚至占学期成绩很大比例。如何完成报告、论文同时得到良好的成绩,是本文提供给有志留学的有心人参考的目的。 美国大学生由於自小已养成自动寻找答案习惯,在启发式的教育环境下,写报告、论文对他们来说比较不陌生,虽然专业知识上美国学生不见得比外籍学生强,但是表达能力由於自小培养,加上英语能力的优势,常比外籍学生在报告、论文方面有较隹的利基。反之中国学生比较缺乏报告写作的训练,因此如果在留学过程中无法适应美式教育会比较辛苦,其实论文、报告的写作要领其实不难,只要把握技巧就可水到渠成。 通常论文由篇首(Preliminaries),本文(Texts)以及参考资料(References)三部分构成;而这三大部分各自内容如下: (一) 篇首: 封面(Title) 序言(Preface) 谢词(Acknowledge) 提要(Summary) 目录(Tables and Appendixes) (二) 本文: 引言(Introduction) 主体,含篇(Part)、章(Chapter)、节(Section) 、以及注释(Footnotes) (三)参考资料: 参考书目(References or Bibliography) 附录资料(Appendix)。 进行论文或报告写作之前,先要确定想要表达的主题,主题确定后,将其具体表达,即为题目。题目可以提供研究者: 一.研究的方向 二.研究的范围 三.资料搜集的范围 四.预期研究成果 通常在确定题目之後就开始找资料从事研究,建议在找资料之前最好去问教授有哪些参考资

2015级高级英语写作教程进度表

周 次 学 时 分 配 内 容 课外阅读及 习题作业 备 注 讲 授 实 验 上 机 其 它 1 2 0 0 0 Diagnostic test (writing a narrative essay) and introduction Group SES 2 2 0 0 0 Discussing the Diagnostic test and “show more than tell ”(1) Oral discussion 3 2 0 0 0 Show more than tell ”(2) Oral discussion 4 2 0 0 0 Personal experience essay A Personal experience 5 2 0 0 0 Description and sensory details (1) Group discussion 6 2 0 0 0 Description and sensory details(2) Group discussion 7 2 0 0 0 Description and sensory details(3) Group discussion 8 2 0 0 0 Descriptive essay Describing a person 9 2 0 0 0 National holiday A holiday 10 2 Addressing the audience An opening speeching 教 学 进 度 2016-2017 学年 第 一 学期 外语 系 英语(本) 专业 2015 年级 1 、2 班 课程名称 高级英语写作教程 讲授教师 实验教师 总学时数 学 时 分 配 每周学时 讲 授 实 验 上机 其 它 32 32 2

Windows系统的msdn、oem、retail、volume四种密钥的区别

Windows的msdn、oem、retail、volume四种密钥的区别 Windows系统版本主要有零售版、批量授权版和oem版,同样的windows 产品密钥也是有多种不同的种类,常见的是msdn、oem、retail、volume这些激活密钥,很多人并不了解msdn、oem、retail、volume这些密钥通道的区别。下面跟小编一起来了解下windows产品密钥通道的区别。 Windows产品密钥种类: Windows系统密钥分为Retail零售授权版、OEM授权版、VOLUME批量授权版和MSDN订阅密钥。 一、MSDN密钥 MSDN密钥是付费用户提前获得测试使用WINDOWS系统的一个回报,但是按照规定MSDN是不可以作为商业用途使用的。并且未经过微软许可也不可以随意授权给其他用户使用,不管是规定上还是技术上,微软是随时可以把这一批KEY封杀掉,而且连从谁手里泄露出来的都可以查到。 MSDN密钥还会根据用户的订阅类型,有两种,一种是一个KEY对应一台机子,也就是相当于订阅用户针对一个产品买了几个KEY。还有一种是一个KEY 可以激活N台机子,N决定于用户的订阅许可数量。 但是不管哪种MSDN密钥,只要在一台机子上激活,似乎微软那边会记录计算机的一些唯一信息。比如CPU ID、主板序列号、硬盘ID等,也就是说一旦更换了硬件,可能需要重新激活并且不一定能够成功。如果不成功,则可能需要电话激活或拨打微软客服对证MSDN帐户就可以激活。所以,在网上购买的别人的MSDN授权KEY就有这个风险,就是别人肯定不会告诉你他的MSDN帐户的。否则微软肯定要封了他的帐户。 二、Retail零售版密钥 Retail零售授权版:即通过零售商店获得Windows操作系统的产品的单独授权和激活权利,是Windows许可证的零售版本。可以拥有来自微软的全力技术

科技英语写作高级教程参考答案完整

练习1 II冠词 1.Dr. Emmet graduated from Harvard University in 2001.(Emmet博士2001年毕业 于哈弗大学) 2.Professor Li earned his Ph.D. degree in mechanical engineering from the Xi’an University of Technology in 1988.(李教授1998年在西安理工大学获得机械工 程博士学位) 3.Now we shall turn to the discussion of local area networks.(现在我们转向(turn to)讨论一下局域网) 4.The Bainbridge mass spectrometer is as important an instrument as the optical spectrometer.(质谱仪是与光谱仪一样重要的仪器) 5.How long a time [或How much time] is required to this experiment?(做这个实验 需要多长时间?) 6.An increase in pressure always causes a decrease in volume.(压力的增加总会引 起体积的减少) 7.Fig. (2-5) shows what is expressed by Eq. (2-2).(图(2-5)画出了式(2-2)所表 示的情况) 8.The unit of inductance is the henry.(电感的单位是亨利) III、改错 1.The UASMA protocol employs a unique frame structure.(UASMA协议采用了 独特的帧结构) 2.Finally, a broad stepped impedance transformer is designed by this method.(最 后,用这种方法设计了宽带阶梯阻抗变换器) 3.Dynamic analysis and evaluation of the security of a proactive secret sharing system(先应秘密共享系统安全性的动态分析和评估) 4.The approach can be applied to the one-dimensional potential barrier with an arbitrary profile.(该方法适用于任意形状的一维势垒) 5.We propose a numerical method based on Newton’s iterative method.(我们提出 了一种基于牛顿地带发的数值方法) 练习2 1. This circuit consists of a battery, an inductor and a capacitor.(该电路是由一个电池、一个电感器和一个电容器组成) 2. Compute the electric fields at points a, b, and c.(试计算在a、b、c三点处的电场。) 3. This satellite is used for communications between the United States and Great Britain, France and Italy.(这颗卫星用于美国与英国、法国、意大利之间的通讯) 4. We assume that the antenna is vertical and that its loss is zero.(我们假设该天线是垂直的,并且其损耗为0)

英语写作大纲

《英语写作I》 课程简介 课程编号: 课程名称:英语写作I 英文名称:English writing I 课程性质:学科基础课 开课对象:非英语专业 课程学分: 前修课程: 主要参考教材: 1.丁往道等,《英语写作手册》,外语教学与研究出版社,1994 2.杨立民等,《现代大学英语(基础写作)》,外语教学与研究出版社,2005 3.吴文仲等,《实用英语写作》,外语教学与研究出版社,1997. 课程简介: 本课的目的在于培养学生初步的英语写作能力,包括提纲、文章摘要、短文以及简单的应用文。写作课的开设时间在三年级第二学期。内容的安排从如何用词和句子结构入手,要求学生根据提示作文,或模仿范文写作,或根据一定的情景进行串写,进而过渡到掌握段落写作技巧、篇章布局和短文写作。 理论教学大纲 课程性质: 中(英)文课程名称:英语写作I (English Writing I) 学分:4 学时:40 一、讲授部分 第一章文稿格式 教学目的与要求 学习写作,应明确什么是好的文稿格式。在标题的写法、纸边留空、段落开端的缩进、大写、词的移行等方面,都应遵照通行的规则。不管写什么,都要细致、认真,写得或打得整齐干净,还要尽可能避免错误。写好后,还要仔细校阅一两次,因为可能要做最后的改正或改动。经常这样练习写作,必然会取得进步。重点与难点 安排、标点 课时数:2 主要内容: (1)安排 (2)移行 (3)大写

(4)标点(结合教材第十章标点符号) (5)书法 第二章用词 教学目的与要求 从修辞学角度对词汇进行分类:一般/具体,正式/非正式,含蓄/非含蓄,文学/技术,修辞格,成语,典故,等等。在认识各类语汇性质的基础上学习不同性质语汇的具体运用。英语词汇极多:《牛津英语词典》收了四十多万个词。当然并没有人认识或需要使用这么多词。常人为了一般的目的只用其中很小的一部分。学习用英语写作的学生应先学会使用最有用也最常用的词来表达自己的思想。有时初学者会误用一些词,但他用的词往往并不全错,只是不恰当、不准确、不地道、或不生动有趣。因而对选词的方法有基本的了解是会有帮助的。 重点与难点 修辞格 课时数:6 主要内容: (1)词的类型 (2)词义 (3)一般词汇和具体词汇 (4)习语 第三章造句 教学目的与要求 写好句子是培养写作能力的基础,本章要求学生首先能写出语法正确,用词适当的句子,进而训练学生熟练掌握不同句型的运用。 重点与难点 本单元重点是英语的惯用法:固定句型,习惯用语。这是英语“地道”的重要因素。 课时数:8 主要内容: (1)完整句和不完整句 (2)句子的类型 (3)陈述句、疑问句、祈使句和感叹句 (4)简单句、并列句、复合句和并列复合句 (5)松散句、圆周句和对偶句 (6)短句和长句 (7)好的句子 (8)完整

上外高级英文写作教程复习整理

上外高级英文写作教程 复习整理

写作填空题 Exposition On the basis of controlling purpose we traditionally divide all prose into three kinds: narration, description, and exposition. Exposition is writing that explains. If the writer intends to tell us how something looks, to re-create the thing in words, we may call it description. A narrative arranges its material in time. Description most often organizes in space. Exposition organizes its subject by logic. We find that paragraphs of exposition contain two different kinds of statements. The first- a general, rather abstract statement- is called the topic sentence. The expository writer, therefore, uses the common methods of logic and thinking: he develops his material by offering examples as evidence, by comparing and contrasting, by making analogies, by restating, by giving reasons, by classifying and dividing his subject, by showing cause and effect, by defining, by arguing from premise to conclusion. Definition Definition is in fact a form of expository writing. A definition is the effort to distinguish an entity from all other things for the purpose of being able to recognize it or in some way to understand it. Methods of definition 1. Analysis. The type consists of placing a word in a large class called the genus and then differentiating the word from other members of that class. This method, as old as Aristotle, results in the dictionary kind of definition. 2. Synthesis. This form of definition relates the thing-to-be-defined to something already familiar to the reader or listener. It often reveals the thing-to-be-defined as part of some larger whole. 3. Negative Definition. Which helps to define a thing by making clear what it is not. 4. Exemplification. Often appearing as an aid to definition by analysis or by synthesis is definition by example. 5. Synonyms. Almost as familiar as definition by example is definition by synonyms. Types of definition 1. Consensual Definition 2. Stipulative Definition 3. Normative Definition Judgment Judgment, requires the writer to look at both sides of an issue, to find out what evidence exists and present it clearly, and finally to draw a conclusion. In argument persuasion is the main purpose. The writer of argument must perforce take sides, be attorney either for the plaintiff or for the defense. The writer of judgment is more like a referee. He must listen to what can be said both for and against, and then he must decide-as objectively and as intelligently as he can- where the truth lies. Good judgment writing requires more than facility with words. One must begin by learning what he can about the matter in hand. Secondly, the writer of judgment must present the facts clearly and in coherent order. Finally, since facts alone are often not enough, the writer needs to be able to draw the proper inferences. Argument The essence of the argument is reason, and reason may work in two ways: by deduction and by induction. The first argues from general premise to particular conclusion; the second from particular fact to broad conclusion. Deductive argumentation is usually cast in the form of a logical syllogism. At its simplest a syllogism contains two premises and an inference that necessarily follows from them. If the major premise and the minor premise are true, the inference, or conclusion The student who wishes to argue well should consult 1) a good textbook, 2) master at least the rudiments of logic, 3) and train himself to detect the common fallacies.

微软官方Windows8 MSDN简体中文版下载地址

微软官方Windows8 MSDN简体中文版下载地址 1.Windows 8 (x86) - DVD 简体中文/专业版/32位 文件名:cn_windows_8_x86_dvd_915414.iso SHA1:0C4A168E37E38EFB59E8844353B2535017CBC587 下载地址: ed2k://|file|cn_windows_8_x86_dvd_915414.iso|2679801856|9AF10141BFD61BC66D9D64597 58D7749|/ 2.Windows 8 (x64) - DVD 简体中文/专业版/64位 文件名:cn_windows_8_x64_dvd_915407.iso SHA1:A87C4AA85D55CD83BAE9160560D1CB3319DD675C 下载地址: ed2k://|file|cn_windows_8_x64_dvd_915407.iso|3652950016|5C7F8C212BD3A1827866563773 A431C2|/ 3.Windows 8 (x86) - DVD 简体中文/批量授权版/32位 文件名:cn_windows_8_x86_pro_vl_dvd_917720.iso SHA1:EEEF3C3F6F05115C7F7C9C1D19D6A6A6418B5059 下载地址: ed2k://|file|cn_windows_8_pro_vl_x86_dvd_917720.iso|2595137536|E87CEF7B8B4EFB12B0A7 397795209301|/ 4.Windows 8 (x64) - DVD 简体中文/批量授权版/64位 文件名:cn_windows_8_pro_vl_x64_dvd_917773.iso SHA1:9C4EC9FC4FB561F841E22256BC9DEA6D9D6611FF 下载地址: ed2k://|file|cn_windows_8_pro_vl_x64_dvd_917773.iso|3558014976|7956620A80428F37D4F2 989CB5CF3B5A|/ 5.Windows 8–DVD 简体中文/企业版/32位 文件名:cn_windows_8_enterprise_x86_dvd_917682.iso SHA1: 951565D8579C5912FB4A407B3B9F715FBDB77EFE 下载地址: ed2k://|file|cn_windows_8_enterprise_x86_dvd_917682.iso|2597502976|7B6541942A16EB54 BC81E84558DF09DF|/ 6.Windows 8–DVD 简体中文/企业版/64位 文件名:cn_windows_8_enterprise_x64_dvd_917570.iso SHA1: 1280BC3A38A7001FDE981FA2E465DEB341478667 下载地址: ed2k://|file|cn_windows_8_enterprise_x64_dvd_917570.iso|3560837120|8CAE8064C4B8F9CD 84941B4FF4A34722|/

高级英语写作1-10课翻译

The Delicate Art of the Forest 库珀的创造天分并不怎么样;但是他似乎热衷于此并沾沾自喜。确实,他做了一些令人感到愉快的事情。在小小的道具箱内,他为笔下的森林猎人和土人准备了七八种诡计或圈套,这些人以此诱骗对方。利用这些幼稚的技巧达到了预期的效果,没有什么更让他高兴得了。其中一个就是他最喜欢的,就是让一个穿着鹿皮靴的人踩着穿着鹿皮靴敌人的脚印,借以隐藏了自己行踪。这么做使库珀磨烂不知多少桶鹿皮靴。他常用的另一个道具是断树枝。他认为断树枝效果最好,因此不遗余力地使用。在他的小说中,如果哪章中没有人踩到断树枝惊着两百码外的印第安人和白人,那么这一节则非常平静/那就谢天谢地了。每次库珀笔下的人物陷入危险,每分钟绝对安静的价格是4美元/一分静一分金,这个人肯定会踩到断树枝。尽管附近有上百种东西可以踩,但这都不足以使库珀称心。他会让这个人找一根干树枝;如果找不到,就去借一根。事实上,《皮袜子故事系列丛书》应该叫做《断树枝故事集》。 很遗憾,我没有足够的篇幅,写上几十个例子,看看奈迪·班波和其他库伯专家们是怎样运用他的森林中的高招。大概我们可以试着斗胆举它两三个例子。库伯曾经航过海—当过海军军官。但是他却一本正经/煞有介事地告诉我们,一条被风刮向海岸遇险的船,被船长驶向一个有离岸暗流的地点而得救。因为暗流顶着风,把船冲了回来。看看这森林术,这行船术,或者叫别的什么术,很高明吧?库珀在炮兵部队里待过几年,他应该注意到炮弹落到地上时,要么爆炸,要么弹起来,跳起百英尺,再弹再跳,直到跳不动了滚几下。现在某个地方他让几个女性—他总是这么称呼女的—在一个迷雾重重的夜晚,迷失在平原附近一片树林边上—目的是让班波有机会向读者展示他在森林中的本事。这些迷路的人正在寻找一个城堡。他们听到一声炮响,接着一发炮弹就滚进树林,停在他们脚下。对女性,这毫无价值。但对可敬的班波就完全不同了。我想,如果班波要是不马上冲出来,跟着弹痕,穿过浓雾,跨过平原,找到要塞,我就再也不知道什么是“和平”了。是不是非常聪明?如果库伯不是对自然规律一无所知,他就是故意隐瞒事实。比方说,他的精明的印地安专家之一,名叫芝稼哥(我想,该读作芝加哥)的,跟踪一个人,在穿过树林的时候,脚印就找不到了。很明显,脚印是再也没法找到了。无论你还是我,都猜不出,怎么会找到它。对芝加哥可完

Windows 7 with SP1中英文原版MSDN下载汇总=

Windows 7 with SP1中英文原版MSDN下载汇总 文件SHA1校验工具IHasher (来自于 https://www.sodocs.net/doc/722111253.html,) https://www.sodocs.net/doc/722111253.html,/download.aspx?lastversion=ihash er (32位+64位)单独的SP1安装包(来自于 https://www.sodocs.net/doc/722111253.html, 和微软官网,多语言版本) Windows 7 and Window Server 2008 R2 Service Pack 1 (x86 and x64) – DVD (Multilanguage) 32位+64位SP1独立安装包ed2k://|file|mu_windows_7_and_windows_server_2008_r 2_sp1_x86_x64_dvd_619642.iso|2048196608|D1D032D2 0568F9ED16F072075F4E9961|/ https://www.sodocs.net/doc/722111253.html,/downloads/zh-cn/details.aspx? FamilyID=c3202ce6-4056-4059-8a1b-3a9b77cdfdda### SHA1: F2ABA1102E18EAD08C78527AB422C09AB7D1F54C (32位或64位)单独的SP1安装包(来自微软官网,多语言版本。微软建议用Windows Update更新) Windows 7 and Window Server 2008 R2 Service Pack 1 (x86)32位SP1独立安装包

《实用英语写作1》教学大纲

《实用英语写作1》教学大纲 一、课程基本信息 课程代码:03112B 课程名称:实用英语写作 英文名称:The Practical English Writing 课程类别:学科专业基础课程 学时:34 学分:2 适用专业:英语 先修课程:基础英语、听力、口语、语法、文化阅读系列课程 二、课程的性质与任务 《实用英语写作》是英语专业本科生的一门学科专业基础课程,开设在第三学期。本课程的任务是通过对英语写作基本知识和技巧的学习以及实际写作的练习,要求学生系统掌握有关词汇、句子、段落以及通知便条的基本理论、写作方法及基本写作技巧,能独立完成既定内容的写作。 三、课程教学目标 通过对本课程一学期的学习,学生应该具备基本的英语语句和语篇概念,能熟练运用所学语法知识及词汇组句成段,了解段落布局的基本方法,初步掌握基本修辞方法,具备篇章分析能力,能写出得体的英语段落,熟练段落写作技巧及文体,会写通知、便条。 四、教学方法与手段 教学中采用教师为主导、学生为主体的教学模式,具体运用讲授法、小组讨论法与实践写作相结合的教学方法来完成该课程的教学,引导学生要勤于思考、勇于评论,培养学生的思辨能力和表达能力。充分利用现代化的教学手段,开发新的教学资源。 五、教学内容与课时分配

章节教学内容课时 课时分配讲授实践 第一章课程简介及格式211 第二章词汇844 第三章句子1688 第四章段落633 第五章通知便条211 六、考核方式 1、考核形式:考试 2、过程性考核和期末考试相结合 考试范围涵盖所讲授的实用英语写作课程的全部内容。最终成绩由平时成绩(20%)和期末考试成绩(70%)按一定比例折算后以百分制计,卷面考试试题为选择、判断、配对、改错、填空、应用文写作与篇章写作等题型。 七、教材及主要参考书 1.教材:杨立明,徐克容.现代大学英语基础写作(上下册)[M].北京: 外语教学与研究出版社,2005. 2.主要参考书: 1)Kirszner,L,G.&Mandell,S,R.(2008).The Wadsworth Handbook:Eighth Edition [M].北京:中国人民大学出版社. 2)Langan,J.(2007).College Writing Skills with Readings:Sixth Edition[M]. Beijing:Foreign Language Teaching and Research Press. 3)Weigle,S.C.(2010).Assessing Writing[M]Beijing:Foreign Language Teaching and Research Press. 4)丁往道,吴冰.英语写作手册[M].北京:外语教学与研究出版社,2003. 5)姜亚军,马素萍.英语写作教程[M].北京:高等教育出版社,2008. 6)马红军,毛卓亮.高级英语写作教程[M].北京:中国对外翻译出版社,2003.

英语写作教程第四讲

英语写作教程 English Writing Course Lecture 4. Narration 第四讲:记叙文写作 吉林化工学院外国语学院副教授:林罡 请参考教材《英语写作基础教程(第三版)》第六章 二零一三年六月

Lecture 4 Narration (1) Prewriting: Free Writing (1) Activity: Freewriting about a memorable event or experience in your life (2) Part I. Organisation: Narration – Time Order (4) Time order words and phrases (5) Writing Practice One. Time Order Words (6) Writing Practice Two. Time Order Paragraph (8) Part II. Grammar and Mechanics – Simple Present Tense and Adverbs of Frequency (9) Simple Present Tenses (11) Position of Adverbs of Frequency (11) Practice 1: Simple Present Tense and Adverb Frequency (12) Comma Rules (15) Practice 2: Punctuation – comma rules (16) Writing Task 1: A Traditional Wedding (17) Part III. Sentence Structure: Compound Sentences (18) Questions on the model (19) Compound Sentences (19) Practice 3. Compound Sentences: with, and, or, but, so (20) Writing Task 2. Sentence Combining (22) Part IV The Writing Portfolio (24) STEP 1. Prewrite to get ideas (24) STEP 2. Organize the ideas (24) STEP 3. Write the Rough Draft. (24) STEP 4. Edit the Rough Draft (25) STEP 5. Write the Second Draft (26) STEP 6. Write the Final Draft. (26) Part V. Vocabulary to Enhance your Writing (26)

相关主题