dec*_*on1 5 vb.net iis vbscript
我试图看看IIS是否已安装,如果未安装IIS,则显示消息和下载exe到INstall IIS.但是,如果我没有在vb脚本中指定完整路径,那么我很难运行文件.路径将是动态的,无法指定除"%cd%"之外的任何其他目录
我的代码:
If WScript.Arguments.length =0 Then
Set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "wscript.exe", Chr(34) & _
WScript.ScriptFullName & Chr(34) & " uac", "", "runas", 1
Else
Dim intCounter, strSubkey
Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\Microsoft"
objReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys
intCounter=0
For Each subkey In arrSubKeys
If subkey="InetStp" Then
intCounter=1 or strSubkey=subkey
End If
Next
currentDirectory = left(WScript.ScriptFullName, Len(WScript.ScriptFullName))-(len(WScript.ScriptName)))
if intCounter=0 then
Set WSHShell = CreateObject("Wscript.Shell")
WSHShell.Run ("\currentDirectory\noiisinstalled.exe")
Elseif intCounter=1 then
Wscript.Echo "IIS is Already installed - " & strSubkey
End If
End if
Run Code Online (Sandbox Code Playgroud)
我的问题是运行no iisinstalled.exe文件.无论我正在尝试脚本都找不到该文件.
小智 8
您可以使用以下命令获取当前目录Scripting.FileSystemObject.即
dim fso: set fso = CreateObject("Scripting.FileSystemObject")
' directory in which this script is currently running
CurrentDirectory = fso.GetAbsolutePathName(".")
Run Code Online (Sandbox Code Playgroud)
要使用它来构建新路径,可以使用该BuildPath()功能
NewPath = fso.BuildPath(CurrentDirectory, "noiisinstalled.exe")
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
30041 次 |
| 最近记录: |