Vbscript(3) Adding Intelligence

Adding Intelligence

If...Then

Just the Steps

To implement If...Then

1.

On a new line in the script, type If some condition Then.

2.

On the next line, enter the command you want to invoke.

3.

On the next line, type End If.

If...Then...Else

Just the Steps

To use If...Then...Else

1.

On a new line in the script, type If some condition Then.

2.

On the next line, enter the command you want to invoke.

3.

On the next line, type Else.

4.

On the next line, type the alternate command you want to execute when the condition is not true.

5.

On the next line, type End If.

如果程序有两种选择的话可以使用,If….Then …Else

ifThenElse.vbs

Option Explicit
On Error Resume Next
Dim a,b,c,d
a = 1
b = 2
c = 3
d = 4
If a + b = d Then
  WScript.Echo (a & " + " & b & " is equal to " & d)
Else
  WScript.Echo (a & " + " & b & " is equal to " & c)
End If

If...Then...ElseIf

Just the Steps

To Use If...Then...ElseIf

1.

On a new line in the script, type If some condition Then.

2.

On the next line, enter the command you want to invoke.

3.

On the next line, type ElseIf and the new condition to check, and end the line with Then.

4.

On the next line, enter the command you want to invoke when the condition on the ElseIf line is true.

5.

Repeat steps 3 and 4 as required.

6.

On the next line, type End If.

CPUType.vbs

Option Explicit
On Error Resume Next
Dim strComputer
Dim cpu
Dim wmiRoot
Dim objWMIService
Dim ObjProcessor
strComputer = "."
cpu = "win32_Processor='CPU0'"
wmiRoot = "winmgmts:\\" & strComputer & "\root\cimv2"
Set objWMIService = GetObject(wmiRoot)
Set objProcessor = objWMIService.Get(cpu)
If objProcessor.Architecture = 0 Then
  WScript.Echo "This is an x86 cpu."
ElseIf objProcessor.Architecture = 1 Then
  WScript.Echo "This is a MIPS cpu."
ElseIf objProcessor.Architecture = 2 Then
  WScript.Echo "This is an Alpha cpu."
ElseIf objProcessor.Architecture = 3 Then
  WScript.Echo "This is a PowerPC cpu."
ElseIf objProcessor.Architecture = 6 Then
  WScript.Echo "This is an ia64 cpu."
Else
  WScript.Echo "Cannot determine cpu type."
End If

 

Select Case

Just the Steps

To use Select Case

1.

On a new line in the script, type Select Case and a variable to evaluate.

2.

On the second line, type Case 0.

3.

On the third line, assign a value to a variable.

4.

On the next line, type Case 1.

5.

On a new line, assign a value to a variable.

6.

On the next line, type End Select.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值